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