Last active
December 23, 2015 07:59
-
-
Save bridgestew/6604519 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
/* =============================================================== | |
Our "separator" styles, from earlier | |
=========================================================== */ | |
/* Shorthand is great, but when you just want to tweak one value elsewhere -- long form is your friend */ | |
.separator { | |
border-bottom-color: #bca785; | |
border-bottom-width: 1px; | |
border-bottom-style: dashed; | |
padding-bottom: 10px; | |
} | |
/* =============================================================== | |
The Accordion | |
=========================================================== */ | |
.accordion { | |
font-family: sans-serif; | |
line-height: 1.5; | |
} | |
.accordion__header { | |
line-height: 1; | |
} | |
.accordion__header a { | |
display: block; | |
padding-top: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment