custom.css 363 B

123456789101112131415161718192021222324252627
  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. img {
  22. width: 7em;
  23. height: 7em;
  24. }