1
0

leafletfix.css 642 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* Work around CSS properties introduced on img by bootstrap */
  2. img.leaflet-tile {
  3. padding: 0;
  4. margin: 0;
  5. border-radius: 0;
  6. border: none;
  7. }
  8. .info {
  9. padding: 6px 8px;
  10. font: 14px/16px Arial, Helvetica, sans-serif;
  11. background: white;
  12. background: rgba(255,255,255,0.8);
  13. box-shadow: 0 0 15px rgba(0,0,0,0.2);
  14. border-radius: 5px;
  15. }
  16. .legend {
  17. line-height: 18px;
  18. color: #555;
  19. }
  20. .legend svg text {
  21. fill: #555;
  22. }
  23. .legend svg line {
  24. stroke: #555;
  25. }
  26. .legend i {
  27. width: 18px;
  28. height: 18px;
  29. margin-right: 4px;
  30. opacity: 0.7;
  31. display: inline-block;
  32. vertical-align: top;
  33. /*For IE 7*/
  34. zoom: 1;
  35. *display: inline;
  36. }