blob: e35abd9ab72caa33067fa4e62bbac0b37896fefb (
plain) (
blame)
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
|
.percent {
position: fixed;
display: flex;
flex-direction: column;
background: rgba(255, 255, 255, 0.2);
height: 140px;
width: 1px;
margin: -60px 0 0 40px;
}
/*---
.percent {
position: fixed;
display: flex;
top: 50%;
transform: translateY(-50%);
right: 100px;
flex-direction: column;
background: rgba(255, 255, 255, 0.2);
height: 140px;
width: 1px;
}
--*/
.fill {
position: absolute;
bottom: 0;
width: 100%;
height: 100%;
background: #fff;
transition: background 0.15s ease;
}
|