Skip to content

Instantly share code, notes, and snippets.

@ovpv
Created March 23, 2019 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ovpv/665ebabf96c02552b0df768c86b956b0 to your computer and use it in GitHub Desktop.
Save ovpv/665ebabf96c02552b0df768c86b956b0 to your computer and use it in GitHub Desktop.
accordion styling
#accordion{
margin-top: 20px;
}
.tab{
.title{
padding:10px;
background-color: #f4f4f4;
}
.content{
padding:10px;
border: 1px 0 1px 1px;
border-style: solid;
border-color: #f4f4f4;
}
}
.flex{
display:flex;
}
.show{
display:block;
}
.hide{
display:none;
}
.jc-btwn{
justify-content: space-between;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment