30 lines
527 B
Plaintext
Raw Normal View History

2013-01-02 00:40:00 -05:00
//
// Wells
// --------------------------------------------------
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
2013-10-23 11:12:39 -04:00
background-color: @well-bg;
2014-05-14 15:13:14 -05:00
border: 1px solid @well-border;
2013-10-23 11:12:39 -04:00
border-radius: @border-radius-base;
2013-01-02 00:40:00 -05:00
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,.15);
}
}
// Sizes
2013-10-23 11:12:39 -04:00
.well-lg {
2013-01-02 00:40:00 -05:00
padding: 24px;
2013-10-23 11:12:39 -04:00
border-radius: @border-radius-large;
2013-01-02 00:40:00 -05:00
}
2013-10-23 11:12:39 -04:00
.well-sm {
2013-01-02 00:40:00 -05:00
padding: 9px;
2013-10-23 11:12:39 -04:00
border-radius: @border-radius-small;
2013-01-02 00:40:00 -05:00
}