0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/less/wells.less

30 lines
552 B
Plaintext
Raw Normal View History

2012-06-28 21:46:45 -07:00
//
// Wells
// --------------------------------------------------
2012-06-28 21:46:45 -07:00
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: @wellBackground;
border: 1px solid darken(@wellBackground, 7%);
2012-10-03 09:26:52 -07: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-06 21:12:43 -08:00
// Sizes
.well-large {
padding: 24px;
2012-10-03 09:26:52 -07:00
.border-radius(@borderRadiusLarge);
2012-03-06 21:12:43 -08:00
}
.well-small {
padding: 9px;
2012-10-03 09:26:52 -07:00
.border-radius(@borderRadiusSmall);
2012-03-06 21:12:43 -08:00
}