Created
April 5, 2016 17:06
-
-
Save maxkfranz/5c513c6fcccd1ef5c5802140e0f76f8a to your computer and use it in GitHub Desktop.
tokyo-railways-style-2.cycss
This file contains hidden or 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
node { | |
background-color: white; | |
border-color: black; | |
content: data(station_name); | |
width: 20; | |
height: 20; | |
color: #fff; | |
font-size: 16; | |
} | |
node:selected, | |
node.start, | |
node.end { | |
height: 60; | |
width: 60; | |
font-size: 48; | |
border-color: #000; | |
border-width: 10px; | |
text-outline-color: #000; | |
text-outline-width: 10px; | |
z-index: 9999; | |
} | |
node.start, | |
node.end { | |
background-color: #FC4C4C; | |
color: #FC4C4C; | |
} | |
edge { | |
font-size: 8; | |
color: #fff; | |
content: data(line_name); | |
line-color: green; | |
width: 20; | |
curve-style: haystack; | |
haystack-radius: 0; | |
opacity: 0.5; | |
} | |
edge[company_type = 0] { | |
line-color: #00FFFF; | |
} | |
edge[company_type = 1] { | |
line-color: #00FF33; | |
} | |
edge[company_type = 2] { | |
line-color: white; | |
} | |
edge[company_type = 3] { | |
line-color: red; | |
} | |
core { | |
active-bg-color: #fff; | |
active-bg-opacity: 0.333; | |
} | |
edge.not-path { | |
opacity: 0.1; | |
} | |
node.not-path { | |
opacity: 0.333; | |
} | |
edge.path { | |
opacity: 0.666; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment