twigg-app 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/data/quips.yml +45 -0
- data/lib/twigg-app/app/quips.rb +13 -0
- data/lib/twigg-app/app/routes.rb +43 -0
- data/lib/twigg-app/app/server.rb +146 -0
- data/lib/twigg-app/app/version.rb +5 -0
- data/lib/twigg-app/app.rb +14 -0
- data/lib/twigg-app.rb +5 -0
- data/public/application.js +106 -0
- data/public/favicon.ico +0 -0
- data/public/favicon.png +0 -0
- data/public/vendor/bootstrap/CNAME +1 -0
- data/public/vendor/bootstrap/CONTRIBUTING.md +66 -0
- data/public/vendor/bootstrap/Gruntfile.js +195 -0
- data/public/vendor/bootstrap/LICENSE +176 -0
- data/public/vendor/bootstrap/README.md +139 -0
- data/public/vendor/bootstrap/_config.yml +28 -0
- data/public/vendor/bootstrap/_includes/ads.html +1 -0
- data/public/vendor/bootstrap/_includes/footer.html +33 -0
- data/public/vendor/bootstrap/_includes/header.html +43 -0
- data/public/vendor/bootstrap/_includes/nav-components.html +135 -0
- data/public/vendor/bootstrap/_includes/nav-css.html +77 -0
- data/public/vendor/bootstrap/_includes/nav-customize.html +40 -0
- data/public/vendor/bootstrap/_includes/nav-getting-started.html +28 -0
- data/public/vendor/bootstrap/_includes/nav-javascript.html +88 -0
- data/public/vendor/bootstrap/_includes/nav-main.html +32 -0
- data/public/vendor/bootstrap/_includes/old-bs-docs.html +8 -0
- data/public/vendor/bootstrap/_includes/social-buttons.html +16 -0
- data/public/vendor/bootstrap/_layouts/customize.html +52 -0
- data/public/vendor/bootstrap/_layouts/default.html +72 -0
- data/public/vendor/bootstrap/_layouts/home.html +43 -0
- data/public/vendor/bootstrap/assets/css/docs.css +896 -0
- data/public/vendor/bootstrap/assets/css/pygments-manni.css +66 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/favicon.png +0 -0
- data/public/vendor/bootstrap/assets/js/application.js +82 -0
- data/public/vendor/bootstrap/assets/js/customizer.js +175 -0
- data/public/vendor/bootstrap/assets/js/holder.js +419 -0
- data/public/vendor/bootstrap/assets/js/html5shiv.js +8 -0
- data/public/vendor/bootstrap/assets/js/jquery.bbq.min.js +1287 -0
- data/public/vendor/bootstrap/assets/js/jquery.js +5 -0
- data/public/vendor/bootstrap/assets/js/jszip.js +1425 -0
- data/public/vendor/bootstrap/assets/js/less.js +9 -0
- data/public/vendor/bootstrap/assets/js/respond.min.js +6 -0
- data/public/vendor/bootstrap/assets/js/uglify.js +14 -0
- data/public/vendor/bootstrap/bower.json +11 -0
- data/public/vendor/bootstrap/browserstack.json +37 -0
- data/public/vendor/bootstrap/components.html +2555 -0
- data/public/vendor/bootstrap/composer.json +20 -0
- data/public/vendor/bootstrap/css.html +2276 -0
- data/public/vendor/bootstrap/customize.html +1480 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.css +5579 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.min.css +9 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.js +1993 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/public/vendor/bootstrap/getting-started.html +375 -0
- data/public/vendor/bootstrap/index.html +16 -0
- data/public/vendor/bootstrap/javascript.html +1904 -0
- data/public/vendor/bootstrap/js/affix.js +126 -0
- data/public/vendor/bootstrap/js/alert.js +98 -0
- data/public/vendor/bootstrap/js/button.js +109 -0
- data/public/vendor/bootstrap/js/carousel.js +217 -0
- data/public/vendor/bootstrap/js/collapse.js +179 -0
- data/public/vendor/bootstrap/js/dropdown.js +154 -0
- data/public/vendor/bootstrap/js/modal.js +244 -0
- data/public/vendor/bootstrap/js/popover.js +117 -0
- data/public/vendor/bootstrap/js/scrollspy.js +158 -0
- data/public/vendor/bootstrap/js/tab.js +135 -0
- data/public/vendor/bootstrap/js/tests/index.html +52 -0
- data/public/vendor/bootstrap/js/tests/phantom.js +63 -0
- data/public/vendor/bootstrap/js/tests/server.js +14 -0
- data/public/vendor/bootstrap/js/tests/unit/affix.js +25 -0
- data/public/vendor/bootstrap/js/tests/unit/alert.js +62 -0
- data/public/vendor/bootstrap/js/tests/unit/button.js +116 -0
- data/public/vendor/bootstrap/js/tests/unit/carousel.js +87 -0
- data/public/vendor/bootstrap/js/tests/unit/collapse.js +164 -0
- data/public/vendor/bootstrap/js/tests/unit/dropdown.js +219 -0
- data/public/vendor/bootstrap/js/tests/unit/modal.js +177 -0
- data/public/vendor/bootstrap/js/tests/unit/phantom.js +69 -0
- data/public/vendor/bootstrap/js/tests/unit/popover.js +133 -0
- data/public/vendor/bootstrap/js/tests/unit/scrollspy.js +37 -0
- data/public/vendor/bootstrap/js/tests/unit/tab.js +86 -0
- data/public/vendor/bootstrap/js/tests/unit/tooltip.js +437 -0
- data/public/vendor/bootstrap/js/tests/unit/transition.js +13 -0
- data/public/vendor/bootstrap/js/tests/vendor/jquery.js +5 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.css +232 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.js +1510 -0
- data/public/vendor/bootstrap/js/tooltip.js +382 -0
- data/public/vendor/bootstrap/js/transition.js +56 -0
- data/public/vendor/bootstrap/less/alerts.less +71 -0
- data/public/vendor/bootstrap/less/badges.less +51 -0
- data/public/vendor/bootstrap/less/bootstrap.less +63 -0
- data/public/vendor/bootstrap/less/breadcrumbs.less +23 -0
- data/public/vendor/bootstrap/less/button-groups.less +244 -0
- data/public/vendor/bootstrap/less/buttons.less +159 -0
- data/public/vendor/bootstrap/less/carousel.less +204 -0
- data/public/vendor/bootstrap/less/close.less +33 -0
- data/public/vendor/bootstrap/less/code.less +56 -0
- data/public/vendor/bootstrap/less/component-animations.less +29 -0
- data/public/vendor/bootstrap/less/dropdowns.less +176 -0
- data/public/vendor/bootstrap/less/forms.less +332 -0
- data/public/vendor/bootstrap/less/grid.less +340 -0
- data/public/vendor/bootstrap/less/input-groups.less +127 -0
- data/public/vendor/bootstrap/less/jumbotron.less +29 -0
- data/public/vendor/bootstrap/less/labels.less +54 -0
- data/public/vendor/bootstrap/less/list-group.less +88 -0
- data/public/vendor/bootstrap/less/media.less +56 -0
- data/public/vendor/bootstrap/less/mixins.less +693 -0
- data/public/vendor/bootstrap/less/modals.less +133 -0
- data/public/vendor/bootstrap/less/navbar.less +559 -0
- data/public/vendor/bootstrap/less/navs.less +228 -0
- data/public/vendor/bootstrap/less/normalize.less +396 -0
- data/public/vendor/bootstrap/less/pager.less +55 -0
- data/public/vendor/bootstrap/less/pagination.less +72 -0
- data/public/vendor/bootstrap/less/panels.less +128 -0
- data/public/vendor/bootstrap/less/popovers.less +133 -0
- data/public/vendor/bootstrap/less/print.less +100 -0
- data/public/vendor/bootstrap/less/progress-bars.less +99 -0
- data/public/vendor/bootstrap/less/responsive-utilities.less +149 -0
- data/public/vendor/bootstrap/less/scaffolding.less +111 -0
- data/public/vendor/bootstrap/less/tables.less +211 -0
- data/public/vendor/bootstrap/less/thumbnails.less +42 -0
- data/public/vendor/bootstrap/less/tooltip.less +95 -0
- data/public/vendor/bootstrap/less/type.less +238 -0
- data/public/vendor/bootstrap/less/utilities.less +42 -0
- data/public/vendor/bootstrap/less/variables.less +607 -0
- data/public/vendor/bootstrap/less/wells.less +29 -0
- data/public/vendor/bootstrap/package.json +33 -0
- data/public/vendor/bootstrap-glyphicons/CHANGELOG.md +3 -0
- data/public/vendor/bootstrap-glyphicons/CNAME +1 -0
- data/public/vendor/bootstrap-glyphicons/CONTRIBUTING.md +54 -0
- data/public/vendor/bootstrap-glyphicons/LICENSE +19 -0
- data/public/vendor/bootstrap-glyphicons/README.md +61 -0
- data/public/vendor/bootstrap-glyphicons/_config.yml +12 -0
- data/public/vendor/bootstrap-glyphicons/composer.json +9 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap-glyphicons.css +2 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap.css +9 -0
- data/public/vendor/bootstrap-glyphicons/css/docs.css +160 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.eot +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.otf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.svg +175 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.ttf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.woff +0 -0
- data/public/vendor/bootstrap-glyphicons/index.html +255 -0
- data/public/vendor/bootstrap-glyphicons/less/bootstrap-glyphicons.less +201 -0
- data/public/vendor/bootstrap-glyphicons/package.json +18 -0
- data/public/vendor/d3/LICENSE +26 -0
- data/public/vendor/d3/README.md +7 -0
- data/public/vendor/d3/bower.json +25 -0
- data/public/vendor/d3/d3.js +8810 -0
- data/public/vendor/d3/d3.min.js +5 -0
- data/public/vendor/jquery/README.md +11 -0
- data/public/vendor/jquery/bower.json +11 -0
- data/public/vendor/jquery/component.json +15 -0
- data/public/vendor/jquery/composer.json +35 -0
- data/public/vendor/jquery/jquery-migrate.js +511 -0
- data/public/vendor/jquery/jquery-migrate.min.js +3 -0
- data/public/vendor/jquery/jquery.js +8829 -0
- data/public/vendor/jquery/jquery.min.js +6 -0
- data/public/vendor/jquery/jquery.min.map +1 -0
- data/public/vendor/jquery/package.json +7 -0
- data/public/vendor/replacejs/CHANGELOG.md +3 -0
- data/public/vendor/replacejs/MIT-LICENSE.txt +20 -0
- data/public/vendor/replacejs/README.md +123 -0
- data/public/vendor/replacejs/bower.json +24 -0
- data/public/vendor/replacejs/primer.js +17 -0
- data/public/vendor/replacejs/primer.min.js +1 -0
- data/public/vendor/replacejs/replace.js +182 -0
- data/public/vendor/stupidtable.js +158 -0
- data/views/dashboard.haml +17 -0
- data/views/layout.haml +60 -0
- metadata +330 -0
@@ -0,0 +1,896 @@
|
|
1
|
+
/*
|
2
|
+
* Bootstrap Documentation
|
3
|
+
* Special styles for presenting Bootstrap's documentation and code examples.
|
4
|
+
*/
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
/* Key scaffolding
|
9
|
+
-------------------------------------------------- */
|
10
|
+
|
11
|
+
body {
|
12
|
+
position: relative; /* For scrollyspy */
|
13
|
+
padding-top: 50px; /* Account for fixed navbar */
|
14
|
+
}
|
15
|
+
|
16
|
+
/* Custom docs button */
|
17
|
+
.btn-bs {
|
18
|
+
color: #563d7c;
|
19
|
+
background-color: #fff;
|
20
|
+
border-color: #e5e5e5;
|
21
|
+
}
|
22
|
+
.btn-bs:hover,
|
23
|
+
.btn-bs:focus,
|
24
|
+
.btn-bs:active {
|
25
|
+
color: #fff;
|
26
|
+
background-color: #563d7c;
|
27
|
+
border-color: #563d7c;
|
28
|
+
}
|
29
|
+
|
30
|
+
/* Homepage button */
|
31
|
+
.btn-outline {
|
32
|
+
color: #fff;
|
33
|
+
background-color: transparent;
|
34
|
+
border-color: #cdbfe3;
|
35
|
+
}
|
36
|
+
.btn-outline:hover,
|
37
|
+
.btn-outline:focus,
|
38
|
+
.btn-outline:active {
|
39
|
+
color: #563d7c;
|
40
|
+
background-color: #fff;
|
41
|
+
border-color: #fff;
|
42
|
+
}
|
43
|
+
|
44
|
+
/* Temp CSS until RC2 */
|
45
|
+
.bs-customize-placeholder {
|
46
|
+
margin-bottom: -100px;
|
47
|
+
padding: 80px 30px;
|
48
|
+
text-align: center;
|
49
|
+
background-color: #f5f5f5;
|
50
|
+
}
|
51
|
+
|
52
|
+
|
53
|
+
/* Top nav and header
|
54
|
+
-------------------------------------------------- */
|
55
|
+
|
56
|
+
.bs-docs-nav {
|
57
|
+
background-color: #563d7c;
|
58
|
+
border-color: #463265;
|
59
|
+
}
|
60
|
+
.bs-docs-nav .navbar-collapse {
|
61
|
+
border-color: #463265;
|
62
|
+
}
|
63
|
+
.bs-docs-nav .navbar-brand {
|
64
|
+
color: #fff;
|
65
|
+
}
|
66
|
+
.bs-docs-nav .navbar-nav > li > a {
|
67
|
+
color: #cdbfe3;
|
68
|
+
}
|
69
|
+
.bs-docs-nav .navbar-nav > li > a:hover {
|
70
|
+
color: #fff;
|
71
|
+
}
|
72
|
+
.bs-docs-nav .navbar-nav > .active > a,
|
73
|
+
.bs-docs-nav .navbar-nav > .active > a:hover {
|
74
|
+
color: #fff;
|
75
|
+
background-color: #463265;
|
76
|
+
}
|
77
|
+
.bs-docs-nav .navbar-toggle {
|
78
|
+
border-color: #563d7c;
|
79
|
+
}
|
80
|
+
.bs-docs-nav .navbar-toggle:hover {
|
81
|
+
background-color: #463265;
|
82
|
+
border-color: #463265;
|
83
|
+
}
|
84
|
+
|
85
|
+
/* Old docs callout */
|
86
|
+
.bs-old-docs {
|
87
|
+
padding: 15px 20px;
|
88
|
+
color: #777;
|
89
|
+
background-color: #fafafa;
|
90
|
+
border-bottom: 1px solid #e5e5e5;
|
91
|
+
}
|
92
|
+
.bs-old-docs strong {
|
93
|
+
color: #555;
|
94
|
+
}
|
95
|
+
.bs-docs-home .bs-old-docs {
|
96
|
+
padding-top: 0;
|
97
|
+
padding-bottom: 0;
|
98
|
+
text-align: center;
|
99
|
+
color: inherit;
|
100
|
+
background-color: transparent;
|
101
|
+
border-color: transparent;
|
102
|
+
}
|
103
|
+
.bs-docs-home .bs-old-docs a {
|
104
|
+
color: #fff;
|
105
|
+
}
|
106
|
+
|
107
|
+
/* Homepage */
|
108
|
+
.bs-docs-home {
|
109
|
+
color: #cdbfe3;
|
110
|
+
background-color: #563d7c;
|
111
|
+
}
|
112
|
+
|
113
|
+
|
114
|
+
/* Homepage masthead
|
115
|
+
-------------------------------------------------- */
|
116
|
+
|
117
|
+
.bs-masthead {
|
118
|
+
position: relative;
|
119
|
+
padding: 30px 15px;
|
120
|
+
text-align: center;
|
121
|
+
}
|
122
|
+
.bs-masthead h1 {
|
123
|
+
font-size: 50px;
|
124
|
+
line-height: 1;
|
125
|
+
color: #fff;
|
126
|
+
}
|
127
|
+
|
128
|
+
/* Download button */
|
129
|
+
.bs-masthead .btn-outline {
|
130
|
+
margin-top: 20px;
|
131
|
+
margin-bottom: 20px;
|
132
|
+
padding: 18px 24px;
|
133
|
+
font-size: 21px;
|
134
|
+
}
|
135
|
+
|
136
|
+
/* Textual links */
|
137
|
+
.bs-social {
|
138
|
+
margin-top: 30px;
|
139
|
+
text-align: center;
|
140
|
+
}
|
141
|
+
.bs-masthead-links {
|
142
|
+
margin-top: 20px;
|
143
|
+
margin-bottom: 20px;
|
144
|
+
padding-left: 0;
|
145
|
+
list-style: none;
|
146
|
+
text-align: center;
|
147
|
+
}
|
148
|
+
.bs-masthead-links li {
|
149
|
+
display: inline;
|
150
|
+
color: #999;
|
151
|
+
}
|
152
|
+
.bs-masthead-links li + li {
|
153
|
+
margin-left: 20px;
|
154
|
+
}
|
155
|
+
.bs-masthead-links a {
|
156
|
+
color: #fff;
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
/* Customize and Download button
|
162
|
+
-------------------------------------------------- */
|
163
|
+
|
164
|
+
.bs-customizer .toggle {
|
165
|
+
float: right;
|
166
|
+
}
|
167
|
+
.bs-customizer label {
|
168
|
+
margin-top: 10px;
|
169
|
+
font-weight: 500;
|
170
|
+
color: #444;
|
171
|
+
}
|
172
|
+
.bs-customizer h2 {
|
173
|
+
margin-top: 0;
|
174
|
+
margin-bottom: 5px;
|
175
|
+
padding-top: 30px;
|
176
|
+
}
|
177
|
+
.bs-customizer h4 {
|
178
|
+
margin-top: 15px;
|
179
|
+
}
|
180
|
+
.bs-customizer input[type="text"] {
|
181
|
+
background-color: #fafafa;
|
182
|
+
}
|
183
|
+
.bs-customizer .help-block {
|
184
|
+
font-size: 12px;
|
185
|
+
}
|
186
|
+
|
187
|
+
.bs-customize-download {
|
188
|
+
text-align: center;
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
/* Docs pages and sections
|
194
|
+
-------------------------------------------------- */
|
195
|
+
|
196
|
+
/* Page headers */
|
197
|
+
.bs-header {
|
198
|
+
padding: 30px 30px 40px;
|
199
|
+
font-size: 16px;
|
200
|
+
color: #5a5a5a;
|
201
|
+
text-align: center;
|
202
|
+
border-bottom: 1px solid #e5e5e5;
|
203
|
+
}
|
204
|
+
.bs-header h1 {
|
205
|
+
color: #563d7c;
|
206
|
+
}
|
207
|
+
.bs-header p {
|
208
|
+
font-weight: 300;
|
209
|
+
line-height: 1.5;
|
210
|
+
}
|
211
|
+
.bs-header .container {
|
212
|
+
position: relative;
|
213
|
+
}
|
214
|
+
|
215
|
+
.bs-docs-section + .bs-docs-section {
|
216
|
+
padding-top: 80px;
|
217
|
+
}
|
218
|
+
|
219
|
+
/* Ads in page headers */
|
220
|
+
.carbonad {
|
221
|
+
width: auto !important;
|
222
|
+
margin: 50px -30px -40px !important;
|
223
|
+
padding: 20px !important;
|
224
|
+
overflow: hidden; /* clearfix */
|
225
|
+
height: auto !important;
|
226
|
+
font-size: 13px !important;
|
227
|
+
line-height: 16px !important;
|
228
|
+
text-align: left;
|
229
|
+
background: none !important;
|
230
|
+
border: 0 !important;
|
231
|
+
border-top: 1px solid #e5e5e5 !important;
|
232
|
+
}
|
233
|
+
.carbonad-img {
|
234
|
+
margin: 0 !important;
|
235
|
+
}
|
236
|
+
.carbonad-text,
|
237
|
+
.carbonad-tag {
|
238
|
+
float: none !important;
|
239
|
+
display: block !important;
|
240
|
+
width: auto !important;
|
241
|
+
height: auto !important;
|
242
|
+
margin-left: 145px !important;
|
243
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
|
244
|
+
}
|
245
|
+
.carbonad-text {
|
246
|
+
padding-top: 0 !important;
|
247
|
+
}
|
248
|
+
.carbonad-tag {
|
249
|
+
text-align: left !important;
|
250
|
+
}
|
251
|
+
.carbonad #azcarbon > img {
|
252
|
+
display: none; /* hide what I assume are tracking images */
|
253
|
+
}
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
/* Docs sidebar
|
258
|
+
-------------------------------------------------- */
|
259
|
+
|
260
|
+
/* By default it's not affixed in mobile views, so undo that */
|
261
|
+
.bs-sidebar.affix {
|
262
|
+
position: static;
|
263
|
+
}
|
264
|
+
|
265
|
+
/* First level of nav */
|
266
|
+
.bs-sidenav {
|
267
|
+
margin-top: 30px;
|
268
|
+
margin-bottom: 30px;
|
269
|
+
padding-top: 10px;
|
270
|
+
padding-bottom: 10px;
|
271
|
+
text-shadow: 0 1px 0 #fff;
|
272
|
+
background-color: #f7f5fa;
|
273
|
+
border-radius: 5px;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* All levels of nav */
|
277
|
+
.bs-sidebar .nav > li > a {
|
278
|
+
display: block;
|
279
|
+
color: #716b7a;
|
280
|
+
padding: 5px 20px;
|
281
|
+
}
|
282
|
+
.bs-sidebar .nav > li > a:hover,
|
283
|
+
.bs-sidebar .nav > li > a:focus {
|
284
|
+
text-decoration: none;
|
285
|
+
background-color: #e5e3e9;
|
286
|
+
border-right: 1px solid #dbd8e0;
|
287
|
+
}
|
288
|
+
.bs-sidebar .nav > .active > a,
|
289
|
+
.bs-sidebar .nav > .active:hover > a,
|
290
|
+
.bs-sidebar .nav > .active:focus > a {
|
291
|
+
font-weight: bold;
|
292
|
+
color: #563d7c;
|
293
|
+
background-color: transparent;
|
294
|
+
border-right: 1px solid #563d7c;
|
295
|
+
}
|
296
|
+
|
297
|
+
/* Nav: second level (shown on .active) */
|
298
|
+
.bs-sidebar .nav .nav {
|
299
|
+
display: none; /* Hide by default, but at >768px, show it */
|
300
|
+
margin-bottom: 8px;
|
301
|
+
}
|
302
|
+
.bs-sidebar .nav .nav > li > a {
|
303
|
+
padding-top: 3px;
|
304
|
+
padding-bottom: 3px;
|
305
|
+
padding-left: 30px;
|
306
|
+
font-size: 90%;
|
307
|
+
}
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
/* Side notes for calling out things
|
312
|
+
-------------------------------------------------- */
|
313
|
+
|
314
|
+
/* Base styles (regardless of theme) */
|
315
|
+
.bs-callout {
|
316
|
+
margin: 20px 0;
|
317
|
+
padding: 15px 30px 15px 15px;
|
318
|
+
border-left: 5px solid #eee;
|
319
|
+
}
|
320
|
+
.bs-callout h4 {
|
321
|
+
margin-top: 0;
|
322
|
+
}
|
323
|
+
.bs-callout p:last-child {
|
324
|
+
margin-bottom: 0;
|
325
|
+
}
|
326
|
+
.bs-callout code,
|
327
|
+
.bs-callout .highlight {
|
328
|
+
background-color: #fff;
|
329
|
+
}
|
330
|
+
|
331
|
+
/* Themes for different contexts */
|
332
|
+
.bs-callout-danger {
|
333
|
+
background-color: #fcf2f2;
|
334
|
+
border-color: #dFb5b4;
|
335
|
+
}
|
336
|
+
.bs-callout-warning {
|
337
|
+
background-color: #fefbed;
|
338
|
+
border-color: #f1e7bc;
|
339
|
+
}
|
340
|
+
.bs-callout-info {
|
341
|
+
background-color: #f0f7fd;
|
342
|
+
border-color: #d0e3f0;
|
343
|
+
}
|
344
|
+
|
345
|
+
|
346
|
+
|
347
|
+
/* Special grid styles
|
348
|
+
-------------------------------------------------- */
|
349
|
+
|
350
|
+
.show-grid {
|
351
|
+
margin-bottom: 15px;
|
352
|
+
}
|
353
|
+
.show-grid [class^="col-"] {
|
354
|
+
padding-top: 10px;
|
355
|
+
padding-bottom: 10px;
|
356
|
+
background-color: #eee;
|
357
|
+
border: 1px solid #ddd;
|
358
|
+
background-color: rgba(86,61,124,.15);
|
359
|
+
border: 1px solid rgba(86,61,124,.2);
|
360
|
+
}
|
361
|
+
|
362
|
+
|
363
|
+
|
364
|
+
/* Bootstrap code examples
|
365
|
+
-------------------------------------------------- */
|
366
|
+
|
367
|
+
/* Base class */
|
368
|
+
.bs-example {
|
369
|
+
position: relative;
|
370
|
+
padding: 45px 15px 15px;
|
371
|
+
margin: 0 -15px -1px;
|
372
|
+
background-color: #fafafa;
|
373
|
+
box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
|
374
|
+
border-color: #e5e5e5 #eee #eee;
|
375
|
+
border-style: solid;
|
376
|
+
border-width: 1px 0;
|
377
|
+
}
|
378
|
+
/* Echo out a label for the example */
|
379
|
+
.bs-example:after {
|
380
|
+
content: "Example";
|
381
|
+
position: absolute;
|
382
|
+
top: 15px;
|
383
|
+
left: 15px;
|
384
|
+
font-size: 12px;
|
385
|
+
font-weight: bold;
|
386
|
+
color: #bbb;
|
387
|
+
text-transform: uppercase;
|
388
|
+
letter-spacing: 1px;
|
389
|
+
}
|
390
|
+
|
391
|
+
/* Tweak display of the examples */
|
392
|
+
.bs-example + .highlight {
|
393
|
+
margin: 0 -15px;
|
394
|
+
border-radius: 0;
|
395
|
+
border-width: 0 0 1px;
|
396
|
+
}
|
397
|
+
|
398
|
+
/* Tweak content of examples for optimum awesome */
|
399
|
+
.bs-example > p:last-child,
|
400
|
+
.bs-example > ul:last-child,
|
401
|
+
.bs-example > ol:last-child,
|
402
|
+
.bs-example > blockquote:last-child,
|
403
|
+
.bs-example > input:last-child,
|
404
|
+
.bs-example > select:last-child,
|
405
|
+
.bs-example > textarea:last-child,
|
406
|
+
.bs-example > .table:last-child,
|
407
|
+
.bs-example > .navbar:last-child
|
408
|
+
.bs-example > .jumbotron:last-child,
|
409
|
+
.bs-example > .alert:last-child,
|
410
|
+
.bs-example > .panel:last-child,
|
411
|
+
.bs-example > .list-group:last-child,
|
412
|
+
.bs-example > .well:last-child {
|
413
|
+
margin-bottom: 0;
|
414
|
+
}
|
415
|
+
.bs-example > p > .close {
|
416
|
+
float: none;
|
417
|
+
}
|
418
|
+
|
419
|
+
/* Typography */
|
420
|
+
.bs-example-type .table td:last-child {
|
421
|
+
color: #999;
|
422
|
+
vertical-align: middle;
|
423
|
+
}
|
424
|
+
.bs-example-type .table td {
|
425
|
+
padding: 15px 0;
|
426
|
+
border-color: #eee;
|
427
|
+
}
|
428
|
+
.bs-example-type .table tr:first-child td {
|
429
|
+
border-top: 0;
|
430
|
+
}
|
431
|
+
.bs-example-type h1,
|
432
|
+
.bs-example-type h2,
|
433
|
+
.bs-example-type h3,
|
434
|
+
.bs-example-type h4,
|
435
|
+
.bs-example-type h5,
|
436
|
+
.bs-example-type h6 {
|
437
|
+
margin: 0;
|
438
|
+
}
|
439
|
+
|
440
|
+
/* Forms */
|
441
|
+
.bs-example-control-sizing select,
|
442
|
+
.bs-example-control-sizing input[type="text"] + input[type="text"] {
|
443
|
+
margin-top: 10px;
|
444
|
+
}
|
445
|
+
.bs-example-form .input-group {
|
446
|
+
margin-bottom: 10px;
|
447
|
+
}
|
448
|
+
|
449
|
+
/* List groups */
|
450
|
+
.bs-example > .list-group {
|
451
|
+
max-width: 400px;
|
452
|
+
}
|
453
|
+
|
454
|
+
/* Navbar examples */
|
455
|
+
.bs-example .navbar:last-child {
|
456
|
+
margin-bottom: 0;
|
457
|
+
}
|
458
|
+
.bs-navbar-top-example,
|
459
|
+
.bs-navbar-bottom-example {
|
460
|
+
z-index: 1;
|
461
|
+
padding: 0;
|
462
|
+
min-height: 110px;
|
463
|
+
overflow: hidden; /* cut the drop shadows off */
|
464
|
+
}
|
465
|
+
.bs-navbar-top-example .navbar-fixed-top,
|
466
|
+
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
467
|
+
position: relative;
|
468
|
+
margin-left: 0;
|
469
|
+
margin-right: 0;
|
470
|
+
}
|
471
|
+
.bs-navbar-top-example .navbar-fixed-top {
|
472
|
+
top: -1px;
|
473
|
+
}
|
474
|
+
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
475
|
+
bottom: -1px;
|
476
|
+
}
|
477
|
+
.bs-navbar-top-example {
|
478
|
+
-webkit-border-radius: 0 0 4px 4px;
|
479
|
+
-moz-border-radius: 0 0 4px 4px;
|
480
|
+
border-radius: 0 0 4px 4px;
|
481
|
+
}
|
482
|
+
.bs-navbar-top-example:after {
|
483
|
+
top: auto;
|
484
|
+
bottom: 15px;
|
485
|
+
-webkit-border-radius: 0 4px 0 4px;
|
486
|
+
-moz-border-radius: 0 4px 0 4px;
|
487
|
+
border-radius: 0 4px 0 4px;
|
488
|
+
}
|
489
|
+
.bs-navbar-bottom-example {
|
490
|
+
-webkit-border-radius: 4px 4px 0 0;
|
491
|
+
-moz-border-radius: 4px 4px 0 0;
|
492
|
+
border-radius: 4px 4px 0 0;
|
493
|
+
}
|
494
|
+
.bs-navbar-bottom-example .navbar {
|
495
|
+
margin-bottom: 0;
|
496
|
+
}
|
497
|
+
|
498
|
+
/* Example modals */
|
499
|
+
.bs-example-modal {
|
500
|
+
background-color: #f5f5f5;
|
501
|
+
}
|
502
|
+
.bs-example-modal .modal {
|
503
|
+
position: relative;
|
504
|
+
top: auto;
|
505
|
+
right: auto;
|
506
|
+
left: auto;
|
507
|
+
bottom: auto;
|
508
|
+
z-index: 1;
|
509
|
+
display: block;
|
510
|
+
}
|
511
|
+
.bs-example-modal .modal-dialog {
|
512
|
+
left: auto;
|
513
|
+
margin-left: auto;
|
514
|
+
margin-right: auto;
|
515
|
+
}
|
516
|
+
|
517
|
+
/* Example dropdowns */
|
518
|
+
.bs-example > .dropdown > .dropdown-menu,
|
519
|
+
.bs-example-submenu > .pull-left > .dropup > .dropdown-menu,
|
520
|
+
.bs-example-submenu > .pull-left > .dropdown > .dropdown-menu {
|
521
|
+
position: static;
|
522
|
+
display: block;
|
523
|
+
margin-bottom: 5px;
|
524
|
+
}
|
525
|
+
.bs-example-submenu {
|
526
|
+
min-height: 230px;
|
527
|
+
}
|
528
|
+
.bs-example-submenu > .pull-left + .pull-left {
|
529
|
+
margin-left: 20px;
|
530
|
+
}
|
531
|
+
|
532
|
+
/* Example tabbable tabs */
|
533
|
+
.bs-example-tabs .nav-tabs {
|
534
|
+
margin-bottom: 15px;
|
535
|
+
}
|
536
|
+
|
537
|
+
/* Tooltips */
|
538
|
+
.bs-example-tooltips {
|
539
|
+
text-align: center;
|
540
|
+
}
|
541
|
+
|
542
|
+
/* Popovers */
|
543
|
+
.bs-example-popover {
|
544
|
+
padding-bottom: 24px;
|
545
|
+
background-color: #f9f9f9;
|
546
|
+
}
|
547
|
+
.bs-example-popover .popover {
|
548
|
+
position: relative;
|
549
|
+
display: block;
|
550
|
+
float: left;
|
551
|
+
width: 260px;
|
552
|
+
margin: 20px;
|
553
|
+
}
|
554
|
+
|
555
|
+
|
556
|
+
|
557
|
+
/* Example templates
|
558
|
+
-------------------------------------------------- */
|
559
|
+
|
560
|
+
.bs-examples h4 {
|
561
|
+
margin-bottom: 5px;
|
562
|
+
}
|
563
|
+
.bs-examples p {
|
564
|
+
margin-bottom: 20px;
|
565
|
+
}
|
566
|
+
|
567
|
+
|
568
|
+
|
569
|
+
/* Responsive docs
|
570
|
+
-------------------------------------------------- */
|
571
|
+
|
572
|
+
/* Responsive (scrollable) doc tables */
|
573
|
+
@media (max-width: 768px) {
|
574
|
+
.bs-table-scrollable {
|
575
|
+
width: 100%;
|
576
|
+
margin-bottom: 15px;
|
577
|
+
overflow-y: hidden;
|
578
|
+
overflow-x: scroll;
|
579
|
+
border: 1px solid #ddd;
|
580
|
+
}
|
581
|
+
.bs-table-scrollable .table {
|
582
|
+
margin-bottom: 0;
|
583
|
+
border: 0;
|
584
|
+
}
|
585
|
+
.bs-table-scrollable .table th,
|
586
|
+
.bs-table-scrollable .table td {
|
587
|
+
white-space: nowrap;
|
588
|
+
}
|
589
|
+
.bs-table-scrollable .table th:first-child,
|
590
|
+
.bs-table-scrollable .table td:first-child {
|
591
|
+
border-left: 0;
|
592
|
+
}
|
593
|
+
.bs-table-scrollable .table th:last-child,
|
594
|
+
.bs-table-scrollable .table td:last-child {
|
595
|
+
border-right: 0;
|
596
|
+
}
|
597
|
+
.bs-table-scrollable .table tr:last-child th,
|
598
|
+
.bs-table-scrollable .table tr:last-child td {
|
599
|
+
border-bottom: 0;
|
600
|
+
}
|
601
|
+
}
|
602
|
+
|
603
|
+
/* Related: responsive utilities tables */
|
604
|
+
.table code {
|
605
|
+
font-size: 13px;
|
606
|
+
font-weight: normal;
|
607
|
+
}
|
608
|
+
|
609
|
+
/* Utility classes table
|
610
|
+
------------------------- */
|
611
|
+
.bs-table th small,
|
612
|
+
.responsive-utilities th small {
|
613
|
+
display: block;
|
614
|
+
font-weight: normal;
|
615
|
+
color: #999;
|
616
|
+
}
|
617
|
+
.responsive-utilities tbody th {
|
618
|
+
font-weight: normal;
|
619
|
+
}
|
620
|
+
.responsive-utilities td {
|
621
|
+
text-align: center;
|
622
|
+
}
|
623
|
+
.responsive-utilities td.is-visible {
|
624
|
+
color: #468847;
|
625
|
+
background-color: #dff0d8 !important;
|
626
|
+
}
|
627
|
+
.responsive-utilities td.is-hidden {
|
628
|
+
color: #ccc;
|
629
|
+
background-color: #f9f9f9 !important;
|
630
|
+
}
|
631
|
+
|
632
|
+
/* Responsive tests
|
633
|
+
------------------------- */
|
634
|
+
.responsive-utilities-test {
|
635
|
+
margin-top: 5px;
|
636
|
+
}
|
637
|
+
.responsive-utilities-test .col-xs-6 {
|
638
|
+
margin-bottom: 10px;
|
639
|
+
}
|
640
|
+
.responsive-utilities-test span {
|
641
|
+
padding: 15px 10px;
|
642
|
+
font-size: 14px;
|
643
|
+
font-weight: bold;
|
644
|
+
line-height: 1.1;
|
645
|
+
text-align: center;
|
646
|
+
border-radius: 4px;
|
647
|
+
}
|
648
|
+
.responsive-utilities-test.visible-on [class*="hidden"],
|
649
|
+
.responsive-utilities-test.hidden-on [class*="visible"] {
|
650
|
+
color: #999;
|
651
|
+
border: 1px solid #ddd;
|
652
|
+
}
|
653
|
+
.responsive-utilities-test.visible-on [class*="visible"],
|
654
|
+
.responsive-utilities-test.hidden-on [class*="hidden"] {
|
655
|
+
color: #468847;
|
656
|
+
background-color: #dff0d8;
|
657
|
+
border: 1px solid #d6e9c6;
|
658
|
+
}
|
659
|
+
|
660
|
+
|
661
|
+
|
662
|
+
/* Footer
|
663
|
+
-------------------------------------------------- */
|
664
|
+
|
665
|
+
.bs-footer {
|
666
|
+
padding-top: 40px;
|
667
|
+
padding-bottom: 30px;
|
668
|
+
margin-top: 100px;
|
669
|
+
text-align: center;
|
670
|
+
border-top: 1px solid #e5e5e5;
|
671
|
+
}
|
672
|
+
.bs-footer p {
|
673
|
+
margin-bottom: 0;
|
674
|
+
color: #777;
|
675
|
+
}
|
676
|
+
.footer-links {
|
677
|
+
margin: 10px 0;
|
678
|
+
padding-left: 0;
|
679
|
+
}
|
680
|
+
.footer-links li {
|
681
|
+
display: inline;
|
682
|
+
padding: 0 2px;
|
683
|
+
}
|
684
|
+
.footer-links li:first-child {
|
685
|
+
padding-left: 0;
|
686
|
+
}
|
687
|
+
|
688
|
+
/* Social proof buttons from GitHub & Twitter */
|
689
|
+
.bs-social {
|
690
|
+
margin-bottom: 20px;
|
691
|
+
}
|
692
|
+
.bs-social-buttons {
|
693
|
+
display: inline-block;
|
694
|
+
margin-bottom: 0;
|
695
|
+
padding-left: 0;
|
696
|
+
list-style: none;
|
697
|
+
}
|
698
|
+
.bs-social-buttons li {
|
699
|
+
display: inline-block;
|
700
|
+
line-height: 1;
|
701
|
+
}
|
702
|
+
.bs-social-buttons li + li {
|
703
|
+
margin-left: 15px;
|
704
|
+
}
|
705
|
+
.bs-social-buttons .twitter-follow-button {
|
706
|
+
width: 225px !important;
|
707
|
+
}
|
708
|
+
.bs-social-buttons .twitter-share-button {
|
709
|
+
width: 98px !important;
|
710
|
+
}
|
711
|
+
/* Style the GitHub buttons via CSS instead of inline attributes */
|
712
|
+
.github-btn {
|
713
|
+
border: 0;
|
714
|
+
overflow: hidden;
|
715
|
+
}
|
716
|
+
|
717
|
+
|
718
|
+
|
719
|
+
/* Misc docs stuff
|
720
|
+
-------------------------------------------------- */
|
721
|
+
|
722
|
+
/* Pseudo :focus state for showing how it looks in the docs */
|
723
|
+
#focusedInput {
|
724
|
+
border-color: rgba(82,168,236,.8);
|
725
|
+
outline: 0;
|
726
|
+
outline: thin dotted \9; /* IE6-9 */
|
727
|
+
-moz-box-shadow: 0 0 8px rgba(82,168,236,.6);
|
728
|
+
box-shadow: 0 0 8px rgba(82,168,236,.6);
|
729
|
+
}
|
730
|
+
|
731
|
+
/* Scrollspy demo on fixed height div */
|
732
|
+
.scrollspy-example {
|
733
|
+
position: relative;
|
734
|
+
height: 200px;
|
735
|
+
margin-top: 10px;
|
736
|
+
overflow: auto;
|
737
|
+
}
|
738
|
+
|
739
|
+
.highlight {
|
740
|
+
padding: 9px 14px;
|
741
|
+
margin-bottom: 14px;
|
742
|
+
background-color: #f7f7f9;
|
743
|
+
border: 1px solid #e1e1e8;
|
744
|
+
border-radius: 4px;
|
745
|
+
}
|
746
|
+
.highlight pre {
|
747
|
+
padding: 0;
|
748
|
+
margin-top: 0;
|
749
|
+
margin-bottom: 0;
|
750
|
+
background-color: transparent;
|
751
|
+
border: 0;
|
752
|
+
white-space: nowrap;
|
753
|
+
}
|
754
|
+
.highlight pre code {
|
755
|
+
font-size: inherit;
|
756
|
+
color: #333; /* Effectively the base text color */
|
757
|
+
}
|
758
|
+
.highlight pre .lineno {
|
759
|
+
display: inline-block;
|
760
|
+
width: 22px;
|
761
|
+
padding-right: 5px;
|
762
|
+
margin-right: 10px;
|
763
|
+
text-align: right;
|
764
|
+
color: #bebec5;
|
765
|
+
}
|
766
|
+
|
767
|
+
/* Better spacing on download options in getting started */
|
768
|
+
.bs-docs-dl-options h4 {
|
769
|
+
margin-top: 15px;
|
770
|
+
margin-bottom: 5px;
|
771
|
+
}
|
772
|
+
|
773
|
+
|
774
|
+
/* Responsive variations
|
775
|
+
-------------------------------------------------- */
|
776
|
+
|
777
|
+
/* Hide code snippets on mobile devices */
|
778
|
+
@media screen and (max-width: 480px) {
|
779
|
+
.highlight {
|
780
|
+
display: none;
|
781
|
+
}
|
782
|
+
}
|
783
|
+
|
784
|
+
/* Tablets and up */
|
785
|
+
@media screen and (min-width: 768px) {
|
786
|
+
|
787
|
+
.bs-header {
|
788
|
+
font-size: 21px;
|
789
|
+
text-align: left;
|
790
|
+
}
|
791
|
+
.bs-header h1 {
|
792
|
+
font-size: 60px;
|
793
|
+
line-height: 1;
|
794
|
+
}
|
795
|
+
|
796
|
+
.bs-example {
|
797
|
+
margin-left: 0;
|
798
|
+
margin-right: 0;
|
799
|
+
background-color: #fff;
|
800
|
+
border-width: 1px;
|
801
|
+
border-color: #ddd;
|
802
|
+
border-radius: 4px 4px 0 0;
|
803
|
+
box-shadow: none;
|
804
|
+
}
|
805
|
+
.bs-example + .prettyprint,
|
806
|
+
.bs-example + .highlight {
|
807
|
+
margin-top: 0;
|
808
|
+
margin-left: 0;
|
809
|
+
margin-right: 0;
|
810
|
+
border-width: 1px;
|
811
|
+
border-bottom-left-radius: 4px;
|
812
|
+
border-bottom-right-radius: 4px;
|
813
|
+
}
|
814
|
+
|
815
|
+
.carbonad {
|
816
|
+
margin: 0 !important;
|
817
|
+
border: 1px solid #e5e5e5 !important;
|
818
|
+
border-radius: 4px;
|
819
|
+
}
|
820
|
+
|
821
|
+
/* Show the docs nav */
|
822
|
+
.bs-sidebar {
|
823
|
+
display: block;
|
824
|
+
}
|
825
|
+
|
826
|
+
/* Tweak display of docs jumbotrons */
|
827
|
+
.bs-masthead {
|
828
|
+
padding-top: 140px;
|
829
|
+
padding-bottom: 140px;
|
830
|
+
}
|
831
|
+
.bs-masthead h1 {
|
832
|
+
font-size: 100px;
|
833
|
+
}
|
834
|
+
.bs-masthead .lead {
|
835
|
+
margin-left: 15%;
|
836
|
+
margin-right: 15%;
|
837
|
+
font-size: 30px;
|
838
|
+
}
|
839
|
+
|
840
|
+
.bs-navbar-top-example .navbar-fixed-top,
|
841
|
+
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
842
|
+
position: absolute;
|
843
|
+
}
|
844
|
+
|
845
|
+
}
|
846
|
+
|
847
|
+
/* Tablets/desktops and up */
|
848
|
+
@media screen and (min-width: 992px) {
|
849
|
+
.bs-header h1,
|
850
|
+
.bs-header p {
|
851
|
+
margin-right: 380px;
|
852
|
+
}
|
853
|
+
.carbonad {
|
854
|
+
position: absolute;
|
855
|
+
top: 20px;
|
856
|
+
right: 0;
|
857
|
+
padding: 15px !important;
|
858
|
+
width: 330px !important;
|
859
|
+
min-height: 132px;
|
860
|
+
}
|
861
|
+
}
|
862
|
+
|
863
|
+
@media screen and (min-width: 992px) and (min-height: 700px) {
|
864
|
+
/* Show the hidden subnavs when space allows it */
|
865
|
+
.bs-sidebar .nav > .active > ul {
|
866
|
+
display: block;
|
867
|
+
}
|
868
|
+
/* Widen the fixed sidebar */
|
869
|
+
.bs-sidebar.affix,
|
870
|
+
.bs-sidebar.affix-bottom {
|
871
|
+
width: 213px;
|
872
|
+
}
|
873
|
+
.bs-sidebar.affix {
|
874
|
+
position: fixed; /* Undo the static from mobile-first approach */
|
875
|
+
top: 80px;
|
876
|
+
}
|
877
|
+
.bs-sidebar.affix-bottom {
|
878
|
+
position: absolute; /* Undo the static from mobile-first approach */
|
879
|
+
}
|
880
|
+
.bs-sidebar.affix-bottom .bs-sidenav,
|
881
|
+
.bs-sidebar.affix .bs-sidenav {
|
882
|
+
margin-top: 0;
|
883
|
+
margin-bottom: 0;
|
884
|
+
}
|
885
|
+
}
|
886
|
+
|
887
|
+
/* Large desktops and up */
|
888
|
+
@media screen and (min-width: 1200px) {
|
889
|
+
|
890
|
+
/* Widen the fixed sidebar again */
|
891
|
+
.bs-sidebar.affix-bottom,
|
892
|
+
.bs-sidebar.affix {
|
893
|
+
width: 263px;
|
894
|
+
}
|
895
|
+
|
896
|
+
}
|