-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (110 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
117 lines (110 loc) · 1.85 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.wrapper {
width: 500px;
margin-left: auto;
margin-right: auto;
margin-top: 0;
margin-bottom: 30px;
overflow-x: hidden;
}
/* .progress-bar {
width: 100%;
background-color: #e0e0e0;
padding: 3px;
border-radius: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.progress-bar-fill {
display: block;
height: 22px;
background-color: #659cef;
border-radius: 3px;
transition: width 500ms ease-in-out;
} */
section#vis-progress {
position: absolute;
z-index: 1;
/* display: flex; */
width: 100%;
height: 100%;
/* justify-content: center; */
/* justify-self: center; */
background: #00000094;
flex-direction: column;
/* justify-items: center; */
/* pointer-events: none; */
}
section#vis-progress p {
margin-top: auto;
/* display: flex; */
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: center;
margin-bottom: 0;
font-family: "Poppins", sans-serif;
color: white;
font-weight: 600;
padding-bottom: 1rem;
}
section#vis-progress button {
margin-bottom: auto;
/* display: flex; */
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: center;
/* margin-bottom: 0; */
font-family: "Poppins", sans-serif;
color: white;
font-weight: 500;
background: #2368a1;
font-weight: 500;
border-radius: 0.5rem;
border: 0;
cursor: pointer;
padding: 0.25rem 0.5rem;
}
.slider {
position: absolute;
width: 500px;
height: 5px;
overflow-x: hidden;
}
.line {
position: absolute;
opacity: 0.4;
background: #4a8df8;
width: 750px;
height: 5px;
}
.subline {
position: absolute;
background: #4a8df8;
height: 5px;
}
.inc {
animation: increase 2s infinite;
}
.dec {
animation: decrease 2s 0.5s infinite;
}
@keyframes increase {
from {
left: -5%;
width: 5%;
}
to {
left: 130%;
width: 100%;
}
}
@keyframes decrease {
from {
left: -80%;
width: 80%;
}
to {
left: 110%;
width: 10%;
}
}