Add sphinx documentation, integrated into our navigation and colour scheme
[ndcode_site.git] / css / bootstrap / variables.less
1 //
2 // Variables
3 // --------------------------------------------------
4
5
6 //== Colors
7 //
8 //## Gray and brand colors for use across Bootstrap.
9
10 @gray-base:              #000;
11 @gray-darker:            lighten(@gray-base, 13.5%); // #222
12 @gray-dark:              lighten(@gray-base, 20%);   // #333
13 @gray:                   lighten(@gray-base, 33.5%); // #555
14 @gray-light:             lighten(@gray-base, 46.7%); // #777
15 @gray-light2:            lighten(@gray-base, 80%); // Nick
16 @gray-lighter:           lighten(@gray-base, 93.5%); // #eee
17
18 @brand-primary:         #0a0; // Nick darken(#428bca, 6.5%); // #337ab7
19 @brand-success:         #ff8000; // Nick #5cb85c;
20 @brand-info:            #5bc0de;
21 @brand-warning:         #f0ad4e;
22 @brand-danger:          #d9534f;
23
24
25 //== Scaffolding
26 //
27 //## Settings for some of the most global styles.
28
29 //** Background color for `<body>`.
30 @body-bg:               #fff;
31 //** Global text color on `<body>`.
32 @text-color:            #000; // Nick @gray-dark;
33
34 //** Global textual link color.
35 @link-color:            darken(@brand-primary, 10%); // Nick @brand-primary;
36 //** Link hover color set via `darken()` function.
37 @link-hover-color:      darken(@link-color, 10%); // Nick 15%);
38 //** Link hover decoration.
39 @link-hover-decoration: underline;
40
41
42 //== Typography
43 //
44 //## Font, line-height, and color for body text, headings, and more.
45
46 @font-family-sans-serif:  "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; // Nick added Nunito Sans
47 @font-family-serif:       "Frank Ruhl Libre", Georgia, "Times New Roman", Times, serif; // Nick added Frank Ruhl Libre
48 //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
49 @font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
50 @font-family-base:        @font-family-sans-serif;
51
52 @font-size-base:          17px; // Nick 14px;
53 @font-size-large:         ceil((@font-size-base * 1.25)); // ~18px
54 @font-size-small:         ceil((@font-size-base * 0.85)); // ~12px
55
56 @font-size-h1:            floor((@font-size-base * 1.8)); // Nick 2.6)); // ~36px
57 @font-size-h2:            floor((@font-size-base * 1.6)); // Nick 2.15)); // ~30px
58 @font-size-h3:            ceil((@font-size-base * 1.4)); // Nick 1.7)); // ~24px
59 @font-size-h4:            ceil((@font-size-base * 1.2)); // ~18px
60 @font-size-h5:            @font-size-base;
61 @font-size-h6:            ceil((@font-size-base * 0.85)); // ~12px
62
63 //** Unit-less `line-height` for use in components like buttons.
64 @line-height-base:        1.428571429; // 20/14
65 //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
66 @line-height-computed:    floor((@font-size-base * @line-height-base)); // ~20px
67
68 //** By default, this inherits from the `<body>`.
69 @headings-font-family:    inherit;
70 @headings-font-weight:    600; // Nick 500;
71 @headings-line-height:    1.1;
72 @headings-color:          inherit;
73
74
75 //== Iconography
76 //
77 //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
78
79 //** Load fonts from this directory.
80 @icon-font-path:          "../fonts/";
81 //** File name for all font files.
82 @icon-font-name:          "glyphicons-halflings-regular";
83 //** Element ID within SVG icon file.
84 @icon-font-svg-id:        "glyphicons_halflingsregular";
85
86
87 //== Components
88 //
89 //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
90
91 @padding-base-vertical:     6px;
92 @padding-base-horizontal:   12px;
93
94 @padding-large-vertical:    10px;
95 @padding-large-horizontal:  16px;
96
97 @padding-small-vertical:    5px;
98 @padding-small-horizontal:  10px;
99
100 @padding-xs-vertical:       1px;
101 @padding-xs-horizontal:     5px;
102
103 @line-height-large:         1.3333333; // extra decimals for Win 8.1 Chrome
104 @line-height-small:         1.5;
105
106 @border-radius-base:        4px;
107 @border-radius-large:       6px;
108 @border-radius-small:       3px;
109
110 //** Global color for active items (e.g., navs or dropdowns).
111 @component-active-color:    #fff;
112 //** Global background color for active items (e.g., navs or dropdowns).
113 @component-active-bg:       @brand-primary;
114
115 //** Width of the `border` for generating carets that indicate dropdowns.
116 @caret-width-base:          4px;
117 //** Carets increase slightly in size for larger components.
118 @caret-width-large:         5px;
119
120
121 //== Tables
122 //
123 //## Customizes the `.table` component with basic values, each used across all table variations.
124
125 //** Padding for `<th>`s and `<td>`s.
126 @table-cell-padding:            8px;
127 //** Padding for cells in `.table-condensed`.
128 @table-condensed-cell-padding:  5px;
129
130 //** Default background color used for all tables.
131 @table-bg:                      transparent;
132 //** Background color used for `.table-striped`.
133 @table-bg-accent:               #f9f9f9;
134 //** Background color used for `.table-hover`.
135 @table-bg-hover:                #f5f5f5;
136 @table-bg-active:               @table-bg-hover;
137
138 //** Border color for table and cell borders.
139 @table-border-color:            #ddd;
140
141
142 //== Buttons
143 //
144 //## For each of Bootstrap's buttons, define text, background and border color.
145
146 @btn-font-weight:                normal;
147
148 @btn-default-color:              #333;
149 @btn-default-bg:                 #fff;
150 @btn-default-border:             #ccc;
151
152 @btn-primary-color:              #fff;
153 @btn-primary-bg:                 @brand-primary;
154 @btn-primary-border:             darken(@btn-primary-bg, 5%);
155
156 @btn-success-color:              #fff;
157 @btn-success-bg:                 @brand-success;
158 @btn-success-border:             darken(@btn-success-bg, 5%);
159
160 @btn-info-color:                 #fff;
161 @btn-info-bg:                    @brand-info;
162 @btn-info-border:                darken(@btn-info-bg, 5%);
163
164 @btn-warning-color:              #fff;
165 @btn-warning-bg:                 @brand-warning;
166 @btn-warning-border:             darken(@btn-warning-bg, 5%);
167
168 @btn-danger-color:               #fff;
169 @btn-danger-bg:                  @brand-danger;
170 @btn-danger-border:              darken(@btn-danger-bg, 5%);
171
172 @btn-link-disabled-color:        @gray-light;
173
174 // Allows for customizing button radius independently from global border radius
175 @btn-border-radius-base:         @border-radius-base;
176 @btn-border-radius-large:        @border-radius-large;
177 @btn-border-radius-small:        @border-radius-small;
178
179
180 //== Forms
181 //
182 //##
183
184 //** `<input>` background color
185 @input-bg:                       #fff;
186 //** `<input disabled>` background color
187 @input-bg-disabled:              @gray-lighter;
188
189 //** Text color for `<input>`s
190 @input-color:                    @gray;
191 //** `<input>` border color
192 @input-border:                   #ccc;
193
194 // TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
195 //** Default `.form-control` border radius
196 // This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
197 @input-border-radius:            @border-radius-base;
198 //** Large `.form-control` border radius
199 @input-border-radius-large:      @border-radius-large;
200 //** Small `.form-control` border radius
201 @input-border-radius-small:      @border-radius-small;
202
203 //** Border color for inputs on focus
204 @input-border-focus:             #66afe9;
205
206 //** Placeholder text color
207 @input-color-placeholder:        #999;
208
209 //** Default `.form-control` height
210 @input-height-base:              (@line-height-computed + (@padding-base-vertical * 2) + 2);
211 //** Large `.form-control` height
212 @input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
213 //** Small `.form-control` height
214 @input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
215
216 //** `.form-group` margin
217 @form-group-margin-bottom:       15px;
218
219 @legend-color:                   @gray-dark;
220 @legend-border-color:            #e5e5e5;
221
222 //** Background color for textual input addons
223 @input-group-addon-bg:           @gray-lighter;
224 //** Border color for textual input addons
225 @input-group-addon-border-color: @input-border;
226
227 //** Disabled cursor for form controls and buttons.
228 @cursor-disabled:                not-allowed;
229
230
231 //== Dropdowns
232 //
233 //## Dropdown menu container and contents.
234
235 //** Background for the dropdown menu.
236 @dropdown-bg:                    #fff;
237 //** Dropdown menu `border-color`.
238 @dropdown-border:                rgba(0,0,0,.15);
239 //** Dropdown menu `border-color` **for IE8**.
240 @dropdown-fallback-border:       #ccc;
241 //** Divider color for between dropdown items.
242 @dropdown-divider-bg:            #e5e5e5;
243
244 //** Dropdown link text color.
245 @dropdown-link-color:            @gray-dark;
246 //** Hover color for dropdown links.
247 @dropdown-link-hover-color:      darken(@gray-dark, 5%);
248 //** Hover background for dropdown links.
249 @dropdown-link-hover-bg:         #f5f5f5;
250
251 //** Active dropdown menu item text color.
252 @dropdown-link-active-color:     @component-active-color;
253 //** Active dropdown menu item background color.
254 @dropdown-link-active-bg:        @component-active-bg;
255
256 //** Disabled dropdown menu item background color.
257 @dropdown-link-disabled-color:   @gray-light;
258
259 //** Text color for headers within dropdown menus.
260 @dropdown-header-color:          @gray-light;
261
262 //** Deprecated `@dropdown-caret-color` as of v3.1.0
263 @dropdown-caret-color:           #000;
264
265
266 //-- Z-index master list
267 //
268 // Warning: Avoid customizing these values. They're used for a bird's eye view
269 // of components dependent on the z-axis and are designed to all work together.
270 //
271 // Note: These variables are not generated into the Customizer.
272
273 @zindex-navbar:            1000;
274 @zindex-dropdown:          1000;
275 @zindex-popover:           1060;
276 @zindex-tooltip:           1070;
277 @zindex-navbar-fixed:      1030;
278 @zindex-modal-background:  1040;
279 @zindex-modal:             1050;
280
281
282 //== Media queries breakpoints
283 //
284 //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
285
286 // Extra small screen / phone
287 //** Deprecated `@screen-xs` as of v3.0.1
288 @screen-xs:                  480px;
289 //** Deprecated `@screen-xs-min` as of v3.2.0
290 @screen-xs-min:              @screen-xs;
291 //** Deprecated `@screen-phone` as of v3.0.1
292 @screen-phone:               @screen-xs-min;
293
294 // Small screen / tablet
295 //** Deprecated `@screen-sm` as of v3.0.1
296 @screen-sm:                  768px;
297 @screen-sm-min:              @screen-sm;
298 //** Deprecated `@screen-tablet` as of v3.0.1
299 @screen-tablet:              @screen-sm-min;
300
301 // Medium screen / desktop
302 //** Deprecated `@screen-md` as of v3.0.1
303 @screen-md:                  992px;
304 @screen-md-min:              @screen-md;
305 //** Deprecated `@screen-desktop` as of v3.0.1
306 @screen-desktop:             @screen-md-min;
307
308 // Large screen / wide desktop
309 //** Deprecated `@screen-lg` as of v3.0.1
310 @screen-lg:                  1200px;
311 @screen-lg-min:              @screen-lg;
312 //** Deprecated `@screen-lg-desktop` as of v3.0.1
313 @screen-lg-desktop:          @screen-lg-min;
314
315 // So media queries don't overlap when required, provide a maximum
316 @screen-xs-max:              (@screen-sm-min - 1);
317 @screen-sm-max:              (@screen-md-min - 1);
318 @screen-md-max:              (@screen-lg-min - 1);
319
320
321 //== Grid system
322 //
323 //## Define your custom responsive grid.
324
325 //** Number of columns in the grid.
326 @grid-columns:              12;
327 //** Padding between columns. Gets divided in half for the left and right.
328 @grid-gutter-width:         30px;
329 // Navbar collapse
330 //** Point at which the navbar becomes uncollapsed.
331 @grid-float-breakpoint:     @screen-sm-min;
332 //** Point at which the navbar begins collapsing.
333 @grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
334
335
336 //== Container sizes
337 //
338 //## Define the maximum width of `.container` for different screen sizes.
339
340 // Small screen / tablet
341 @container-tablet:             (720px + @grid-gutter-width);
342 //** For `@screen-sm-min` and up.
343 @container-sm:                 @container-tablet;
344
345 // Medium screen / desktop
346 @container-desktop:            (940px + @grid-gutter-width);
347 //** For `@screen-md-min` and up.
348 @container-md:                 @container-desktop;
349
350 // Large screen / wide desktop
351 @container-large-desktop:      (1140px + @grid-gutter-width);
352 //** For `@screen-lg-min` and up.
353 @container-lg:                 @container-large-desktop;
354
355
356 //== Navbar
357 //
358 //##
359
360 // Basics of a navbar
361 @navbar-height:                    50px;
362 @navbar-margin-bottom:             @line-height-computed;
363 @navbar-border-radius:             0; // Nick @border-radius-base;
364 @navbar-padding-horizontal:        0; // Nick floor((@grid-gutter-width / 2));
365 @navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);
366 @navbar-collapse-max-height:       340px;
367
368 @navbar-default-color:             #fff; // Nick #777;
369 @navbar-default-bg:                #0a0; // Nick #f8f8f8;
370 @navbar-default-border:            darken(@navbar-default-bg, 6.5%);
371
372 // Navbar links
373 @navbar-default-link-color:                #fff; // Nick #777;
374 @navbar-default-link-hover-color:          #000; // Nick #333;
375 @navbar-default-link-hover-bg:             #ccc; // Nick transparent;
376 @navbar-default-link-active-color:         #fff; // Nick #555;
377 @navbar-default-link-active-bg:            darken(@navbar-default-bg, 6.5%);
378 @navbar-default-link-disabled-color:       #ccc;
379 @navbar-default-link-disabled-bg:          transparent;
380
381 // Navbar brand label
382 @navbar-default-brand-color:               @navbar-default-link-color;
383 @navbar-default-brand-hover-color:         darken(@navbar-default-brand-color, 10%);
384 @navbar-default-brand-hover-bg:            transparent;
385
386 // Navbar toggle
387 @navbar-default-toggle-hover-bg:           #ddd;
388 @navbar-default-toggle-icon-bar-bg:        #888;
389 @navbar-default-toggle-border-color:       #ddd;
390
391
392 //=== Inverted navbar
393 // Reset inverted navbar basics
394 @navbar-inverse-color:                      lighten(@gray-light, 15%);
395 @navbar-inverse-bg:                         #222;
396 @navbar-inverse-border:                     darken(@navbar-inverse-bg, 10%);
397
398 // Inverted navbar links
399 @navbar-inverse-link-color:                 lighten(@gray-light, 15%);
400 @navbar-inverse-link-hover-color:           #fff;
401 @navbar-inverse-link-hover-bg:              transparent;
402 @navbar-inverse-link-active-color:          @navbar-inverse-link-hover-color;
403 @navbar-inverse-link-active-bg:             darken(@navbar-inverse-bg, 10%);
404 @navbar-inverse-link-disabled-color:        #444;
405 @navbar-inverse-link-disabled-bg:           transparent;
406
407 // Inverted navbar brand label
408 @navbar-inverse-brand-color:                @navbar-inverse-link-color;
409 @navbar-inverse-brand-hover-color:          #fff;
410 @navbar-inverse-brand-hover-bg:             transparent;
411
412 // Inverted navbar toggle
413 @navbar-inverse-toggle-hover-bg:            #333;
414 @navbar-inverse-toggle-icon-bar-bg:         #fff;
415 @navbar-inverse-toggle-border-color:        #333;
416
417
418 //== Navs
419 //
420 //##
421
422 //=== Shared nav styles
423 @nav-link-padding:                          10px 15px;
424 @nav-link-hover-bg:                         @gray-lighter;
425
426 @nav-disabled-link-color:                   @gray-light;
427 @nav-disabled-link-hover-color:             @gray-light;
428
429 //== Tabs
430 @nav-tabs-border-color:                     #ddd;
431
432 @nav-tabs-link-hover-border-color:          @gray-lighter;
433
434 @nav-tabs-active-link-hover-bg:             @body-bg;
435 @nav-tabs-active-link-hover-color:          @gray;
436 @nav-tabs-active-link-hover-border-color:   #ddd;
437
438 @nav-tabs-justified-link-border-color:            #ddd;
439 @nav-tabs-justified-active-link-border-color:     @body-bg;
440
441 //== Pills
442 @nav-pills-border-radius:                   @border-radius-base;
443 @nav-pills-active-link-hover-bg:            @component-active-bg;
444 @nav-pills-active-link-hover-color:         @component-active-color;
445
446
447 //== Pagination
448 //
449 //##
450
451 @pagination-color:                     @link-color;
452 @pagination-bg:                        #fff;
453 @pagination-border:                    #ddd;
454
455 @pagination-hover-color:               @link-hover-color;
456 @pagination-hover-bg:                  @gray-lighter;
457 @pagination-hover-border:              #ddd;
458
459 @pagination-active-color:              #fff;
460 @pagination-active-bg:                 @brand-primary;
461 @pagination-active-border:             @brand-primary;
462
463 @pagination-disabled-color:            @gray-light;
464 @pagination-disabled-bg:               #fff;
465 @pagination-disabled-border:           #ddd;
466
467
468 //== Pager
469 //
470 //##
471
472 @pager-bg:                             @pagination-bg;
473 @pager-border:                         @pagination-border;
474 @pager-border-radius:                  15px;
475
476 @pager-hover-bg:                       @pagination-hover-bg;
477
478 @pager-active-bg:                      @pagination-active-bg;
479 @pager-active-color:                   @pagination-active-color;
480
481 @pager-disabled-color:                 @pagination-disabled-color;
482
483
484 //== Jumbotron
485 //
486 //##
487
488 @jumbotron-padding:              30px;
489 @jumbotron-color:                inherit;
490 @jumbotron-bg:                   @gray-lighter;
491 @jumbotron-heading-color:        inherit;
492 @jumbotron-font-size:            ceil((@font-size-base * 1.5));
493 @jumbotron-heading-font-size:    ceil((@font-size-base * 4.5));
494
495
496 //== Form states and alerts
497 //
498 //## Define colors for form feedback states and, by default, alerts.
499
500 @state-success-text:             #3c763d;
501 @state-success-bg:               #dff0d8;
502 @state-success-border:           darken(spin(@state-success-bg, -10), 5%);
503
504 @state-info-text:                #31708f;
505 @state-info-bg:                  #d9edf7;
506 @state-info-border:              darken(spin(@state-info-bg, -10), 7%);
507
508 @state-warning-text:             #8a6d3b;
509 @state-warning-bg:               #fcf8e3;
510 @state-warning-border:           darken(spin(@state-warning-bg, -10), 5%);
511
512 @state-danger-text:              #a94442;
513 @state-danger-bg:                #f2dede;
514 @state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);
515
516
517 //== Tooltips
518 //
519 //##
520
521 //** Tooltip max width
522 @tooltip-max-width:           200px;
523 //** Tooltip text color
524 @tooltip-color:               #fff;
525 //** Tooltip background color
526 @tooltip-bg:                  #000;
527 @tooltip-opacity:             .9;
528
529 //** Tooltip arrow width
530 @tooltip-arrow-width:         5px;
531 //** Tooltip arrow color
532 @tooltip-arrow-color:         @tooltip-bg;
533
534
535 //== Popovers
536 //
537 //##
538
539 //** Popover body background color
540 @popover-bg:                          #fff;
541 //** Popover maximum width
542 @popover-max-width:                   276px;
543 //** Popover border color
544 @popover-border-color:                rgba(0,0,0,.2);
545 //** Popover fallback border color
546 @popover-fallback-border-color:       #ccc;
547
548 //** Popover title background color
549 @popover-title-bg:                    darken(@popover-bg, 3%);
550
551 //** Popover arrow width
552 @popover-arrow-width:                 10px;
553 //** Popover arrow color
554 @popover-arrow-color:                 @popover-bg;
555
556 //** Popover outer arrow width
557 @popover-arrow-outer-width:           (@popover-arrow-width + 1);
558 //** Popover outer arrow color
559 @popover-arrow-outer-color:           fadein(@popover-border-color, 5%);
560 //** Popover outer arrow fallback color
561 @popover-arrow-outer-fallback-color:  darken(@popover-fallback-border-color, 20%);
562
563
564 //== Labels
565 //
566 //##
567
568 //** Default label background color
569 @label-default-bg:            @gray-light;
570 //** Primary label background color
571 @label-primary-bg:            @brand-primary;
572 //** Success label background color
573 @label-success-bg:            @brand-success;
574 //** Info label background color
575 @label-info-bg:               @brand-info;
576 //** Warning label background color
577 @label-warning-bg:            @brand-warning;
578 //** Danger label background color
579 @label-danger-bg:             @brand-danger;
580
581 //** Default label text color
582 @label-color:                 #fff;
583 //** Default text color of a linked label
584 @label-link-hover-color:      #fff;
585
586
587 //== Modals
588 //
589 //##
590
591 //** Padding applied to the modal body
592 @modal-inner-padding:         15px;
593
594 //** Padding applied to the modal title
595 @modal-title-padding:         15px;
596 //** Modal title line-height
597 @modal-title-line-height:     @line-height-base;
598
599 //** Background color of modal content area
600 @modal-content-bg:                             #fff;
601 //** Modal content border color
602 @modal-content-border-color:                   rgba(0,0,0,.2);
603 //** Modal content border color **for IE8**
604 @modal-content-fallback-border-color:          #999;
605
606 //** Modal backdrop background color
607 @modal-backdrop-bg:           #000;
608 //** Modal backdrop opacity
609 @modal-backdrop-opacity:      .5;
610 //** Modal header border color
611 @modal-header-border-color:   #e5e5e5;
612 //** Modal footer border color
613 @modal-footer-border-color:   @modal-header-border-color;
614
615 @modal-lg:                    900px;
616 @modal-md:                    600px;
617 @modal-sm:                    300px;
618
619
620 //== Alerts
621 //
622 //## Define alert colors, border radius, and padding.
623
624 @alert-padding:               15px;
625 @alert-border-radius:         @border-radius-base;
626 @alert-link-font-weight:      bold;
627
628 @alert-success-bg:            @state-success-bg;
629 @alert-success-text:          @state-success-text;
630 @alert-success-border:        @state-success-border;
631
632 @alert-info-bg:               @state-info-bg;
633 @alert-info-text:             @state-info-text;
634 @alert-info-border:           @state-info-border;
635
636 @alert-warning-bg:            @state-warning-bg;
637 @alert-warning-text:          @state-warning-text;
638 @alert-warning-border:        @state-warning-border;
639
640 @alert-danger-bg:             @state-danger-bg;
641 @alert-danger-text:           @state-danger-text;
642 @alert-danger-border:         @state-danger-border;
643
644
645 //== Progress bars
646 //
647 //##
648
649 //** Background color of the whole progress component
650 @progress-bg:                 #f5f5f5;
651 //** Progress bar text color
652 @progress-bar-color:          #fff;
653 //** Variable for setting rounded corners on progress bar.
654 @progress-border-radius:      @border-radius-base;
655
656 //** Default progress bar color
657 @progress-bar-bg:             @brand-primary;
658 //** Success progress bar color
659 @progress-bar-success-bg:     @brand-success;
660 //** Warning progress bar color
661 @progress-bar-warning-bg:     @brand-warning;
662 //** Danger progress bar color
663 @progress-bar-danger-bg:      @brand-danger;
664 //** Info progress bar color
665 @progress-bar-info-bg:        @brand-info;
666
667
668 //== List group
669 //
670 //##
671
672 //** Background color on `.list-group-item`
673 @list-group-bg:                 #fff;
674 //** `.list-group-item` border color
675 @list-group-border:             #ddd;
676 //** List group border radius
677 @list-group-border-radius:      @border-radius-base;
678
679 //** Background color of single list items on hover
680 @list-group-hover-bg:           #f5f5f5;
681 //** Text color of active list items
682 @list-group-active-color:       @component-active-color;
683 //** Background color of active list items
684 @list-group-active-bg:          @component-active-bg;
685 //** Border color of active list elements
686 @list-group-active-border:      @list-group-active-bg;
687 //** Text color for content within active list items
688 @list-group-active-text-color:  lighten(@list-group-active-bg, 40%);
689
690 //** Text color of disabled list items
691 @list-group-disabled-color:      @gray-light;
692 //** Background color of disabled list items
693 @list-group-disabled-bg:         @gray-lighter;
694 //** Text color for content within disabled list items
695 @list-group-disabled-text-color: @list-group-disabled-color;
696
697 @list-group-link-color:         #555;
698 @list-group-link-hover-color:   @list-group-link-color;
699 @list-group-link-heading-color: #333;
700
701
702 //== Panels
703 //
704 //##
705
706 @panel-bg:                    #fff;
707 @panel-body-padding:          15px;
708 @panel-heading-padding:       10px 15px;
709 @panel-footer-padding:        @panel-heading-padding;
710 @panel-border-radius:         @border-radius-base;
711
712 //** Border color for elements within panels
713 @panel-inner-border:          #ddd;
714 @panel-footer-bg:             #f5f5f5;
715
716 @panel-default-text:          @gray-dark;
717 @panel-default-border:        #ddd;
718 @panel-default-heading-bg:    #f5f5f5;
719
720 @panel-primary-text:          #fff;
721 @panel-primary-border:        @brand-primary;
722 @panel-primary-heading-bg:    @brand-primary;
723
724 @panel-success-text:          @state-success-text;
725 @panel-success-border:        @state-success-border;
726 @panel-success-heading-bg:    @state-success-bg;
727
728 @panel-info-text:             @state-info-text;
729 @panel-info-border:           @state-info-border;
730 @panel-info-heading-bg:       @state-info-bg;
731
732 @panel-warning-text:          @state-warning-text;
733 @panel-warning-border:        @state-warning-border;
734 @panel-warning-heading-bg:    @state-warning-bg;
735
736 @panel-danger-text:           @state-danger-text;
737 @panel-danger-border:         @state-danger-border;
738 @panel-danger-heading-bg:     @state-danger-bg;
739
740
741 //== Thumbnails
742 //
743 //##
744
745 //** Padding around the thumbnail image
746 @thumbnail-padding:           4px;
747 //** Thumbnail background color
748 @thumbnail-bg:                @body-bg;
749 //** Thumbnail border color
750 @thumbnail-border:            #ddd;
751 //** Thumbnail border radius
752 @thumbnail-border-radius:     @border-radius-base;
753
754 //** Custom text color for thumbnail captions
755 @thumbnail-caption-color:     @text-color;
756 //** Padding around the thumbnail caption
757 @thumbnail-caption-padding:   9px;
758
759
760 //== Wells
761 //
762 //##
763
764 @well-bg:                     #f5f5f5;
765 @well-border:                 darken(@well-bg, 7%);
766
767
768 //== Badges
769 //
770 //##
771
772 @badge-color:                 #fff;
773 //** Linked badge text color on hover
774 @badge-link-hover-color:      #fff;
775 @badge-bg:                    @gray-light;
776
777 //** Badge text color in active nav link
778 @badge-active-color:          @link-color;
779 //** Badge background color in active nav link
780 @badge-active-bg:             #fff;
781
782 @badge-font-weight:           bold;
783 @badge-line-height:           1;
784 @badge-border-radius:         10px;
785
786
787 //== Breadcrumbs
788 //
789 //##
790
791 @breadcrumb-padding-vertical:   8px;
792 @breadcrumb-padding-horizontal: 15px;
793 //** Breadcrumb background color
794 @breadcrumb-bg:                 #f5f5f5;
795 //** Breadcrumb text color
796 @breadcrumb-color:              #ccc;
797 //** Text color of current page in the breadcrumb
798 @breadcrumb-active-color:       @gray-light;
799 //** Textual separator for between breadcrumb elements
800 @breadcrumb-separator:          "/";
801
802
803 //== Carousel
804 //
805 //##
806
807 @carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6);
808
809 @carousel-control-color:                      #fff;
810 @carousel-control-width:                      15%;
811 @carousel-control-opacity:                    .5;
812 @carousel-control-font-size:                  20px;
813
814 @carousel-indicator-active-bg:                #fff;
815 @carousel-indicator-border-color:             #fff;
816
817 @carousel-caption-color:                      #fff;
818
819
820 //== Close
821 //
822 //##
823
824 @close-font-weight:           bold;
825 @close-color:                 #000;
826 @close-text-shadow:           0 1px 0 #fff;
827
828
829 //== Code
830 //
831 //##
832
833 @code-color:                  darken(@brand-success, 5%); //#c7254e;
834 //@code-bg:                     #f9f2f4;
835
836 @kbd-color:                   #fff;
837 @kbd-bg:                      #333;
838
839 //@pre-bg:                      #f5f5f5;
840 @pre-color:                   @gray-dark;
841 @pre-border-color:            #ccc;
842 @pre-scrollable-max-height:   340px;
843
844
845 //== Type
846 //
847 //##
848
849 //** Horizontal offset for forms and lists.
850 @component-offset-horizontal: 180px;
851 //** Text muted color
852 @text-muted:                  @gray-light;
853 //** Abbreviations and acronyms border color
854 @abbr-border-color:           @gray-light;
855 //** Headings small color
856 @headings-small-color:        @gray-light;
857 //** Blockquote small color
858 @blockquote-small-color:      @gray-light;
859 //** Blockquote font size
860 @blockquote-font-size:        (@font-size-base * 1.25);
861 //** Blockquote border color
862 @blockquote-border-color:     @gray-lighter;
863 //** Page header border color
864 @page-header-border-color:    @gray-lighter;
865 //** Width of horizontal description list titles
866 @dl-horizontal-offset:        @component-offset-horizontal;
867 //** Point at which .dl-horizontal becomes horizontal
868 @dl-horizontal-breakpoint:    @grid-float-breakpoint;
869 //** Horizontal line color.
870 @hr-border:                   @gray-lighter;