forked from conveyal/transitive.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (84 loc) · 1.46 KB
/
style.css
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/**
* Transitive Base Styles
*/
.Transitive {
overflow: hidden;
}
/**
* Schematic Map
*/
.Transitive > .schematic-map {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 100;
}
/**
* Labels
*/
.Transitive > .schematic-map .transitive-stop-label,
.Transitive > .schematic-map .transitive-multi-label,
.Transitive > .schematic-map .transitive-place-label {
text-shadow:
-2px -2px 0 #fff,
2px -2px 0 #fff,
-2px 2px 0 #fff,
2px 2px 0 #fff;
}
.Transitive > .schematic-map .transitive-segment-label {
fill: #fff;
}
/**
* Label Container
*/
.Transitive > .schematic-map .transitive-segment-label-container {
fill: #008;
}
/**
* Lines
*/
.Transitive > .schematic-map .transitive-line {
stroke-linecap: round;
fill: none;
}
/**
* Places
*/
.Transitive > .schematic-map .transitive-place-circle {
fill: #fff;
stroke: #000;
stroke-width: 2px;
}
/**
* Stops
*/
.Transitive > .schematic-map .transitive-stop-marker-pattern,
.Transitive > .schematic-map .transitive-stop-marker-merged,
.Transitive > .schematic-map .transitive-multipoint-marker-merged {
fill: #fff;
stroke: #000;
stroke-width: 1px;
}
/**
* Tile Layer
*/
.Transitive > .tile-layer {
position: absolute;
z-index: 50;
}
.Transitive > .tile-layer > .tile {
pointer-events: none;
position: absolute;
width: 256px;
height: 256px;
}
/**
* Grid
*/
.Transitive .gridline {
fill: none;
stroke: #ccc;
stroke-width: 1px;
}