2
0
mirror of https://github.com/erikflowers/weather-icons.git synced 2025-10-12 07:22:11 -06:00

30 lines
527 B
Plaintext
Raw Permalink Normal View History

//
// Wells
// --------------------------------------------------
// Base class
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: @well-bg;
2015-07-31 21:11:08 -07:00
border: 1px solid @well-border;
border-radius: @border-radius-base;
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,.15);
}
}
// Sizes
2015-07-31 21:11:08 -07:00
.well-lg {
padding: 24px;
border-radius: @border-radius-large;
}
2015-07-31 21:11:08 -07:00
.well-sm {
padding: 9px;
border-radius: @border-radius-small;
}