Skip to content

Instantly share code, notes, and snippets.

@OviOvocny
Created August 18, 2016 11:01
Show Gist options
  • Save OviOvocny/1705b51fa8875e0cf7a5ade8c195851d to your computer and use it in GitHub Desktop.
Save OviOvocny/1705b51fa8875e0cf7a5ade8c195851d to your computer and use it in GitHub Desktop.
/* Adds icons before list headings */
h3::before {
vertical-align: top;
margin-left: 10px;
margin-right: 5px;
font-family: Material Icons;
font-size: larger;
}
#watching h3::before, #reading h3::before {
content: "\E037 "
}
#Upnext h3::before {
content: "\E044 "
}
#completed h3::before {
content: "\E876 "
}
#plantowatch h3::before, #plantoread h3::before {
content: "\E03B "
}
#onhold h3::before {
content: "\E034 "
}
#dropped h3::before {
content: "\E033 "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment