|
1 #necountries { |
|
2 [zoom >= 1][zoom < 4] { |
|
3 line-width: 0.2; |
|
4 [zoom >= 2] { |
|
5 line-width: 0.3; |
|
6 } |
|
7 [zoom >= 3] { |
|
8 line-width: 0.4; |
|
9 } |
|
10 line-color: @admin-boundaries; |
|
11 } |
|
12 } |
|
13 |
|
14 #ocean-lz, |
|
15 #ocean { |
|
16 polygon-fill: @water-color; |
|
17 } |
|
18 |
|
19 #icesheet-poly { |
|
20 [zoom >= 5] { |
|
21 polygon-fill: @glacier; |
|
22 } |
|
23 } |
|
24 |
|
25 #icesheet-outlines { |
|
26 [zoom >= 5] { |
|
27 [ice_edge = 'ice_ocean'], |
|
28 [ice_edge = 'ice_land'] { |
|
29 line-width: 0.375; |
|
30 line-color: @glacier-line; |
|
31 [zoom >= 8] { |
|
32 line-width: 0.5; |
|
33 } |
|
34 [zoom >= 10] { |
|
35 line-dasharray: 4,2; |
|
36 line-width: 0.75; |
|
37 } |
|
38 } |
|
39 } |
|
40 } |