breadline.scss
869 Bytes
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
@import "../../../scss/krhr/mixins-component";
.steps{
margin: 40px auto 70px auto;
position: relative;
height: 30px;
}
.step{
display: inline-block;
width: 40px;
height: 40px;
border-radius: 20px;
text-align: center;
padding: 8px 0;
z-index: 3;
position: absolute;
color: $white;
font-size: $font-size-large;
}
.setp_line{
display: block;
width: 100%;
height: 1px;
border-top: 2px dashed #d9d9d9;
position: absolute;
top: 20px;
left: 10px;
z-index: 2;
}
.step_title{
color: #333333;
position: absolute;
width: 120px;
left: -100%;
top: 45px;
font-size: $font-size-base;
}
.bold{
font-weight: bold;
}
.unActive{
background-color: #d9d9d9;
}
.activate{
background-color: #29b27b;
}
.split_line_wrap{
width: 100%;
padding: 5px 3px 10px 30px;
}
.split_line{
border-bottom: 2px solid $success;
width: 100%;
}