map.css 405 B

12345678910111213141516171819202122232425262728293031
  1. table{
  2. border-collapse: collapse;
  3. }
  4. td, img, tr{
  5. border-collapse: collapse;
  6. margin: 0px;
  7. padding: 0px;
  8. border: none;
  9. position: relative;
  10. }
  11. img{
  12. vertical-align:bottom
  13. }
  14. #game{
  15. position: absolute;
  16. top: 50%; left: 50%;
  17. transform: translate(-50%, -50%);
  18. }
  19. #hud{
  20. position: absolute;
  21. z-index: 10;
  22. margin-top: 1.5em;
  23. margin-left: 1.5em;
  24. font-size: 2em;
  25. font-style: arial;
  26. color: white;
  27. }