arrfab / centos / centos.org

Forked from centos/centos.org 3 years ago
Clone

Blame content/assets/css/bootstrap/_wells.scss

e8ec7a
//
e8ec7a
// Wells
e8ec7a
// --------------------------------------------------
e8ec7a
e8ec7a
e8ec7a
// Base class
e8ec7a
.well {
e8ec7a
  min-height: 20px;
e8ec7a
  padding: 19px;
e8ec7a
  margin-bottom: 20px;
e8ec7a
  background-color: $well-bg;
e8ec7a
  border: 1px solid darken($well-bg, 7%);
e8ec7a
  border-radius: $border-radius-base;
e8ec7a
  @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
e8ec7a
  blockquote {
e8ec7a
    border-color: #ddd;
e8ec7a
    border-color: rgba(0,0,0,.15);
e8ec7a
  }
e8ec7a
}
e8ec7a
e8ec7a
// Sizes
e8ec7a
.well-lg {
e8ec7a
  padding: 24px;
e8ec7a
  border-radius: $border-radius-large;
e8ec7a
}
e8ec7a
.well-sm {
e8ec7a
  padding: 9px;
e8ec7a
  border-radius: $border-radius-small;
e8ec7a
}