Revision 45dddc59a19f3e9decaa4bf0e0db3f884a0f6ff7 authored by Jacob Thornton on 19 August 2012, 02:54:30 UTC, committed by Jacob Thornton on 19 August 2012, 02:54:30 UTC
1 parent 44e35e9
Raw File
wells.less
//
// Wells
// --------------------------------------------------


// Base class
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: @wellBackground;
  border: 1px solid darken(@wellBackground, 7%);
  .border-radius(4px);
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
  blockquote {
    border-color: #ddd;
    border-color: rgba(0,0,0,.15);
  }
}

// Sizes
.well-large {
  padding: 24px;
  .border-radius(6px);
}
.well-small {
  padding: 9px;
  .border-radius(3px);
}
back to top