Skip to content

Instantly share code, notes, and snippets.

@celsowhite
Created January 16, 2018 19:08
Show Gist options
  • Save celsowhite/0876ab2f8cf9ed9903b8e4dd2aa8dd24 to your computer and use it in GitHub Desktop.
Save celsowhite/0876ab2f8cf9ed9903b8e4dd2aa8dd24 to your computer and use it in GitHub Desktop.
Custom Bullets
/*==================================
Lists
---
General ul and ol elements within wysiwyg content areas having specific bullet or numbered styling.
The below styles create custom bullets and numbered lists. Bullets can be any image or unicode. Numbers can have a specific font style.
==================================*/
ul, ol {
margin: 0;
padding: 0;
}
// Styled list within content areas
.wysiwyg {
// General
ul, ol {
list-style: none;
margin: 0 0 20px;
padding-left: 0;
}
ul li, ol li {
margin-bottom: 5px;
margin-left: 20px;
position: relative;
}
// Unordered List
ul li:before {
content: "\2022";
padding-right: 5px;
font-size: 40px;
vertical-align: middle;
display: inline-block;
margin-left: -20px;
position: absolute;
left: 0;
}
// Ordered
ol li {
counter-increment: item;
}
ol li:before {
padding-right: 5px;
content: counter(item) ".";
font-family: 'neutratextps_bold', sans-serif;
display: inline-block;
margin-left: -1em;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment