-
Notifications
You must be signed in to change notification settings - Fork 1
/
toronto.mss
46 lines (35 loc) · 979 Bytes
/
toronto.mss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@background: black;
//@background: transparent;
@starcolor: #ffa;
Map {
background-color: @background;
}
.lines {
//line-width:2;
line-width: 8;
//line-color:lighten(@starcolor,10%);
line-color: lightgray;
line-cap: round;
}
.stations {
// for the same icon
second/marker-file: url("star_icon_3307/icon_3307_stroke.svg");
second/marker-width:45;
second/marker-fill:@background;
second/marker-line-width: 35;
second/marker-allow-overlap:true;
first/marker-file: url("star_icon_3307/icon_3307.svg");
first/marker-width:45;
first/marker-fill:@starcolor;
first/marker-allow-overlap:true;
[name="Kipling"] {
// Just a nudge 5px down and 10px left, for aesthetics
second/marker-transform:translate(-10,5);
first/marker-transform:translate(-10,5);
}
[name="Kennedy"] {
// Just a nudge 5px up and 10px right, for aesthetics
second/marker-transform:translate(10,-5);
first/marker-transform:translate(10,-5);
}
}