platform/static/assets/scss/volt/components/_steps.scss
Administrator 9e7fc7b4c1 initial
2023-09-23 16:13:11 +03:00

62 lines
1.2 KiB
SCSS

/**steps
* = Accordions
*/
.step{
position: relative;
margin-bottom: 4rem;
border-radius: 6px;
.step-shape{
display: inline-flex;
width: $step-shape-size;
height: $step-shape-size;
text-align: center;
@include align-items(center);
@include justify-content(center);
i, svg {
font-size: $icon-size;
}
.step-number{
position: absolute;
font-weight: $font-weight-bold;
top: -10px;
width: 32px;
height: 32px;
border-width: $step-border-width;
border-style: solid;
line-height: 1.7;
}
&.bordered {
border-width: $step-border-width;
border-style: solid;
.step-number {
background-color: $white;
top:-12px;
}
}
&.rounded-circle{
.step-number{
margin-right:1.275rem;
}
}
}
.icon-lg{
font-size: $step-icon-size;
}
.back-layer{
@include display-flex();
position: absolute;
font-size: $step-number-size;
z-index: 0;
top: 0;
}
}