map.css 813 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. div#map_container{
  2. display: none;
  3. opacity: 0;
  4. position: fixed;
  5. top:0;
  6. bottom:0;
  7. left:0;
  8. right:0;
  9. width: 100%;
  10. height: 100%;
  11. background-color: #33333377;
  12. transition: all .5s ease-in-out;
  13. }
  14. div#map_container div.section{
  15. width: 70%;
  16. height: 70%;
  17. margin: 4em 15% auto 15%;
  18. }
  19. div#map_container div.section h3.section_title div#map_close_container{
  20. height: 1.5em;
  21. float: right;
  22. margin-top: -0.3em;
  23. margin-right: -0.4em;
  24. }
  25. div#map_container div.section h3.section_title div#map_close_container img#map_close{
  26. height: 100%;
  27. }
  28. div#map_container div.section div#map{
  29. width: 90%;
  30. height: 80%;
  31. margin: 1em 5% 1em 5% !important;
  32. background-color: #000000;
  33. }
  34. img.pinpoint{
  35. max-height: 1.3em;
  36. vertical-align: middle;
  37. }