styles.css 527 B

1234567891011121314151617181920212223242526272829303132
  1. body {
  2. background-color: #230b36;
  3. font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
  4. display: flex;
  5. justify-content: center;
  6. }
  7. table {
  8. border-collapse: collapse;
  9. color: #000000;
  10. }
  11. caption {
  12. padding: 10px;
  13. color: white;
  14. background: #8fd4c1;
  15. font-size: 18px;
  16. text-align: left;
  17. font-weight: bold;
  18. }
  19. th {
  20. border-bottom: 3px solid #b9b29f;
  21. padding: 10px;
  22. text-align: left;
  23. }
  24. td {
  25. padding: 10px;
  26. }
  27. tr:nth-child(odd) {
  28. background: white;
  29. }
  30. tr:nth-child(even) {
  31. background: #e8e6d1;
  32. }