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