Files
pathfinder/sass/bootstrap/_wells.scss

35 lines
567 B
SCSS

//
// Wells
// --------------------------------------------------
// Base class
.well {
min-height: 20px;
padding: 10px;
margin-bottom: 20px;
background-color: $well-bg;
border: 1px solid $well-border;
@include border-radius(5px);
color: $gray-darker;
font-family: $font-family-bold;
blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,.15);
}
a {
color: $teal-lightest;
}
}
// Sizes
.well-lg {
padding: 24px;
border-radius: $border-radius-large;
}
.well-sm {
padding: 9px;
border-radius: $border-radius-small;
}