2024-07-13 16:38:32 +02:00
|
|
|
.steps-counter
|
|
|
|
{
|
|
|
|
counter-reset: steps-count 0;
|
|
|
|
|
|
|
|
.step
|
|
|
|
{
|
|
|
|
&::before
|
|
|
|
{
|
|
|
|
content: counter(steps-count);
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 0.2em;
|
|
|
|
|
|
|
|
color: var(--primary);
|
|
|
|
|
2024-09-26 10:48:15 +02:00
|
|
|
font-family: var(--monospace-fonts);
|
2024-07-13 16:38:32 +02:00
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 700;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
counter-increment: steps-count;
|
|
|
|
}
|
|
|
|
}
|