-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyler.css
executable file
·80 lines (67 loc) · 1.22 KB
/
styler.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
/*
Written by Joshua Fabian
*/
body {
background-color: white;
color: black;
height: 100%;
overflow: scroll;
font-family: sans-serif;
}
line:hover {
stroke-width: 8px;
fill: rgb(250, 232, 255);
}
div.tooltip {
position: absolute;
text-align: left;
padding: 4px;
font: 16px sans-serif;
background: gray;
border-radius: 8px;
pointer-events: none;
}
h1 {
font-family: Roboto, calibri, sans-serif;
font-size: 42px;
}
h2 {
font-family: Roboto, calibri, sans-serif;
font-size: 20px;
color: black;
background-color: yellow;
line-height: 22px;
}
.solid{
stroke: solid;
}
.shuttled{
stroke-dasharray: 6,3;
animation: detourBlink 1s linear infinite;
}
.minorDelayed{
animation: detourBlink 4s linear infinite;
}
.moderateDelayed{
animation: detourBlink 2s linear infinite;
}
.severeDelayed{
animation: detourBlink 1s linear infinite;
}
#statusText {
margin-top: 28px;
margin-bottom: -14px;
font-family: Roboto, calibri, sans-serif;
font-size: 20px;
}
td {
padding-left: 10px;
padding-right: 10px;
text-align: center;
}
@keyframes detourBlink {
50% {
opacity: 0;
}
}