Created
November 9, 2017 21:59
-
-
Save JesseRWeigel/2a924ed3fe4942ff380c4b708e2c5b12 to your computer and use it in GitHub Desktop.
Accordion Styles
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
.ui-accordion { | |
border-radius: 2px; | |
-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); | |
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); | |
} | |
.ui-accordion .ui-header { | |
background: none; | |
background-color: #fff; | |
border: none; | |
border-bottom: 1px solid rgba(0, 0, 0, 0.15); | |
border-radius: 0; | |
padding: 15px; | |
} | |
.ui-accordion .ui-accordion-content { | |
border: none; | |
border-bottom: 1px solid rgba(0, 0, 0, 0.15); | |
border-radius: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment