-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (76 loc) · 1.16 KB
/
style.css
File metadata and controls
89 lines (76 loc) · 1.16 KB
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
body {
/* background-image: url("https://source.unsplash.com/3O8YUC-jEIA/1600x900"); */
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
}
#chart {
position: relative;
width: 100%;
max-width: 800px;
background-color: #f7f7f7;
margin: 10% auto;
filter: drop-shadow(0 0 0.2rem rgb(79, 76, 78));
}
.heading {
font-size: 1.5rem;
}
.subheading {
font-size: 0.9rem;
}
.smallheading {
font-size: 0.7rem;
}
.y-axis path y.axis line,
.x-axis path x.axis line {
shape-rendering: crispEdges;
}
.y-axis text,
.x-axis text {
font-weight: bold;
font-size: 16px;
}
#tooltip {
position: absolute;
width: 130px;
padding: 1%;
background-color: white;
border-radius: 5px;
pointer-events: none;
display: none;
font-size: 12px;
font-weight: bold;
text-align: center;
}
.xInfo,
.yInfo {
font-size: 1rem;
}
.container {
width: 800px;
margin: 0 auto;
}
p {
margin: 0;
font-size: 1rem;
color: white;
}
.key {
font-size: 0.8rem;
}
/* unvisited link */
a:link {
color: white;
}
/* visited link */
a:visited {
color: white;
}
/* mouse over link */
a:hover {
color: white;
}
/* selected link */
a:active {
color: white;
}