-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (45 loc) · 801 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
.c-graph {
width: 300px;
height: 300px;
background: blue;
background: repeating-linear-gradient(
to top,
#ddd,
#ddd 1px,
rgba(0,0,0,0) 1px,
rgba(0,0,0,0) 25%
);
border-spacing: 0px;
}
.c-graph__row {
height: 100%;
float: left;
vertical-align: bottom;
width: 20%;
display: flex;
align-items: flex-end;
position: relative;
}
.c-graph__col {
width: 100%;
padding: 0px;
}
.c-graph__title {
text-align: center;
position: absolute;
bottom: 0%;
transform: translateY(100%);
}
.c-graph__bar {
margin: 0px 5px;
background-color: #aaa;
transition: 0.5s;
}
.c-graph__bar:hover {
background-color: #888;
}
.c-input__txt {
width: 1rem;
display: inline-block;
margin-right: 1rem;
}