-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (66 loc) · 1.29 KB
/
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
*{
/* margin: 0;
padding: 0; */
box-sizing: border-box;
}
body{
height: 100vh;
font-family: 'Open Sans', sans-serif;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin:0;
/* background-color: rgb(54, 54, 54); */
}
.container{
text-align: center;
width: 50%;
}
.progress-container {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
margin: 0 auto;
margin: 20px;
}
.progress-container::before{
content: '';
position: absolute;
background-color: rgb(196, 196, 199);
height: 5px;
width: 100%;
transform: translateY(-50%);
z-index: -1;
}
.progress-bar{
position: absolute;
background-color: rgb(116, 137, 223);
height: 5px;
width: 0%;
transform: translateY(-50%);
z-index: -1;
}
.circle{
height: 25px;
width: 25px;
border-radius: 50%;
background-color: rgb(195, 191, 191);
color: aliceblue;
align-items: center;
justify-content: center;
border: 1px solid grey;
transition: .4s ease;
}
.circle.active{
background-color: rgb(90, 90, 198);
}
.btn{
margin: 5px;
outline: none;
cursor: pointer;
}
.btn:disabled{
cursor: not-allowed;
}