-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (51 loc) · 890 Bytes
/
styles.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
* {
font-family: 'Raleway', sans-serif;
color: #080e2c;
}
body {
background-color: #f3fdfb;
}
#renderEl {
min-height: 50vh;
overflow: hidden;
}
.border {
border: 1px solid #c2c9cd;
border-radius: 1rem;
}
.text-sm {
font-size: smaller;
}
.text-center {
text-align: center;
}
.text-secondary {
color: #c2c9cd;
}
button {
background-color: #44eabb;
color: #f3fdfb;
border: none;
border-radius: 1rem;
padding: .5rem 1rem;
margin-bottom: .5rem;
cursor: pointer;
transition: ease .2s;
}
button:hover {
color: #080e2c;
}
.series-selection {
border: 2px solid #080e2c;
color: #080e2c;
display: block;
border-radius: 1rem;
padding: .5rem 1rem;
margin-bottom: .5rem;
cursor: pointer;
transition: ease .2s;
}
.series-selection:hover {
border-color: #44eabb;
color: #44eabb;
}