summaryrefslogtreecommitdiff
path: root/map.scss
blob: 6e6382698a4be7827432a4f2282e9512904fca6c (plain)
  1. @import 'partials/leaflet';
  2. @import "compass/css3";
  3. body {
  4. margin:0;
  5. padding:0;
  6. }
  7. // keep headline above map, besides branding
  8. h1 {
  9. z-index: 1;
  10. position: absolute;
  11. left: 222px; // match branding (20+202)
  12. margin: 20px; // match branding (20)
  13. }
  14. #content,
  15. #map {
  16. padding: 0;
  17. z-index: -1; // keep branding visible
  18. position:absolute;
  19. top:0;
  20. bottom:0;
  21. width:100%;
  22. max-width: 100%; // override local styling
  23. margin: 0;
  24. }
  25. .leaflet-control-scale {
  26. text-align: center;
  27. }
  28. .leaflet-left .leaflet-control {
  29. margin-left: 20px; // match branding
  30. }
  31. .leaflet-left .leaflet-control {
  32. margin-top: 96px; // match branding (20+56+20)
  33. }
  34. .topbar {
  35. @include inline-block; // avoid shadowing across whole viewport
  36. background-color: unset; // override local styling
  37. height: 4em; //avoid shadowing for map zoom
  38. }
  39. // override local styling
  40. .pageheader,
  41. .topbar ul,
  42. .topbar .imgframe,
  43. .sidebar,
  44. .farbar,
  45. #footer {
  46. display: none !important;
  47. visibility: hidden;
  48. }