-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (59 loc) · 1.31 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap");
h1 {
text-align: center;
font-family: "Poppins", sans-serif;
font-weight: 700;
}
body {
font-family: "Poppins", sans-serif;
max-width: 750px;
margin: auto;
background-color: #faf9f6;
}
#dropdown {
font-family: "Poppins", sans-serif;
text-align: center;
&select {
font-family: "Poppins", sans-serif;
}
}
button {
background-color: rgba(51, 51, 51, 0.05);
border-radius: 8px;
border-width: 0;
color: #333333;
cursor: pointer;
display: inline-block;
font-family: "Poppins", sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 20px;
list-style: none;
margin: 0;
padding: 10px 12px;
text-align: center;
transition: all 200ms;
vertical-align: baseline;
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
display: flex;
align-items: center;
justify-content: center;
&:hover {
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
background-color: rgba(51, 51, 51, 0.8);
color: white;
}
}
.button-container {
display: flex;
justify-content: center;
gap: 10px;
flex-direction: row;
}
#visualization.chart {
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
margin: 20px;
}