1// WELLS
2// -----
3
4.well {
5  min-height: 20px;
6  padding: 19px;
7  margin-bottom: 20px;
8  background-color: #f5f5f5;
9  border: 1px solid #eee;
10  border: 1px solid rgba(0,0,0,.05);
11  .border-radius(4px);
12  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
13  blockquote {
14    border-color: #ddd;
15    border-color: rgba(0,0,0,.15);
16  }
17}
18
19// Sizes
20.well-large {
21  padding: 24px;
22  .border-radius(6px);
23}
24.well-small {
25  padding: 9px;
26  .border-radius(3px);
27}
28