Skip to content

Instantly share code, notes, and snippets.

@nathanmpark
Last active October 2, 2015 07:23
Show Gist options
  • Save nathanmpark/3401aa4c9e43bd4491a2 to your computer and use it in GitHub Desktop.
Save nathanmpark/3401aa4c9e43bd4491a2 to your computer and use it in GitHub Desktop.
/*Example CSS - follows atomic style CSS*/
.blog-list { /*This line references a class called "blog-list"*/
list-style: none; /*Any lists within this class should not display bullets*/
padding-left: 1em; /*padding to the left of this class element is 1 em*/
}
.page-list {
list-style: square;
margin-top: 0em;
}
.list-title {
margin-bottom: 0em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment