Skip to content

Instantly share code, notes, and snippets.

@dewwwald
Last active August 2, 2016 07:08
Show Gist options
  • Save dewwwald/0e4b9d25de5cd9070935 to your computer and use it in GitHub Desktop.
Save dewwwald/0e4b9d25de5cd9070935 to your computer and use it in GitHub Desktop.
Just an Idea on how to style lists Styling lists is a mission.

#Just an Idea on how to style lists

$list-icon-size: .4;
ul {
font-size: inherit;
li {
list-style: none;
vertical-align: baseline;
&:before {
content: "√";
display: inline;
vertical-align: bottom;
font-size: #{$list-icon-size}em; // some smaller fs
line-height: #{1/$list-icon-size}em; // has to be
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment