popup.css 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @font-face {
  2. font-family: Eurostile;
  3. src: url(../fonts/eurostile.ttf)
  4. }
  5. html {
  6. font-family: Eurostile, Arial, Helvetica, sans-serif;
  7. color: white;
  8. }
  9. body {
  10. background-color: #191818;
  11. margin: 0;
  12. width: 500px;
  13. height: 500px;
  14. }
  15. .container {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. height: 90vh;
  20. width: 90vw;
  21. margin: 5vw;
  22. }
  23. .table-container {
  24. width: 100%;
  25. overflow-y: auto;
  26. flex-grow: 1;
  27. }
  28. table {
  29. width: 100%;
  30. background-color: #242424;
  31. }
  32. button {
  33. font-family: Eurostile, Arial, Helvetica, sans-serif;
  34. font-size: large;
  35. width: 100%;
  36. flex-basis: 40px;
  37. margin-bottom: 5px;
  38. border-radius: 5px;
  39. background-color: lightcoral;
  40. color: black;
  41. }
  42. button:hover {
  43. background-color: rgb(238, 104, 104);
  44. cursor: pointer;
  45. }
  46. tbody>tr:hover {
  47. background-color: #2c2c2c;
  48. }
  49. th {
  50. text-align: start;
  51. }