-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 784 Bytes
/
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
body {
font-family: "Arial", sans-serif;
font-weight: 400;
font-style: normal;
}
.center {
display: grid;
place-items: center;
place-content: center;
gap: 1rem;
grid-template-columns: 200px 200px 200px;
grid-template-areas:
"header header header"
"chart chart legend";
}
.intro-wrap {
grid-area: header;
}
.chart {
grid-area: chart;
}
.legend {
grid-area: legend;
}
ul {
padding-left: 1rem;
}
ul li {
list-style-type: none;
padding: 0.4rem 0 0.45rem 0;
transition: all 0.5s;
cursor: pointer;
}
.bar {
background-color: #251351;
border: 4px solid #fbaeb7;
height: 1.5rem;
transition: all 0.5s;
cursor: pointer;
}
.bar.highlightBar {
border: 4px solid #251351;
}
.highlightText {
color: #251351;
font-weight: bold;
}