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
| .form-step-containt {
| position: relative;
| width: 100vw;
| padding: 5px 0px;
| display: flex;
| border: 0px;
| }
|
| .form-step-center-line {
| width: 100%;
| border-top-style: solid;
| border-top-color: gainsboro;
| border-top-width: 3px;
| position: absolute;
| }
|
| .form-step-item {
| width: 45px;
| height: 45px;
| display: flex;
| align-items: center;
| justify-content: center;
| flex-direction: column;
| text-align: center;
| border-radius: 50%;
| margin: 0 auto;
| margin-top: 7px;
| border: 1px solid #ccc;
| position: relative;
| flex-shrink: 0;
| }
|
| .form-step-item-finish {
| color:white;
| background-color: #39b5de;
| font-size:14px;
| }
| .form-step-item-unfinish {
| font-size:14px;
| color:#39b5de;
| background-color: white;
| }
| .form-step-item-active {
| width: 60px;
| height: 60px;
| display: flex;
| align-items: center;
| justify-content: center;
| flex-direction: column;
| text-align: center;
| border-radius: 50%;
| margin: 0 auto;
| border: 1px solid #ccc;
| position: relative;
| flex-shrink: 0;
| color: white;
| background-color: #39b5de;
| }
|
|