Last active
October 2, 2015 07:23
-
-
Save nathanmpark/3401aa4c9e43bd4491a2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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