-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
73 lines (66 loc) · 942 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
* {
font-family: sans-serif;
}
body {
min-height: 100vh;
}
.bar-chart {
margin-top: 5vh;
background-color: #eee;
padding: 50px 20px 30px 20px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.bar-chart #chart {
text-align: center;
}
form {
margin-top: 20px;
text-align: center;
}
label {
font-size: 20px;
cursor: pointer;
}
input {
cursor: pointer;
}
rect:hover {
cursor: pointer;
}
.none {
display: none;
}
footer {
width: 100%;
color: #8c8c8c;
margin: auto;
margin-top: 5vh;
}
footer p {
display: block;
margin: 0 auto;
text-align: center;
}
footer .footer-text {
margin: auto;
}
footer .love {
color: red;
}
footer a {
color: #2e2e2e;
}
.sound {
text-align: right;
}
.sound a {
background: rgb(165, 115, 115);
padding: 5px;
border-radius: 5px;
color: #fff;
cursor: pointer;
text-decoration: none;
}
.line-through {
text-decoration: line-through !important;
}