custom.css 349 B

1234567891011121314151617181920212223242526
  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. background-color: lightgray;
  19. }
  20. img {
  21. width: 7em;
  22. height: 7em;
  23. }