fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_well.scss

44 lines
918 B
SCSS
Executable File

// Variables
//------------------------------------------------------
$well-font-color: $darkgray-dark !default;
$well-background-color: $white !default;
$well-blockquote-color: $mediumgray-light !default;
$well-radius: 4px;
$well-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default;
// Exports
//------------------------------------------------------
@include exports("well") {
/**
* well
* --------------------------------------------------
*/
.well {
padding: 10px;
border: none;
@include radius($type: border-radius, $value: $well-radius);
color: $modal-font-color;
background-color: $well-background-color;
@include box-shadow($value: $well-shadow);
& blockquote {
border-color: $well-blockquote-color;
}
@at-root &-lg {
padding: 20px;
}
@at-root &-sm {
padding: 5px;
}
}
}