drink_up_doctor 0.3.1

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