-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (78 loc) · 1.5 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
70
71
72
73
74
75
76
77
78
body{
display: flex;
justify-content: center;
align-items: center;
padding-top: 15%;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
max-width: 400px;
width: 100%;
}
.container .steps{
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
position: relative;
}
.steps .circle{
display: flex;
align-items: center;
justify-content: center;
height: 50px;
width: 50px;
color: #999;
font-size: 22px;
font-weight: 500;
border-radius: 50%;
background: #fff;
border: 4px solid #e0e0e0;
transition: all 200ms ease;
transition-delay: 0%;
}
.steps .circle:active{
transition-delay: 100ms;
border-color: #4070f4;
color: #4070f4;
}
.steps .progress-bar{
position: absolute;
height: 4px;
width: 100%;
background: #e0e0e0;
z-index: -1;
}
.progress-bar .indicator{
position: absolute;
height: 100%;
width: 0%;
background: #4070f4;
transition: all 300ms ease;
}
.container .buttons{
display: flex;
gap: 20px;
}
.buttons button{
padding: 8px 25px;
background: #4070f4;
border: none;
border-radius: 8px;
color: #fff;
font-size: 16px;
font-weight: 400;
cursor: pointer;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
transition: all 200ms linear;
}
.buttons button:active{
transform: scale(0.97);
}
.buttons button:disabled{
background: #87a5f8;
cursor: not-allowed;
}