Created
June 2, 2016 12:10
-
-
Save naoliv/b059c31adb7991851a50638a38c8b9b1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* em azul pontos de ônibus que já existem e não foram modificados */ | |
node|z15-[public_transport = platform]!:modified { | |
icon-image: none; | |
symbol-shape: octagon; | |
symbol-size: 15; | |
symbol-fill-color: blue; | |
} | |
/* em laranja pontos de ônibus utilizando o padrão antigo (atualizar, se possível) */ | |
node|z15-[highway = bus_stop] { | |
icon-image: none; | |
symbol-shape: octagon; | |
symbol-size: 15; | |
symbol-fill-color: orange; | |
} | |
/* pontos de ônibus a serem feitos */ | |
node|z15-[pt_nome] { | |
icon-image: none; | |
symbol-shape: octagon; | |
symbol-size: 20; | |
symbol-fill-color: red; | |
} | |
/* pontos de ônibus já feitos ou modificados */ | |
node|z15-[public_transport = platform][!pt_nome]:modified { | |
icon-image: none; | |
symbol-shape: octagon; | |
symbol-size: 15; | |
symbol-fill-color: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment