style.css 549 B

1234567891011121314151617181920212223242526272829303132333435
  1. *,
  2. *:before,
  3. *:after {
  4. box-sizing: border-box;
  5. }
  6. body {
  7. margin: 0;
  8. height: 100vh;
  9. background-color: darkgrey;
  10. }
  11. table {
  12. font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
  13. font-size: 14px;
  14. border-collapse: collapse;
  15. text-align: center;
  16. }
  17. th, td:first-child {
  18. background: #AFCDE7;
  19. color: white;
  20. padding: 10px 20px;
  21. }
  22. th, td {
  23. border-style: solid;
  24. border-width: 0 1px 1px 0;
  25. border-color: white;
  26. }
  27. td {
  28. background: #D8E6F3;
  29. }
  30. th:first-child, td:first-child {
  31. text-align: left;
  32. }