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