24 lines
339 B
Text
24 lines
339 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: var(--monospace-fonts);
|
|
font-size: 1.5em;
|
|
font-weight: 700;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
counter-increment: steps-count;
|
|
}
|
|
}
|