mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
27 lines
472 B
Text
27 lines
472 B
Text
// ACCORDION
|
|
// ---------
|
|
|
|
|
|
// Parent container
|
|
.accordion {
|
|
margin-bottom: @baseLineHeight;
|
|
}
|
|
|
|
// Group == heading + body
|
|
.accordion-group {
|
|
background-color: #f5f5f5;
|
|
.border-radius(4px);
|
|
}
|
|
.accordion-heading {
|
|
padding: 8px 15px;
|
|
border-bottom: 0;
|
|
}
|
|
.accordion-body {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
// Inner needs the styles because you can't animate properly with any styles on the element
|
|
.accordion-inner {
|
|
padding: 9px 15px;
|
|
border-top: 1px solid #e5e5e5;
|
|
}
|