##// END OF EJS Templates
duplicate bootstrap variable and start tweek...
Matthias BUSSONNIER -
Show More
@@ -0,0 +1,301
1 //
2 // Variables
3 // --------------------------------------------------
4
5
6 // Global values
7 // --------------------------------------------------
8
9
10 // Grays
11 // -------------------------
12 @black: #000;
13 @grayDarker: #222;
14 @grayDark: #333;
15 @gray: #555;
16 @grayLight: #999;
17 @grayLighter: #eee;
18 @white: #fff;
19
20
21 // Accent colors
22 // -------------------------
23 @blue: #049cdb;
24 @blueDark: #0064cd;
25 @green: #46a546;
26 @red: #9d261d;
27 @yellow: #ffc40d;
28 @orange: #f89406;
29 @pink: #c3325f;
30 @purple: #7a43b6;
31
32
33 // Scaffolding
34 // -------------------------
35 @bodyBackground: @white;
36 @textColor: @grayDark;
37
38
39 // Links
40 // -------------------------
41 @linkColor: #08c;
42 @linkColorHover: darken(@linkColor, 15%);
43
44
45 // Typography
46 // -------------------------
47 @sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
48 @serifFontFamily: Georgia, "Times New Roman", Times, serif;
49 @monoFontFamily: Monaco, Menlo, Consolas, "Courier New", monospace;
50
51 @baseFontSize: 13px;
52 @baseFontFamily: @sansFontFamily;
53 @baseLineHeight: 20px;
54 @altFontFamily: @serifFontFamily;
55
56 @headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
57 @headingsFontWeight: bold; // 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: 0 6px; // 22px
72
73 @baseBorderRadius: 4px;
74 @borderRadiusLarge: 6px;
75 @borderRadiusSmall: 3px;
76
77
78 // Tables
79 // -------------------------
80 @tableBackground: transparent; // overall background-color
81 @tableBackgroundAccent: #f9f9f9; // for striping
82 @tableBackgroundHover: #f5f5f5; // for hover
83 @tableBorder: #ddd; // table and cell border
84
85 // Buttons
86 // -------------------------
87 @btnBackground: @white;
88 @btnBackgroundHighlight: darken(@white, 10%);
89 @btnBorder: #bbb;
90
91 @btnPrimaryBackground: @linkColor;
92 @btnPrimaryBackgroundHighlight: spin(@btnPrimaryBackground, 20%);
93
94 @btnInfoBackground: #5bc0de;
95 @btnInfoBackgroundHighlight: #2f96b4;
96
97 @btnSuccessBackground: #62c462;
98 @btnSuccessBackgroundHighlight: #51a351;
99
100 @btnWarningBackground: lighten(@orange, 15%);
101 @btnWarningBackgroundHighlight: @orange;
102
103 @btnDangerBackground: #ee5f5b;
104 @btnDangerBackgroundHighlight: #bd362f;
105
106 @btnInverseBackground: #444;
107 @btnInverseBackgroundHighlight: @grayDarker;
108
109
110 // Forms
111 // -------------------------
112 @inputBackground: @white;
113 @inputBorder: #ccc;
114 @inputBorderRadius: @baseBorderRadius;
115 @inputDisabledBackground: @grayLighter;
116 @formActionsBackground: #f5f5f5;
117 @inputHeight: @baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
118
119
120 // Dropdowns
121 // -------------------------
122 @dropdownBackground: @white;
123 @dropdownBorder: rgba(0,0,0,.2);
124 @dropdownDividerTop: #e5e5e5;
125 @dropdownDividerBottom: @white;
126
127 @dropdownLinkColor: @grayDark;
128 @dropdownLinkColorHover: @white;
129 @dropdownLinkColorActive: @white;
130
131 @dropdownLinkBackgroundActive: @linkColor;
132 @dropdownLinkBackgroundHover: @dropdownLinkBackgroundActive;
133
134
135
136 // COMPONENT VARIABLES
137 // --------------------------------------------------
138
139
140 // Z-index master list
141 // -------------------------
142 // Used for a bird's eye view of components dependent on the z-axis
143 // Try to avoid customizing these :)
144 @zindexDropdown: 1000;
145 @zindexPopover: 1010;
146 @zindexTooltip: 1030;
147 @zindexFixedNavbar: 1030;
148 @zindexModalBackdrop: 1040;
149 @zindexModal: 1050;
150
151
152 // Sprite icons path
153 // -------------------------
154 @iconSpritePath: "../img/glyphicons-halflings.png";
155 @iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
156
157
158 // Input placeholder text color
159 // -------------------------
160 @placeholderText: @grayLight;
161
162
163 // Hr border color
164 // -------------------------
165 @hrBorder: @grayLighter;
166
167
168 // Horizontal forms & lists
169 // -------------------------
170 @horizontalComponentOffset: 180px;
171
172
173 // Wells
174 // -------------------------
175 @wellBackground: #f5f5f5;
176
177
178 // Navbar
179 // -------------------------
180 @navbarCollapseWidth: 979px;
181 @navbarCollapseDesktopWidth: @navbarCollapseWidth + 1;
182
183 @navbarHeight: 40px;
184 @navbarBackgroundHighlight: #ffffff;
185 @navbarBackground: darken(@navbarBackgroundHighlight, 5%);
186 @navbarBorder: darken(@navbarBackground, 12%);
187
188 @navbarText: #777;
189 @navbarLinkColor: #777;
190 @navbarLinkColorHover: @grayDark;
191 @navbarLinkColorActive: @gray;
192 @navbarLinkBackgroundHover: transparent;
193 @navbarLinkBackgroundActive: darken(@navbarBackground, 5%);
194
195 @navbarBrandColor: @navbarLinkColor;
196
197 // Inverted navbar
198 @navbarInverseBackground: #111111;
199 @navbarInverseBackgroundHighlight: #222222;
200 @navbarInverseBorder: #252525;
201
202 @navbarInverseText: @grayLight;
203 @navbarInverseLinkColor: @grayLight;
204 @navbarInverseLinkColorHover: @white;
205 @navbarInverseLinkColorActive: @navbarInverseLinkColorHover;
206 @navbarInverseLinkBackgroundHover: transparent;
207 @navbarInverseLinkBackgroundActive: @navbarInverseBackground;
208
209 @navbarInverseSearchBackground: lighten(@navbarInverseBackground, 25%);
210 @navbarInverseSearchBackgroundFocus: @white;
211 @navbarInverseSearchBorder: @navbarInverseBackground;
212 @navbarInverseSearchPlaceholderColor: #ccc;
213
214 @navbarInverseBrandColor: @navbarInverseLinkColor;
215
216
217 // Pagination
218 // -------------------------
219 @paginationBackground: #fff;
220 @paginationBorder: #ddd;
221 @paginationActiveBackground: #f5f5f5;
222
223
224 // Hero unit
225 // -------------------------
226 @heroUnitBackground: @grayLighter;
227 @heroUnitHeadingColor: inherit;
228 @heroUnitLeadColor: inherit;
229
230
231 // Form states and alerts
232 // -------------------------
233 @warningText: #c09853;
234 @warningBackground: #fcf8e3;
235 @warningBorder: darken(spin(@warningBackground, -10), 3%);
236
237 @errorText: #b94a48;
238 @errorBackground: #f2dede;
239 @errorBorder: darken(spin(@errorBackground, -10), 3%);
240
241 @successText: #468847;
242 @successBackground: #dff0d8;
243 @successBorder: darken(spin(@successBackground, -10), 5%);
244
245 @infoText: #3a87ad;
246 @infoBackground: #d9edf7;
247 @infoBorder: darken(spin(@infoBackground, -10), 7%);
248
249
250 // Tooltips and popovers
251 // -------------------------
252 @tooltipColor: #fff;
253 @tooltipBackground: #000;
254 @tooltipArrowWidth: 5px;
255 @tooltipArrowColor: @tooltipBackground;
256
257 @popoverBackground: #fff;
258 @popoverArrowWidth: 10px;
259 @popoverArrowColor: #fff;
260 @popoverTitleBackground: darken(@popoverBackground, 3%);
261
262 // Special enhancement for popovers
263 @popoverArrowOuterWidth: @popoverArrowWidth + 1;
264 @popoverArrowOuterColor: rgba(0,0,0,.25);
265
266
267
268 // GRID
269 // --------------------------------------------------
270
271
272 // Default 940px grid
273 // -------------------------
274 @gridColumns: 12;
275 @gridColumnWidth: 60px;
276 @gridGutterWidth: 20px;
277 @gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
278
279 // 1200px min
280 @gridColumnWidth1200: 70px;
281 @gridGutterWidth1200: 30px;
282 @gridRowWidth1200: (@gridColumns * @gridColumnWidth1200) + (@gridGutterWidth1200 * (@gridColumns - 1));
283
284 // 768px-979px
285 @gridColumnWidth768: 42px;
286 @gridGutterWidth768: 20px;
287 @gridRowWidth768: (@gridColumns * @gridColumnWidth768) + (@gridGutterWidth768 * (@gridColumns - 1));
288
289
290 // Fluid grid
291 // -------------------------
292 @fluidGridColumnWidth: percentage(@gridColumnWidth/@gridRowWidth);
293 @fluidGridGutterWidth: percentage(@gridGutterWidth/@gridRowWidth);
294
295 // 1200px min
296 @fluidGridColumnWidth1200: percentage(@gridColumnWidth1200/@gridRowWidth1200);
297 @fluidGridGutterWidth1200: percentage(@gridGutterWidth1200/@gridRowWidth1200);
298
299 // 768px-979px
300 @fluidGridColumnWidth768: percentage(@gridColumnWidth768/@gridRowWidth768);
301 @fluidGridGutterWidth768: percentage(@gridGutterWidth768/@gridRowWidth768);
@@ -141,7 +141,7 textarea{overflow:auto;vertical-align:top;}
141 .clearfix:after{clear:both;}
141 .clearfix:after{clear:both;}
142 .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
142 .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
143 .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
143 .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
144 body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;}
144 body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#333333;background-color:#ffffff;}
145 a{color:#0088cc;text-decoration:none;}
145 a{color:#0088cc;text-decoration:none;}
146 a:hover{color:#005580;text-decoration:underline;}
146 a:hover{color:#005580;text-decoration:underline;}
147 .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
147 .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
@@ -223,7 +223,7 a:hover{color:#005580;text-decoration:underline;}
223 .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;}
223 .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;}
224 .container-fluid:after{clear:both;}
224 .container-fluid:after{clear:both;}
225 p{margin:0 0 10px;}
225 p{margin:0 0 10px;}
226 .lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;}
226 .lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px;}
227 small{font-size:85%;}
227 small{font-size:85%;}
228 strong{font-weight:bold;}
228 strong{font-weight:bold;}
229 em{font-style:italic;}
229 em{font-style:italic;}
@@ -240,16 +240,16 a.text-info:hover{color:#2d6987;}
240 a.text-success:hover{color:#356635;}
240 a.text-success:hover{color:#356635;}
241 h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;}
241 h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;}
242 h1,h2,h3{line-height:40px;}
242 h1,h2,h3{line-height:40px;}
243 h1{font-size:38.5px;}
243 h1{font-size:35.75px;}
244 h2{font-size:31.5px;}
244 h2{font-size:29.25px;}
245 h3{font-size:24.5px;}
245 h3{font-size:22.75px;}
246 h4{font-size:17.5px;}
246 h4{font-size:16.25px;}
247 h5{font-size:14px;}
247 h5{font-size:13px;}
248 h6{font-size:11.9px;}
248 h6{font-size:11.049999999999999px;}
249 h1 small{font-size:24.5px;}
249 h1 small{font-size:22.75px;}
250 h2 small{font-size:17.5px;}
250 h2 small{font-size:16.25px;}
251 h3 small{font-size:14px;}
251 h3 small{font-size:13px;}
252 h4 small{font-size:14px;}
252 h4 small{font-size:13px;}
253 .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;}
253 .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;}
254 ul,ol{padding:0;margin:0 0 10px 25px;}
254 ul,ol{padding:0;margin:0 0 10px 25px;}
255 ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
255 ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
@@ -276,11 +276,11 q:before,q:after,blockquote:before,blockquote:after{content:"";}
276 address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;}
276 address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;}
277 form{margin:0 0 20px;}
277 form{margin:0 0 20px;}
278 fieldset{padding:0;margin:0;border:0;}
278 fieldset{padding:0;margin:0;border:0;}
279 legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;}
279 legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;}
280 label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;}
280 label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px;}
281 input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
281 input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
282 label{display:block;margin-bottom:5px;}
282 label{display:block;margin-bottom:5px;}
283 select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;}
283 select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;}
284 input,textarea,.uneditable-input{width:206px;}
284 input,textarea,.uneditable-input{width:206px;}
285 textarea{height:auto;}
285 textarea{height:auto;}
286 textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);}
286 textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);}
@@ -351,9 +351,9 input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;bo
351 .help-block,.help-inline{color:#595959;}
351 .help-block,.help-inline{color:#595959;}
352 .help-block{display:block;margin-bottom:10px;}
352 .help-block{display:block;margin-bottom:10px;}
353 .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
353 .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
354 .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:14px;}
354 .input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu{font-size:13px;}
355 .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;}
355 .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;}
356 .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;}
356 .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;}
357 .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
357 .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
358 .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;}
358 .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;}
359 .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
359 .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
@@ -601,19 +601,19 table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span
601 .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;}
601 .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;}
602 .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
602 .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
603 button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
603 button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
604 .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;}
604 .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;}
605 .btn:active,.btn.active{background-color:#cccccc \9;}
605 .btn:active,.btn.active{background-color:#cccccc \9;}
606 .btn:first-child{*margin-left:0;}
606 .btn:first-child{*margin-left:0;}
607 .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
607 .btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
608 .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
608 .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
609 .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
609 .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
610 .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
610 .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
611 .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
611 .btn-large{padding:11px 19px;font-size:16.25px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
612 .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;}
612 .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;}
613 .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
613 .btn-small{padding:2px 10px;font-size:11.049999999999999px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
614 .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;}
614 .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;}
615 .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;}
615 .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;}
616 .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
616 .btn-mini{padding:0 6px;font-size:9.75px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
617 .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
617 .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
618 .btn-block+.btn-block{margin-top:5px;}
618 .btn-block+.btn-block{margin-top:5px;}
619 input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;}
619 input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;}
@@ -644,10 +644,10 button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-
644 .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;}
644 .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;}
645 .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
645 .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
646 .btn-group>.btn+.btn{margin-left:-1px;}
646 .btn-group>.btn+.btn{margin-left:-1px;}
647 .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;}
647 .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px;}
648 .btn-group>.btn-mini{font-size:10.5px;}
648 .btn-group>.btn-mini{font-size:9.75px;}
649 .btn-group>.btn-small{font-size:11.9px;}
649 .btn-group>.btn-small{font-size:11.049999999999999px;}
650 .btn-group>.btn-large{font-size:17.5px;}
650 .btn-group>.btn-large{font-size:16.25px;}
651 .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
651 .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
652 .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
652 .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
653 .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
653 .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
@@ -836,13 +836,13 button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-
836 .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
836 .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
837 .pagination-centered{text-align:center;}
837 .pagination-centered{text-align:center;}
838 .pagination-right{text-align:right;}
838 .pagination-right{text-align:right;}
839 .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;}
839 .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px;}
840 .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
840 .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
841 .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
841 .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
842 .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;}
842 .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;}
843 .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;}
843 .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;}
844 .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;}
844 .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px;}
845 .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;}
845 .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px;}
846 .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;}
846 .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;}
847 .pager:after{clear:both;}
847 .pager:after{clear:both;}
848 .pager li{display:inline;}
848 .pager li{display:inline;}
@@ -904,7 +904,7 a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105,
904 .media .pull-left{margin-right:10px;}
904 .media .pull-left{margin-right:10px;}
905 .media .pull-right{margin-left:10px;}
905 .media .pull-right{margin-left:10px;}
906 .media-list{margin-left:0;list-style:none;}
906 .media-list{margin-left:0;list-style:none;}
907 .label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;}
907 .label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;}
908 .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
908 .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
909 .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}
909 .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}
910 .label:empty,.badge:empty{display:none;}
910 .label:empty,.badge:empty{display:none;}
@@ -12,7 +12,7
12 @import "../components/bootstrap/less/reset.less";
12 @import "../components/bootstrap/less/reset.less";
13
13
14 // Core variables and mixins
14 // Core variables and mixins
15 @import "../components/bootstrap/less/variables.less"; // Modify this for custom colors, font-sizes, etc
15 @import "bootstrap-variables.less"; // Modify this for custom colors, font-sizes, etc
16 @import "../components/bootstrap/less/mixins.less";
16 @import "../components/bootstrap/less/mixins.less";
17
17
18 // Grid system and page structure
18 // Grid system and page structure
General Comments 0
You need to be logged in to leave comments. Login now