custom.css 444 B

1234567891011121314151617181920212223242526272829303132333435
  1. body {
  2. background-color: #f4fff4;
  3. font-family: verdana;
  4. font-size: 2em;
  5. text-align: center;
  6. }
  7. .tile-map {
  8. display: flex;
  9. margin-left: 8px;
  10. margin-right: 8px;
  11. flex-wrap: wrap;
  12. justify-content: center;
  13. }
  14. .tile {
  15. flex-basis: 8.5em;
  16. padding-left: 8px;
  17. padding-right: 8px;
  18. margin: 8px;
  19. background-color: lightgray;
  20. }
  21. .tile:hover {
  22. background-color: white;
  23. }
  24. a {
  25. color: inherit;
  26. text-decoration: inherit;
  27. }
  28. img {
  29. width: 7em;
  30. }