custom.css 400 B

12345678910111213141516171819202122232425262728293031
  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: 10em;
  16. padding-left: 8px;
  17. padding-right: 8px;
  18. margin: 8px;
  19. background-color: lightgray;
  20. }
  21. a {
  22. color: inherit;
  23. text-decoration: inherit;
  24. }
  25. img {
  26. width: 7em;
  27. }