twbs--bootstrap/less/wells.less

30 lines
552 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;
background-color: @wellBackground;
border: 1px solid darken(@wellBackground, 7%);
2012-10-03 16:26:52 +00:00
.border-radius(@baseBorderRadius);
.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;
2012-10-03 16:26:52 +00:00
.border-radius(@borderRadiusLarge);
2012-03-07 05:12:43 +00:00
}
.well-small {
padding: 9px;
2012-10-03 16:26:52 +00:00
.border-radius(@borderRadiusSmall);
2012-03-07 05:12:43 +00:00
}