-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
71 lines (58 loc) · 873 Bytes
/
Copy pathmain.css
File metadata and controls
71 lines (58 loc) · 873 Bytes
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
body {
background: rgb(50,50,50);
color: white;
font-family: sans-serif;
}
text {
font: 10px sans-serif;
fill:rgb(200,200,200);
}
h1{
color: rgb(200,200,200);
font-family:serif;
}
.dot {
stroke: #FFF;
}
.axis path, .axis line {
fill: none;
stroke: #FFF;
shape-rendering: crispEdges;
}
.label {
fill: rgb(200,200,200);
}
.year.label {
font: 500 196px "Helvetica Neue";
fill: #ddd;
}
.year.label.active {
fill: #aaa;
}
.overlay {
fill: none;
pointer-events: all;
cursor: ew-resize;
}
.rectangle {
fill: black;
}
.flex-cont{
display:flex;
flex-direction:row;
juistify-content:flex-start;
flex-wrap: wrap;
align-items: center;
}
.line {
fill: none;
/*stroke: steelblue;*/
stroke-width: 2.5px;
opacity: 0.9;
}
.button{
background-color: rgb(100,100,100);
padding: 0.5em;
margin: 0.5em;
cursor: pointer;
}