Initial coomit for AAI-UI(sparky-fe)
[aai/sparky-fe.git] / resources / scss / bootstrap / _wells.scss
1 //
2 // Wells
3 // --------------------------------------------------
4
5 // Base class
6 .well {
7   min-height: 20px;
8   padding: 19px;
9   margin-bottom: 20px;
10   background-color: $well-bg;
11   border: 1px solid $well-border;
12   border-radius: $border-radius-base;
13   @include box-shadow(inset 0 1px 1px rgba(0, 0, 0, .05));
14   blockquote {
15         border-color: #ddd;
16         border-color: rgba(0, 0, 0, .15);
17   }
18 }
19
20 // Sizes
21 .well-lg {
22   padding: 24px;
23   border-radius: $border-radius-large;
24 }
25
26 .well-sm {
27   padding: 9px;
28   border-radius: $border-radius-small;
29 }