nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

adaptive.css (757B)


      1 /*200 mm*/
      2 @media (max-width: 756px) {
      3     .leaflet-right .leaflet-control:not(.leaflet-control-horizontal-stack) {
      4         margin-right: 0;
      5         border-top-right-radius: 0;
      6         border-bottom-right-radius: 0;
      7     }
      8 
      9     .leaflet-left .leaflet-control:not(.leaflet-control-horizontal-stack) {
     10         margin-left: 0;
     11         border-top-left-radius: 0;
     12         border-bottom-left-radius: 0;
     13     }
     14 }
     15 
     16 /*150 mm*/
     17 @media (max-height: 567px) {
     18     .leaflet-bottom .leaflet-control:last-child {
     19         margin-bottom: 0;
     20         border-bottom-left-radius: 0;
     21         border-bottom-right-radius: 0;
     22     }
     23 
     24     .leaflet-top .leaflet-control:first-child {
     25         margin-top: 0;
     26         border-top-left-radius: 0;
     27         border-top-right-radius: 0;
     28     }
     29 }
     30 
     31