mirror of
https://github.com/omniscale/magnacarto.git
synced 2025-02-23 07:54:10 +01:00
22 lines
No EOL
298 B
Text
22 lines
No EOL
298 B
Text
// only zoom=15 has a line-width
|
|
|
|
#roads[zoom>=14] {
|
|
line-color: white;
|
|
[type='primary'] {
|
|
// this should create a rule for level 15 with line-width: 5
|
|
line-color: red;
|
|
}
|
|
}
|
|
|
|
#roads[zoom=15] {
|
|
line-width: 5;
|
|
}
|
|
|
|
|
|
#roads[zoom>=14] {
|
|
line-cap: round;
|
|
}
|
|
|
|
#roads {
|
|
line-join: bevel;
|
|
} |