updated to 2.2.1
[bootswatch] / amelia / variables.less
1 // Amelia 2.2.1
2 // Variables
3 // --------------------------------------------------
4
5
6 // Global values
7 // --------------------------------------------------
8
9
10 // Grays
11 // -------------------------
12 @black:                 #000;
13 @grayDarker:            #111;
14 @grayDark:              #444;
15 @gray:                  #555;
16 @grayLight:             #aaa;
17 @grayLighter:           #ddd;
18 @white:                 #fff;
19
20
21 // Accent colors
22 // -------------------------
23 @blue:                  #00BCE1;
24 @blueDark:              #1269B0;
25 @green:                 #48CA3B;
26 @red:                   #AD1D28;
27 @yellow:                #DEBB27;
28 @orange:                #DF6E1E;
29 @pink:                  #FFBCB9;
30 @purple:                #4D3A7D;
31
32
33 // Scaffolding
34 // -------------------------
35 @bodyBackground:        #003F4D;
36 @textColor:             rgba(255, 255, 255, 0.9);
37
38
39 // Links
40 // -------------------------
41 @linkColor:             lighten(@yellow, 15%);
42 @linkColorHover:        @linkColor;
43
44
45 // Typography
46 // -------------------------
47 @sansFontFamily:        'Cabin', Verdana, sans-serif;
48 @serifFontFamily:       Georgia, "Times New Roman", Times, serif;
49 @monoFontFamily:        Menlo, Monaco, Consolas, "Courier New", monospace;
50
51 @baseFontSize:          14px;
52 @baseFontFamily:        @sansFontFamily;
53 @baseLineHeight:        20px;
54 @altFontFamily:         @serifFontFamily;
55
56 @headingsFontFamily:    'Lobster', cursive; // empty to use BS default, @baseFontFamily
57 @headingsFontWeight:    normal;    // instead of browser default, bold
58 @headingsColor:         inherit; // empty to use BS default, @textColor
59
60
61 // Component sizing
62 // -------------------------
63 // Based on 14px font-size and 20px line-height
64
65 @fontSizeLarge:         @baseFontSize * 1.25; // ~18px
66 @fontSizeSmall:         @baseFontSize * 0.85; // ~12px
67 @fontSizeMini:          @baseFontSize * 0.75; // ~11px
68
69 @paddingLarge:          11px 19px; // 44px
70 @paddingSmall:          2px 10px;  // 26px
71 @paddingMini:           1px 6px;   // 24px
72
73 @baseBorderRadius:      0;
74 @borderRadiusLarge:     6px;
75 @borderRadiusSmall:     3px;
76
77
78 // Tables
79 // -------------------------
80 @tableBackground:                   lighten(#147E88, 10%); // overall background-color
81 @tableBackgroundAccent:             lighten(#147E88, 15%); // for striping
82 @tableBackgroundHover:              rgba(255, 255, 255, 0.4); // for hover
83 @tableBorder:                       lighten(#147E88, 12%); // table and cell border
84
85 // Buttons
86 // -------------------------
87 @btnBackground:                     @grayLighter;
88 @btnBackgroundHighlight:            @grayLighter;
89 @btnBorder:                         rgba(0, 0, 0, 0);
90
91 @btnPrimaryBackground:              @navbarBackground;
92 @btnPrimaryBackgroundHighlight:     @navbarBackground;
93
94 @btnInfoBackground:                 @purple;
95 @btnInfoBackgroundHighlight:        @purple;
96
97 @btnSuccessBackground:              @green;
98 @btnSuccessBackgroundHighlight:     @green;
99
100 @btnWarningBackground:              @orange;
101 @btnWarningBackgroundHighlight:     @orange;
102
103 @btnDangerBackground:               @yellow;
104 @btnDangerBackgroundHighlight:      @yellow;
105
106 @btnInverseBackground:              #27666D;
107 @btnInverseBackgroundHighlight:     #27666D;
108
109
110 // Forms
111 // -------------------------
112 @inputBackground:               @white;
113 @inputBorder:                   transparent;
114 @inputBorderRadius:             @baseBorderRadius;
115 @inputDisabledBackground:       @grayLighter;
116 @formActionsBackground:         transparent;
117 @inputHeight:                   @baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
118
119 // Dropdowns
120 // -------------------------
121 @dropdownBackground:            @white;
122 @dropdownBorder:                rgba(0,0,0,.2);
123 @dropdownDividerTop:            #e5e5e5;
124 @dropdownDividerBottom:         @white;
125
126 @dropdownLinkColor:             @grayDark;
127 @dropdownLinkColorHover:        @white;
128 @dropdownLinkColorActive:       @dropdownLinkColor;
129
130 @dropdownLinkBackgroundActive:  @red;
131 @dropdownLinkBackgroundHover:   @red;
132
133
134
135 // COMPONENT VARIABLES
136 // --------------------------------------------------
137
138
139 // Z-index master list
140 // -------------------------
141 // Used for a bird's eye view of components dependent on the z-axis
142 // Try to avoid customizing these :)
143 @zindexDropdown:          1000;
144 @zindexPopover:           1010;
145 @zindexTooltip:           1020;
146 @zindexFixedNavbar:       1030;
147 @zindexModalBackdrop:     1040;
148 @zindexModal:             1050;
149
150
151 // Sprite icons path
152 // -------------------------
153 @iconSpritePath:          "../img/glyphicons-halflings.png";
154 @iconWhiteSpritePath:     "../img/glyphicons-halflings-white.png";
155
156
157 // Input placeholder text color
158 // -------------------------
159 @placeholderText:         @grayLight;
160
161
162 // Hr border color
163 // -------------------------
164 @hrBorder:                transparent;
165
166
167 // Horizontal forms & lists
168 // -------------------------
169 @horizontalComponentOffset:       180px;
170
171
172 // Wells
173 // -------------------------
174 @wellBackground:                  #3CB9C6;
175
176
177 // Navbar
178 // -------------------------
179 @navbarCollapseWidth:             979px;
180 @navbarCollapseDesktopWidth:      @navbarCollapseWidth + 1;
181
182 @navbarHeight:                    50px;
183 @navbarBackgroundHighlight:       @red;
184 @navbarBackground:                @red;
185 @navbarBorder:                    darken(@navbarBackground, 12%);
186
187 @navbarText:                      @white;
188 @navbarLinkColor:                 @white;
189 @navbarLinkColorHover:            @white;
190 @navbarLinkColorActive:           @navbarLinkColorHover;
191 @navbarLinkBackgroundHover:       lighten(@navbarBackground, 10%);
192 @navbarLinkBackgroundActive:      lighten(@navbarBackground, 10%);
193
194 @navbarBrandColor:                @navbarLinkColor;
195
196 // Inverted navbar
197 @navbarInverseBackground:                @yellow;
198 @navbarInverseBackgroundHighlight:       @yellow;
199 @navbarInverseBorder:                    rgba(0, 0, 0, 0.1);
200
201 @navbarInverseText:                      @white;
202 @navbarInverseLinkColor:                 @white;
203 @navbarInverseLinkColorHover:            @white;
204 @navbarInverseLinkColorActive:           @white;
205 @navbarInverseLinkBackgroundHover:       rgba(255, 255, 255, 0.2);
206 @navbarInverseLinkBackgroundActive:      rgba(255, 255, 255, 0.2);
207
208 @navbarInverseSearchBackground:          lighten(@navbarInverseBackground, 25%);
209 @navbarInverseSearchBackgroundFocus:     @white;
210 @navbarInverseSearchBorder:              @navbarInverseBackground;
211 @navbarInverseSearchPlaceholderColor:    @white;
212
213 @navbarInverseBrandColor:                @navbarInverseLinkColor;
214
215
216 // Pagination
217 // -------------------------
218 @paginationBackground:                #3CB9C6;
219 @paginationBorder:                    transparent;
220 @paginationActiveBackground:          rgba(255, 255, 255, 0.4);
221
222
223 // Hero unit
224 // -------------------------
225 @heroUnitBackground:              #3CB9C6;
226 @heroUnitHeadingColor:            inherit;
227 @heroUnitLeadColor:               inherit;
228
229
230 // Form states and alerts
231 // -------------------------
232 @warningText:             #c09853;
233 @warningBackground:       #fcf8e3;
234 @warningBorder:           darken(spin(@warningBackground, -10), 3%);
235
236 @errorText:               #b94a48;
237 @errorBackground:         #f2dede;
238 @errorBorder:             darken(spin(@errorBackground, -10), 3%);
239
240 @successText:             #468847;
241 @successBackground:       #dff0d8;
242 @successBorder:           darken(spin(@successBackground, -10), 5%);
243
244 @infoText:                #3a87ad;
245 @infoBackground:          #d9edf7;
246 @infoBorder:              darken(spin(@infoBackground, -10), 7%);
247
248
249 // Tooltips and popovers
250 // -------------------------
251 @tooltipColor:            #fff;
252 @tooltipBackground:       #000;
253 @tooltipArrowWidth:       5px;
254 @tooltipArrowColor:       @tooltipBackground;
255
256 @popoverBackground:       #fff;
257 @popoverArrowWidth:       10px;
258 @popoverArrowColor:       #fff;
259 @popoverTitleBackground:  @navbarBackground;
260
261 // Special enhancement for popovers
262 @popoverArrowOuterWidth:  @popoverArrowWidth + 1;
263 @popoverArrowOuterColor:  rgba(0,0,0,.25);
264
265
266
267 // GRID
268 // --------------------------------------------------
269
270
271 // Default 940px grid
272 // -------------------------
273 @gridColumns:             12;
274 @gridColumnWidth:         60px;
275 @gridGutterWidth:         20px;
276 @gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
277
278 // 1200px min
279 @gridColumnWidth1200:     70px;
280 @gridGutterWidth1200:     30px;
281 @gridRowWidth1200:        (@gridColumns * @gridColumnWidth1200) + (@gridGutterWidth1200 * (@gridColumns - 1));
282
283 // 768px-979px
284 @gridColumnWidth768:      42px;
285 @gridGutterWidth768:      20px;
286 @gridRowWidth768:         (@gridColumns * @gridColumnWidth768) + (@gridGutterWidth768 * (@gridColumns - 1));
287
288
289 // Fluid grid
290 // -------------------------
291 @fluidGridColumnWidth:    percentage(@gridColumnWidth/@gridRowWidth);
292 @fluidGridGutterWidth:    percentage(@gridGutterWidth/@gridRowWidth);
293
294 // 1200px min
295 @fluidGridColumnWidth1200:     percentage(@gridColumnWidth1200/@gridRowWidth1200);
296 @fluidGridGutterWidth1200:     percentage(@gridGutterWidth1200/@gridRowWidth1200);
297
298 // 768px-979px
299 @fluidGridColumnWidth768:      percentage(@gridColumnWidth768/@gridRowWidth768);
300 @fluidGridGutterWidth768:      percentage(@gridGutterWidth768/@gridRowWidth768);