-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (72 loc) · 1.42 KB
/
style.css
File metadata and controls
82 lines (72 loc) · 1.42 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
body {
color: rgb(119, 101, 101);
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
margin: 0;
background-color: rgb(217, 227, 235)
}
.container {
text-align: center;
}
.progress-container {
display: flex;
justify-content: space-between;
width: 300px;
max-width: 100%;
position: relative;
margin-bottom: 10px;
}
.progress-container::before {
content:"";
position: absolute;
width: 100%;
background-color: rgb(197, 200, 201);
height: 4px;
top: 50%;
left:0;
transform: translateY(-50%);
z-index: -1;
}
.progress {
position: absolute;
width: 0%;
background-color: rgb(49, 212, 218);
height: 4px;
top: 50%;
left:0;
transform: translateY(-50%);
transition: 0.4s ease;
z-index: -1;
}
.circle {
width: 20px;
height: 20px;
border-radius: 50%;
justify-content: center;
border: 2px solid rgb(197, 200, 201);
background-color: rgb(217, 227, 235);
transition: 0.4s ease;
}
.circle.active {
border-color: rgb(49, 212, 218);
}
.btn {
cursor: pointer;
background-color: rgb(49, 212, 218);
padding: 5px 20px;
border: 0;
border-radius: 10px;
color: white;
margin: 10px;
font-size: 15px;
}
.btn:active {
transform: scale(0.9);
}
.btn:disabled {
cursor: not-allowed;
background-color: rgb(144, 177, 177);
}