style.css 614 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. body {
  2. max-width: 1200px;
  3. padding: 15px;
  4. box-sizing: border-box;
  5. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  6. }
  7. table {
  8. text-align: center;
  9. border-spacing: 0;
  10. font-size: 20px;
  11. width: 50%;
  12. margin: 0 auto;
  13. height: 450px;
  14. margin-bottom: 50px;
  15. }
  16. td,
  17. th {
  18. border: 1px solid #000;
  19. }
  20. td {
  21. cursor: pointer;
  22. }
  23. .th,
  24. .th .th {
  25. background-color: rgba(48, 48, 48, 0.867);
  26. color: rgb(72, 255, 0);
  27. font-weight: 700;
  28. }
  29. .tdtd {
  30. background-color: rgba(0, 255, 242, 0.582);
  31. color: rgb(3, 3, 43);
  32. font-weight: 500;
  33. }
  34. .tr-even {
  35. background-color: rgba(233, 233, 233, 0.867);
  36. }