twbs--bootstrap/less/wells.less

30 lines
535 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;
2013-04-01 00:25:52 +00:00
background-color: @well-bg;
border: 1px solid darken(@well-bg, 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-lg {
2012-03-07 05:12:43 +00:00
padding: 24px;
border-radius: @border-radius-large;
2012-03-07 05:12:43 +00:00
}
.well-sm {
2012-03-07 05:12:43 +00:00
padding: 9px;
border-radius: @border-radius-small;
2012-03-07 05:12:43 +00:00
}