75 lines
1.3 KiB
SCSS
75 lines
1.3 KiB
SCSS
@charset "UTF-8";
|
|
|
|
.module-title {
|
|
font-size: 1.5rem;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 2rem;
|
|
|
|
&:after {
|
|
position: absolute;
|
|
bottom: 0;
|
|
transform:translateX(-50%);
|
|
left: 50%;
|
|
content: '';
|
|
width: 100px;
|
|
height: 1px;
|
|
background: #FD560F;
|
|
}
|
|
}
|
|
|
|
.steps-wrap {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
position: relative;
|
|
|
|
&:before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 14px;
|
|
left: 0;
|
|
width: 100%;
|
|
border-bottom: 3px solid #D7D7D7;
|
|
}
|
|
|
|
> div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
position: relative;
|
|
&.active {
|
|
.number {
|
|
background-color: #3C3D41;
|
|
border-color: #3C3D41;
|
|
color: #eee;
|
|
}
|
|
|
|
.title {
|
|
color: #111;
|
|
}
|
|
}
|
|
|
|
.number-wrap {
|
|
background-color: #fff;
|
|
padding: 0 4px;
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
.number {
|
|
border: 2px solid #ddd;
|
|
width: 30px;
|
|
height: 30px;
|
|
background-color: #fff;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center; // flex-start | center
|
|
justify-content: center; // flex-end | center | space-between
|
|
}
|
|
|
|
.title {
|
|
color: #848484;
|
|
}
|
|
}
|
|
} |