comparison static/bootstrap/less/wells.less @ 61:130eccd396d8

Now using Boostrap with LESS.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 06 Feb 2013 08:22:31 -0800
parents
children d29e2f337b00
comparison
equal deleted inserted replaced
60:8250c977bc50 61:130eccd396d8
1 //
2 // Wells
3 // --------------------------------------------------
4
5
6 // Base class
7 .well {
8 min-height: 20px;
9 padding: 19px;
10 margin-bottom: 20px;
11 background-color: @wellBackground;
12 border: 1px solid darken(@wellBackground, 7%);
13 .border-radius(@baseBorderRadius);
14 .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
15 blockquote {
16 border-color: #ddd;
17 border-color: rgba(0,0,0,.15);
18 }
19 }
20
21 // Sizes
22 .well-large {
23 padding: 24px;
24 .border-radius(@borderRadiusLarge);
25 }
26 .well-small {
27 padding: 9px;
28 .border-radius(@borderRadiusSmall);
29 }