Skip to content

Instantly share code, notes, and snippets.

@KaiserEMP
Last active January 29, 2018 12:20
Show Gist options
  • Save KaiserEMP/c020d71caa59374a4622cab20dccfd2c to your computer and use it in GitHub Desktop.
Save KaiserEMP/c020d71caa59374a4622cab20dccfd2c to your computer and use it in GitHub Desktop.
ul {
>li {
position: relative;
&::before {
display: inline-block;
content: '';
height: 6px;
width: 6px;
background-color: $brand-primary;
position: absolute;
left: 12px;
top: 8px;
border-radius: 50%;
}
}
}
ol {
>li {
list-style-type: none;
counter-increment: list;
position: relative;
&:before {
content: counter(list) ".";
position: absolute;
color: $brand-primary;
left: 10px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment