PageRenderTime 29ms CodeModel.GetById 19ms app.highlight 8ms RepoModel.GetById 1ms app.codeStats 0ms

/sass/bootstrap/_wells.scss

https://bitbucket.org/decore/my-svadba.ru
Sass | 27 lines | 22 code | 2 blank | 3 comment | 0 complexity | 1b123e1a950d14c29d42dc9af001cc93 MD5 | raw file
 1// WELLS
 2// -----
 3
 4.well {
 5  min-height: 20px;
 6  padding: 19px;
 7  margin-bottom: 20px;
 8  background-color: #f5f5f5;
 9  border: 1px solid #eee;
10  border: 1px solid rgba(0,0,0,.05);
11  @include border-radius(4px);
12  @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
13  blockquote {
14    border-color: #ddd;
15    border-color: rgba(0,0,0,.15);
16  }
17}
18
19// Sizes
20.well-large {
21  padding:24px;
22  @include border-radius(6px);
23}
24.well-small {
25  padding: 9px;
26  @include border-radius(3px);
27}