-
Notifications
You must be signed in to change notification settings - Fork 1
/
isyontefearlythisyear.css
120 lines (94 loc) · 1.76 KB
/
isyontefearlythisyear.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
:root {
--bar-color: #2E69FF;
--leap-color: #54B1FF;
}
.container {
margin-top: 15px;
margin-bottom: 15px;
}
.event {
margin-bottom: 24px;
}
.event svg {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.event h2.label {
margin-bottom: 0;
}
.event .hist {
stroke: #000000;
fill: none;
}
.overlays .yearLine line {
stroke: #777777;
stroke-width: 2px;
stroke-dasharray: 3;
}
.overlays .yearLine text {
font-size: 14px;
fill: #555555;
}
.overlays .yearLine text.thisYear {
fill: #D0353D;
font-weight: bold;
}
.event .main .bars {
fill: var(--bar-color);
}
.event .main .bars.leap {
fill: var(--leap-color);
}
.event .overlays .dateOverlay rect.hover {
fill: rgba(0, 0, 0, 0);
}
.event .overlays .dateOverlay text.overbar {
font-size: 12px;
fill: none;
}
.event .overlays .dateOverlay.touching text.overbar { /* .event .overlays .dateOverlay:hover text.overbar, */
fill: #000000;
}
.event .belowAxis .thresholdLabel line {
stroke: #555555;
}
.event .belowAxis .thresholdLabel text {
fill: #555555;
font-size: 13px;
}
.event .belowAxis .freqLine {
fill: #ABC3D8;
}
.event .belowAxis .freqLine text {
fill: #000000;
}
#big-answer {
text-align: center;
/*margin-top: 100px;*/
font-size: 150px;
text-transform: uppercase;
}
#answer-description {
margin-bottom: 50px;
}
#legend {
margin-bottom: 30px;
}
#legend p {
display: inline-block;
margin-bottom: 0;
}
#legend p.leap {
margin-right: 20px;
}
.legend span {
display: inline-block;
width: 12px;
height: 12px;
background-color: var(--bar-color);
}
.legend.leap span {
background-color: var(--leap-color);
}