twbs--bootstrap/less/wells.less

30 lines
557 B
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Wells
// --------------------------------------------------
2012-06-29 04:46:45 +00:00
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
2012-11-30 23:27:13 +00:00
background-color: @well-background;
border: 1px solid darken(@well-background, 7%);
border-radius: @border-radius-base;
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,.15);
}
}
2012-03-07 05:12:43 +00:00
// Sizes
.well-large {
padding: 24px;
border-radius: @border-radius-large;
2012-03-07 05:12:43 +00:00
}
.well-small {
padding: 9px;
border-radius: @border-radius-small;
2012-03-07 05:12:43 +00:00
}