28 lines
429 B
SCSS
28 lines
429 B
SCSS
ol {
|
|
counter-reset:procedure;
|
|
list-style-type: none;
|
|
margin:3em 0 4em 0;
|
|
padding:0;
|
|
|
|
li {
|
|
counter-increment:procedure;
|
|
display:flex;
|
|
margin-bottom:2.5em;
|
|
line-height:1.2em;
|
|
cursor:pointer;
|
|
|
|
&:before {
|
|
content:counter(procedure)".";
|
|
display:flex;
|
|
align-items:center;
|
|
margin-right:.5em;
|
|
width:auto;
|
|
font-weight:bold;
|
|
font-size:2em;
|
|
color:$primary;
|
|
}
|
|
|
|
&.completed { opacity: .4; }
|
|
}
|
|
}
|