Fork-Awesome/assets/less/bootstrap-3.3.5/wells.less

30 lines
527 B
Plaintext
Raw Normal View History

2013-01-02 13:40:00 +08:00
//
// Wells
// --------------------------------------------------
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
2013-10-23 23:12:39 +08:00
background-color: @well-bg;
2014-05-15 04:13:14 +08:00
border: 1px solid @well-border;
2013-10-23 23:12:39 +08:00
border-radius: @border-radius-base;
2013-01-02 13:40:00 +08: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 23:12:39 +08:00
.well-lg {
2013-01-02 13:40:00 +08:00
padding: 24px;
2013-10-23 23:12:39 +08:00
border-radius: @border-radius-large;
2013-01-02 13:40:00 +08:00
}
2013-10-23 23:12:39 +08:00
.well-sm {
2013-01-02 13:40:00 +08:00
padding: 9px;
2013-10-23 23:12:39 +08:00
border-radius: @border-radius-small;
2013-01-02 13:40:00 +08:00
}