1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/less/wells.less

30 lines
535 B
Text
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Wells
// --------------------------------------------------
2012-06-29 00:46:45 -04:00
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
2013-03-31 20:25:52 -04: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 00:12:43 -05:00
// Sizes
.well-lg {
2012-03-07 00:12:43 -05:00
padding: 24px;
border-radius: @border-radius-large;
2012-03-07 00:12:43 -05:00
}
.well-sm {
2012-03-07 00:12:43 -05:00
padding: 9px;
border-radius: @border-radius-small;
2012-03-07 00:12:43 -05:00
}