25 lines
333 B
Text
25 lines
333 B
Text
|
.steps-counter
|
||
|
{
|
||
|
counter-reset: steps-count 0;
|
||
|
|
||
|
.step
|
||
|
{
|
||
|
&::before
|
||
|
{
|
||
|
content: counter(steps-count);
|
||
|
|
||
|
display: inline-block;
|
||
|
margin: 0 0.2em;
|
||
|
|
||
|
color: var(--primary);
|
||
|
|
||
|
font-family: @monospace-fonts;
|
||
|
font-size: 1.5em;
|
||
|
font-weight: 700;
|
||
|
vertical-align: baseline;
|
||
|
}
|
||
|
|
||
|
counter-increment: steps-count;
|
||
|
}
|
||
|
}
|