style.css 300 B

1234567891011121314151617181920212223
  1. *,
  2. *:before,
  3. *:after {
  4. box-sizing: border-box;
  5. }
  6. body {
  7. margin: 0;
  8. height: 100vh;
  9. background-color: darkgrey;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. }
  14. th, td {
  15. width: 20px;
  16. text-align: center;
  17. }
  18. .backgroundColorGrey {
  19. background-color: grey;
  20. }