diff options
Diffstat (limited to 'shapefiles.mss')
-rw-r--r-- | shapefiles.mss | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/shapefiles.mss b/shapefiles.mss new file mode 100644 index 0000000..1e8bfa0 --- /dev/null +++ b/shapefiles.mss @@ -0,0 +1,37 @@ +#necountries { + [zoom >= 1][zoom < 4] { + line-width: 0.5; + line-color: grey; + } +} + +#nepopulated { + [zoom >= 3][zoom < 5] { + [SCALERANK = 0], + [SCALERANK = 1] { + text-name: "[NAME]"; + text-size: 8; + text-fill: grey; + text-face-name: @book-fonts; + text-halo-radius: 1; + } + } +} + +#world { + [zoom >= 0][zoom < 10] { + polygon-fill: @land-color; + } +} + +#coast-poly { + [zoom >= 10] { + polygon-fill: @land-color; + } +} + +#builtup { + [zoom >= 8][zoom < 10] { + polygon-fill: #ddd; + } +} |