2017-04-12 00:04:27 -05:00

30 lines
447 B
Plaintext
Executable File

//
// Wells
// --------------------------------------------------
// Base class
.well {
min-height: 20px;
padding: @space;
margin-top: @space;
margin-bottom: @space;
background-color: @well-bg;
border: 1px solid @well-border;
.box-shadow(inset 0 1px 1px rgba(0, 0, 0, .05));
*:first-child {
margin-top: 0;
}
*:last-child {
margin-bottom: 0;
}
}
.well.lg {
padding: @space*2;
}
.well.sm {
padding: @space/2;
}