kompose/docs/assets/css/jquery.accordion.css
Charlie Drage 597e7b0fdc
Add new kompose site (#1475)
Adds the new kompose site and moves it to the /docs folder so that it's
compatible with old links as well as gh-pages
2022-01-13 14:05:38 -05:00

64 lines
1.1 KiB
CSS

/*!
* jQuery Accordion 0.0.1
* (c) 2014 Victor Fernandez <victor@vctrfrnndz.com>
* MIT Licensed.
*/
/* Requirements */
[data-accordion] [data-content] {
overflow: hidden;
max-height: 0;
}
/* Basic Theme */
[data-accordion-group] {
padding: 20px;
box-shadow: 0 0px 15px rgba(0,0,0,0.06);
}
[data-control] {
cursor: pointer;
}
[data-accordion] {
line-height: 1;
}
[data-control],
[data-content] > * {
border-bottom: 1px solid #EEE;
padding: 10px;
}
[data-content] [data-accordion] {
border: 0;
padding: 0;
}
[data-accordion] [data-control] {
position: relative;
padding-right: 40px;
}
[data-accordion] > [data-control]:after {
content: "";
position: absolute;
right: 10px;
top: 12px;
font-size: 25px;
font-weight: 200;
color: #444;
height: 15px;
width: 24px;
background: url('../images/down.png') center center no-repeat;
background-size: 50%;
}
[data-accordion].open > [data-control]:after {
-webkit-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
transform: rotate(-180deg);
}