mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-04 02:34:41 +00:00
28 lines
388 B
Text
28 lines
388 B
Text
// ACCORDION
|
|
// ---------
|
|
|
|
.accordion {
|
|
margin-bottom: @baseLineHeight;
|
|
}
|
|
|
|
.accordion-group {
|
|
background-color: #f5f5f5;
|
|
.border-radius(4px);
|
|
}
|
|
.accordion-heading {
|
|
padding: 8px 15px;
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.accordion-body {
|
|
margin: 0 0 2px;
|
|
}
|
|
|
|
.accordion-inner {
|
|
padding: 9px 15px;
|
|
border-top: 1px solid #e5e5e5;
|
|
}
|
|
|
|
.accordion .in {
|
|
margin-bottom: @baseLineHeight / 2;
|
|
}
|