You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
341 B
SCSS
23 lines
341 B
SCSS
ol {
|
|
counter-reset:procedure;
|
|
list-style-type: none;
|
|
margin-bottom:4em;
|
|
padding:0;
|
|
|
|
li {
|
|
counter-increment:procedure;
|
|
margin-bottom:2.5em;
|
|
line-height:1em;
|
|
|
|
&:before {
|
|
content:counter(procedure)".";
|
|
display:block;
|
|
margin:0 .5em .5em 0;
|
|
width:auto;
|
|
font-weight:bold;
|
|
font-size:2em;
|
|
color:$primary;
|
|
}
|
|
}
|
|
}
|