2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-14 18:42:30 +03:00

moving structure around + more work on builder...

This commit is contained in:
Jacob Thornton
2012-01-26 21:48:46 -08:00
parent e0e54d9c6c
commit dc2deb9a1b
47 changed files with 100 additions and 91 deletions
+30
View File
@@ -0,0 +1,30 @@
// ACCORDION
// ---------
// Parent container
.accordion {
margin-bottom: @baseLineHeight;
}
// Group == heading + body
.accordion-group {
background-color: #f5f5f5;
.border-radius(4px);
}
.accordion-heading {
border-bottom: 0;
}
.accordion-heading .accordion-toggle {
display: block;
padding: 8px 15px;
}
.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;
}