qablog 0.1.0

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