smalruby-editor 0.0.8-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of smalruby-editor might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.gitignore +25 -0
- data/.rspec +4 -0
- data/.rubocop.yml +19 -0
- data/.ruby-version +1 -0
- data/.simplecov +7 -0
- data/.travis.yml +23 -0
- data/LEGAL +13 -0
- data/LICENSE +22 -0
- data/Procfile +1 -0
- data/README.rdoc +46 -0
- data/Rakefile +9 -0
- data/app/assets/images/.keep +0 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/javascripts/application.js +21 -0
- data/app/assets/javascripts/editor.js.coffee.erb +139 -0
- data/app/assets/stylesheets/application.css +19 -0
- data/app/assets/stylesheets/editor.css.scss +19 -0
- data/app/assets/stylesheets/flatstrap-custom.css.scss +2 -0
- data/app/controllers/application_controller.rb +5 -0
- data/app/controllers/concerns/.keep +0 -0
- data/app/controllers/editor_controller.rb +5 -0
- data/app/controllers/source_codes_controller.rb +106 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/editor_helper.rb +2 -0
- data/app/mailers/.keep +0 -0
- data/app/models/.keep +0 -0
- data/app/models/concerns/.keep +0 -0
- data/app/models/source_code.rb +49 -0
- data/app/views/editor/index.html.erb +23 -0
- data/app/views/layouts/application.html.erb +15 -0
- data/bin/bundle +3 -0
- data/bin/rails +4 -0
- data/bin/rake +4 -0
- data/bin/smalruby-editor +80 -0
- data/config/application.rb +16 -0
- data/config/boot.rb +17 -0
- data/config/database.yml.mysql2 +48 -0
- data/config/database.yml.sqlite3 +31 -0
- data/config/database.yml.travis +5 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +30 -0
- data/config/environments/production.rb +86 -0
- data/config/environments/standalone.rb +16 -0
- data/config/environments/test.rb +46 -0
- data/config/initializers/backtrace_silencers.rb +9 -0
- data/config/initializers/filter_parameter_logging.rb +4 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/secret_token.rb +17 -0
- data/config/initializers/session_store.rb +4 -0
- data/config/initializers/wrap_parameters.rb +15 -0
- data/config/locales/en.yml +23 -0
- data/config/routes.rb +68 -0
- data/config/unicorn.rb +23 -0
- data/config.ru +4 -0
- data/db/migrate/20131216121603_create_source_codes.rb +9 -0
- data/db/migrate/20131219045113_add_filename_to_source_code.rb +5 -0
- data/db/schema.rb +23 -0
- data/db/seeds.rb +7 -0
- data/lib/assets/.keep +0 -0
- data/lib/smalruby_editor/version.rb +3 -0
- data/lib/smalruby_editor.rb +46 -0
- data/lib/tasks/.keep +0 -0
- data/lib/tasks/gem.rake +10 -0
- data/lib/tasks/rspec.rake +16 -0
- data/lib/tasks/rubocop.rake +3 -0
- data/log/.keep +0 -0
- data/public/404.html +58 -0
- data/public/422.html +58 -0
- data/public/500.html +57 -0
- data/public/assets/application-759ce4d1ac1e0e3991e6d350c8f98fc5.js +5267 -0
- data/public/assets/application-759ce4d1ac1e0e3991e6d350c8f98fc5.js.gz +0 -0
- data/public/assets/application-f51ea0e777d97f12a8ce84308f31eb57.css +4791 -0
- data/public/assets/application-f51ea0e777d97f12a8ce84308f31eb57.css.gz +0 -0
- data/public/assets/favicon-c7ae857bb9d06de8742ae2d337157e83.ico +0 -0
- data/public/assets/loading-e8e6dd7833131c92a6c3b9c8ccc6a6ac.gif +0 -0
- data/public/assets/manifest-f86249f9779f8f4d7c8fc148e4361b4f.json +1 -0
- data/public/assets/progressbar-82023a146fba2a0f6d925629ed2b09c5.gif +0 -0
- data/public/favicon.ico +0 -0
- data/public/fonts/FontAwesome.otf +0 -0
- data/public/fonts/fontawesome-webfont.eot +0 -0
- data/public/fonts/fontawesome-webfont.ttf +0 -0
- data/public/fonts/fontawesome-webfont.woff +0 -0
- data/public/robots.txt +5 -0
- data/smalruby-editor.gemspec +81 -0
- data/spec/acceptance/readme.md +3 -0
- data/spec/acceptance/standalone/save.feature +32 -0
- data/spec/acceptance/text_editor/base.feature +24 -0
- data/spec/acceptance/text_editor/check.feature +25 -0
- data/spec/acceptance/text_editor/load.feature +81 -0
- data/spec/acceptance/text_editor/save.feature +34 -0
- data/spec/controllers/editor_controller_spec.rb +12 -0
- data/spec/controllers/source_codes_controller_spec.rb +469 -0
- data/spec/fixtures/files/01.rb +57 -0
- data/spec/fixtures/files/favicon.ico +0 -0
- data/spec/helpers/editor_helper_spec.rb +14 -0
- data/spec/lib/smalruby_editor_spec.rb +66 -0
- data/spec/models/source_code_spec.rb +55 -0
- data/spec/spec_helper.rb +156 -0
- data/spec/steps/ace_steps.rb +59 -0
- data/spec/steps/global_variable.rb +39 -0
- data/spec/steps/text_editor_steps.rb +183 -0
- data/spec/support/assets.rb +18 -0
- data/spec/support/capybara.rb +17 -0
- data/spec/support/env.rb +15 -0
- data/spec/turnip_helper.rb +2 -0
- data/vendor/assets/javascripts/.keep +0 -0
- data/vendor/assets/stylesheets/.keep +0 -0
- metadata +407 -0
@@ -0,0 +1,4791 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.3.1
|
3
|
+
*
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
*/
|
10
|
+
article,
|
11
|
+
aside,
|
12
|
+
details,
|
13
|
+
figcaption,
|
14
|
+
figure,
|
15
|
+
footer,
|
16
|
+
header,
|
17
|
+
hgroup,
|
18
|
+
nav,
|
19
|
+
section {
|
20
|
+
display: block; }
|
21
|
+
|
22
|
+
audio,
|
23
|
+
canvas,
|
24
|
+
video {
|
25
|
+
display: inline-block;
|
26
|
+
*display: inline;
|
27
|
+
*zoom: 1; }
|
28
|
+
|
29
|
+
audio:not([controls]) {
|
30
|
+
display: none; }
|
31
|
+
|
32
|
+
html {
|
33
|
+
font-size: 100%;
|
34
|
+
-webkit-text-size-adjust: 100%;
|
35
|
+
-ms-text-size-adjust: 100%; }
|
36
|
+
|
37
|
+
a:focus {
|
38
|
+
outline: thin dotted #333;
|
39
|
+
outline: 5px auto -webkit-focus-ring-color;
|
40
|
+
outline-offset: -2px; }
|
41
|
+
|
42
|
+
a:hover,
|
43
|
+
a:active {
|
44
|
+
outline: 0; }
|
45
|
+
|
46
|
+
sub,
|
47
|
+
sup {
|
48
|
+
position: relative;
|
49
|
+
font-size: 75%;
|
50
|
+
line-height: 0;
|
51
|
+
vertical-align: baseline; }
|
52
|
+
|
53
|
+
sup {
|
54
|
+
top: -0.5em; }
|
55
|
+
|
56
|
+
sub {
|
57
|
+
bottom: -0.25em; }
|
58
|
+
|
59
|
+
img {
|
60
|
+
/* Responsive images (ensure images don't scale beyond their parents) */
|
61
|
+
max-width: 100%;
|
62
|
+
/* Part 1: Set a maxium relative to the parent */
|
63
|
+
width: auto\9;
|
64
|
+
/* IE7-8 need help adjusting responsive images */
|
65
|
+
height: auto;
|
66
|
+
/* Part 2: Scale the height according to the width, otherwise you get stretching */
|
67
|
+
vertical-align: middle;
|
68
|
+
border: 0;
|
69
|
+
-ms-interpolation-mode: bicubic; }
|
70
|
+
|
71
|
+
#map_canvas img,
|
72
|
+
.google-maps img {
|
73
|
+
max-width: none; }
|
74
|
+
|
75
|
+
button,
|
76
|
+
input,
|
77
|
+
select,
|
78
|
+
textarea {
|
79
|
+
margin: 0;
|
80
|
+
font-size: 100%;
|
81
|
+
vertical-align: middle; }
|
82
|
+
|
83
|
+
button,
|
84
|
+
input {
|
85
|
+
*overflow: visible;
|
86
|
+
line-height: normal; }
|
87
|
+
|
88
|
+
button::-moz-focus-inner,
|
89
|
+
input::-moz-focus-inner {
|
90
|
+
padding: 0;
|
91
|
+
border: 0; }
|
92
|
+
|
93
|
+
button,
|
94
|
+
html input[type="button"],
|
95
|
+
input[type="reset"],
|
96
|
+
input[type="submit"] {
|
97
|
+
-webkit-appearance: button;
|
98
|
+
cursor: pointer; }
|
99
|
+
|
100
|
+
label,
|
101
|
+
select,
|
102
|
+
button,
|
103
|
+
input[type="button"],
|
104
|
+
input[type="reset"],
|
105
|
+
input[type="submit"],
|
106
|
+
input[type="radio"],
|
107
|
+
input[type="checkbox"] {
|
108
|
+
cursor: pointer; }
|
109
|
+
|
110
|
+
input[type="search"] {
|
111
|
+
-webkit-box-sizing: content-box;
|
112
|
+
-moz-box-sizing: content-box;
|
113
|
+
box-sizing: content-box;
|
114
|
+
-webkit-appearance: textfield; }
|
115
|
+
|
116
|
+
input[type="search"]::-webkit-search-decoration,
|
117
|
+
input[type="search"]::-webkit-search-cancel-button {
|
118
|
+
-webkit-appearance: none; }
|
119
|
+
|
120
|
+
textarea {
|
121
|
+
overflow: auto;
|
122
|
+
vertical-align: top; }
|
123
|
+
|
124
|
+
@media print {
|
125
|
+
* {
|
126
|
+
text-shadow: none !important;
|
127
|
+
color: #000 !important;
|
128
|
+
background: transparent !important;
|
129
|
+
box-shadow: none !important; }
|
130
|
+
|
131
|
+
a,
|
132
|
+
a:visited {
|
133
|
+
text-decoration: underline; }
|
134
|
+
|
135
|
+
a[href]:after {
|
136
|
+
content: " (" attr(href) ")"; }
|
137
|
+
|
138
|
+
abbr[title]:after {
|
139
|
+
content: " (" attr(title) ")"; }
|
140
|
+
|
141
|
+
.ir a:after,
|
142
|
+
a[href^="javascript:"]:after,
|
143
|
+
a[href^="#"]:after {
|
144
|
+
content: ""; }
|
145
|
+
|
146
|
+
pre,
|
147
|
+
blockquote {
|
148
|
+
border: 1px solid #999;
|
149
|
+
page-break-inside: avoid; }
|
150
|
+
|
151
|
+
thead {
|
152
|
+
display: table-header-group; }
|
153
|
+
|
154
|
+
tr,
|
155
|
+
img {
|
156
|
+
page-break-inside: avoid; }
|
157
|
+
|
158
|
+
img {
|
159
|
+
max-width: 100% !important; }
|
160
|
+
|
161
|
+
@page {
|
162
|
+
margin: 0.5cm; }
|
163
|
+
|
164
|
+
p,
|
165
|
+
h2,
|
166
|
+
h3 {
|
167
|
+
orphans: 3;
|
168
|
+
widows: 3; }
|
169
|
+
|
170
|
+
h2,
|
171
|
+
h3 {
|
172
|
+
page-break-after: avoid; } }
|
173
|
+
body {
|
174
|
+
margin: 0;
|
175
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
176
|
+
font-size: 14px;
|
177
|
+
line-height: 20px;
|
178
|
+
color: #333333;
|
179
|
+
background-color: white; }
|
180
|
+
|
181
|
+
a {
|
182
|
+
color: #0088cc;
|
183
|
+
text-decoration: none; }
|
184
|
+
|
185
|
+
a:hover,
|
186
|
+
a:focus {
|
187
|
+
color: #005580;
|
188
|
+
text-decoration: underline; }
|
189
|
+
|
190
|
+
.img-polaroid {
|
191
|
+
padding: 4px;
|
192
|
+
background-color: #fff;
|
193
|
+
border: 1px solid #ccc;
|
194
|
+
border: 1px solid rgba(0, 0, 0, 0.2); }
|
195
|
+
|
196
|
+
.row {
|
197
|
+
margin-left: -20px;
|
198
|
+
*zoom: 1; }
|
199
|
+
.row:before, .row:after {
|
200
|
+
display: table;
|
201
|
+
content: "";
|
202
|
+
line-height: 0; }
|
203
|
+
.row:after {
|
204
|
+
clear: both; }
|
205
|
+
|
206
|
+
[class*="span"] {
|
207
|
+
float: left;
|
208
|
+
min-height: 1px;
|
209
|
+
margin-left: 20px; }
|
210
|
+
|
211
|
+
.container,
|
212
|
+
.navbar-static-top .container,
|
213
|
+
.navbar-fixed-top .container,
|
214
|
+
.navbar-fixed-bottom .container {
|
215
|
+
width: 940px; }
|
216
|
+
|
217
|
+
.span12 {
|
218
|
+
width: 940px; }
|
219
|
+
|
220
|
+
.span11 {
|
221
|
+
width: 860px; }
|
222
|
+
|
223
|
+
.span10 {
|
224
|
+
width: 780px; }
|
225
|
+
|
226
|
+
.span9 {
|
227
|
+
width: 700px; }
|
228
|
+
|
229
|
+
.span8 {
|
230
|
+
width: 620px; }
|
231
|
+
|
232
|
+
.span7 {
|
233
|
+
width: 540px; }
|
234
|
+
|
235
|
+
.span6 {
|
236
|
+
width: 460px; }
|
237
|
+
|
238
|
+
.span5 {
|
239
|
+
width: 380px; }
|
240
|
+
|
241
|
+
.span4 {
|
242
|
+
width: 300px; }
|
243
|
+
|
244
|
+
.span3 {
|
245
|
+
width: 220px; }
|
246
|
+
|
247
|
+
.span2 {
|
248
|
+
width: 140px; }
|
249
|
+
|
250
|
+
.span1 {
|
251
|
+
width: 60px; }
|
252
|
+
|
253
|
+
.offset12 {
|
254
|
+
margin-left: 980px; }
|
255
|
+
|
256
|
+
.offset11 {
|
257
|
+
margin-left: 900px; }
|
258
|
+
|
259
|
+
.offset10 {
|
260
|
+
margin-left: 820px; }
|
261
|
+
|
262
|
+
.offset9 {
|
263
|
+
margin-left: 740px; }
|
264
|
+
|
265
|
+
.offset8 {
|
266
|
+
margin-left: 660px; }
|
267
|
+
|
268
|
+
.offset7 {
|
269
|
+
margin-left: 580px; }
|
270
|
+
|
271
|
+
.offset6 {
|
272
|
+
margin-left: 500px; }
|
273
|
+
|
274
|
+
.offset5 {
|
275
|
+
margin-left: 420px; }
|
276
|
+
|
277
|
+
.offset4 {
|
278
|
+
margin-left: 340px; }
|
279
|
+
|
280
|
+
.offset3 {
|
281
|
+
margin-left: 260px; }
|
282
|
+
|
283
|
+
.offset2 {
|
284
|
+
margin-left: 180px; }
|
285
|
+
|
286
|
+
.offset1 {
|
287
|
+
margin-left: 100px; }
|
288
|
+
|
289
|
+
.row-fluid {
|
290
|
+
width: 100%;
|
291
|
+
*zoom: 1; }
|
292
|
+
.row-fluid:before, .row-fluid:after {
|
293
|
+
display: table;
|
294
|
+
content: "";
|
295
|
+
line-height: 0; }
|
296
|
+
.row-fluid:after {
|
297
|
+
clear: both; }
|
298
|
+
.row-fluid [class*="span"] {
|
299
|
+
display: block;
|
300
|
+
width: 100%;
|
301
|
+
min-height: 30px;
|
302
|
+
-webkit-box-sizing: border-box;
|
303
|
+
-moz-box-sizing: border-box;
|
304
|
+
box-sizing: border-box;
|
305
|
+
float: left;
|
306
|
+
margin-left: 2.12766%;
|
307
|
+
*margin-left: 2.07447%; }
|
308
|
+
.row-fluid [class*="span"]:first-child {
|
309
|
+
margin-left: 0; }
|
310
|
+
.row-fluid .controls-row [class*="span"] + [class*="span"] {
|
311
|
+
margin-left: 2.12766%; }
|
312
|
+
.row-fluid .span12 {
|
313
|
+
width: 100%;
|
314
|
+
*width: 99.94681%; }
|
315
|
+
.row-fluid .span11 {
|
316
|
+
width: 91.48936%;
|
317
|
+
*width: 91.43617%; }
|
318
|
+
.row-fluid .span10 {
|
319
|
+
width: 82.97872%;
|
320
|
+
*width: 82.92553%; }
|
321
|
+
.row-fluid .span9 {
|
322
|
+
width: 74.46809%;
|
323
|
+
*width: 74.41489%; }
|
324
|
+
.row-fluid .span8 {
|
325
|
+
width: 65.95745%;
|
326
|
+
*width: 65.90426%; }
|
327
|
+
.row-fluid .span7 {
|
328
|
+
width: 57.44681%;
|
329
|
+
*width: 57.39362%; }
|
330
|
+
.row-fluid .span6 {
|
331
|
+
width: 48.93617%;
|
332
|
+
*width: 48.88298%; }
|
333
|
+
.row-fluid .span5 {
|
334
|
+
width: 40.42553%;
|
335
|
+
*width: 40.37234%; }
|
336
|
+
.row-fluid .span4 {
|
337
|
+
width: 31.91489%;
|
338
|
+
*width: 31.8617%; }
|
339
|
+
.row-fluid .span3 {
|
340
|
+
width: 23.40426%;
|
341
|
+
*width: 23.35106%; }
|
342
|
+
.row-fluid .span2 {
|
343
|
+
width: 14.89362%;
|
344
|
+
*width: 14.84043%; }
|
345
|
+
.row-fluid .span1 {
|
346
|
+
width: 6.38298%;
|
347
|
+
*width: 6.32979%; }
|
348
|
+
.row-fluid .offset12 {
|
349
|
+
margin-left: 104.25532%;
|
350
|
+
*margin-left: 104.14894%; }
|
351
|
+
.row-fluid .offset12:first-child {
|
352
|
+
margin-left: 102.12766%;
|
353
|
+
*margin-left: 102.02128%; }
|
354
|
+
.row-fluid .offset11 {
|
355
|
+
margin-left: 95.74468%;
|
356
|
+
*margin-left: 95.6383%; }
|
357
|
+
.row-fluid .offset11:first-child {
|
358
|
+
margin-left: 93.61702%;
|
359
|
+
*margin-left: 93.51064%; }
|
360
|
+
.row-fluid .offset10 {
|
361
|
+
margin-left: 87.23404%;
|
362
|
+
*margin-left: 87.12766%; }
|
363
|
+
.row-fluid .offset10:first-child {
|
364
|
+
margin-left: 85.10638%;
|
365
|
+
*margin-left: 85.0%; }
|
366
|
+
.row-fluid .offset9 {
|
367
|
+
margin-left: 78.7234%;
|
368
|
+
*margin-left: 78.61702%; }
|
369
|
+
.row-fluid .offset9:first-child {
|
370
|
+
margin-left: 76.59574%;
|
371
|
+
*margin-left: 76.48936%; }
|
372
|
+
.row-fluid .offset8 {
|
373
|
+
margin-left: 70.21277%;
|
374
|
+
*margin-left: 70.10638%; }
|
375
|
+
.row-fluid .offset8:first-child {
|
376
|
+
margin-left: 68.08511%;
|
377
|
+
*margin-left: 67.97872%; }
|
378
|
+
.row-fluid .offset7 {
|
379
|
+
margin-left: 61.70213%;
|
380
|
+
*margin-left: 61.59574%; }
|
381
|
+
.row-fluid .offset7:first-child {
|
382
|
+
margin-left: 59.57447%;
|
383
|
+
*margin-left: 59.46809%; }
|
384
|
+
.row-fluid .offset6 {
|
385
|
+
margin-left: 53.19149%;
|
386
|
+
*margin-left: 53.08511%; }
|
387
|
+
.row-fluid .offset6:first-child {
|
388
|
+
margin-left: 51.06383%;
|
389
|
+
*margin-left: 50.95745%; }
|
390
|
+
.row-fluid .offset5 {
|
391
|
+
margin-left: 44.68085%;
|
392
|
+
*margin-left: 44.57447%; }
|
393
|
+
.row-fluid .offset5:first-child {
|
394
|
+
margin-left: 42.55319%;
|
395
|
+
*margin-left: 42.44681%; }
|
396
|
+
.row-fluid .offset4 {
|
397
|
+
margin-left: 36.17021%;
|
398
|
+
*margin-left: 36.06383%; }
|
399
|
+
.row-fluid .offset4:first-child {
|
400
|
+
margin-left: 34.04255%;
|
401
|
+
*margin-left: 33.93617%; }
|
402
|
+
.row-fluid .offset3 {
|
403
|
+
margin-left: 27.65957%;
|
404
|
+
*margin-left: 27.55319%; }
|
405
|
+
.row-fluid .offset3:first-child {
|
406
|
+
margin-left: 25.53191%;
|
407
|
+
*margin-left: 25.42553%; }
|
408
|
+
.row-fluid .offset2 {
|
409
|
+
margin-left: 19.14894%;
|
410
|
+
*margin-left: 19.04255%; }
|
411
|
+
.row-fluid .offset2:first-child {
|
412
|
+
margin-left: 17.02128%;
|
413
|
+
*margin-left: 16.91489%; }
|
414
|
+
.row-fluid .offset1 {
|
415
|
+
margin-left: 10.6383%;
|
416
|
+
*margin-left: 10.53191%; }
|
417
|
+
.row-fluid .offset1:first-child {
|
418
|
+
margin-left: 8.51064%;
|
419
|
+
*margin-left: 8.40426%; }
|
420
|
+
|
421
|
+
[class*="span"].hide,
|
422
|
+
.row-fluid [class*="span"].hide {
|
423
|
+
display: none; }
|
424
|
+
|
425
|
+
[class*="span"].pull-right,
|
426
|
+
.row-fluid [class*="span"].pull-right {
|
427
|
+
float: right; }
|
428
|
+
|
429
|
+
.container {
|
430
|
+
margin-right: auto;
|
431
|
+
margin-left: auto;
|
432
|
+
*zoom: 1; }
|
433
|
+
.container:before, .container:after {
|
434
|
+
display: table;
|
435
|
+
content: "";
|
436
|
+
line-height: 0; }
|
437
|
+
.container:after {
|
438
|
+
clear: both; }
|
439
|
+
|
440
|
+
.container-fluid {
|
441
|
+
padding-right: 20px;
|
442
|
+
padding-left: 20px;
|
443
|
+
*zoom: 1; }
|
444
|
+
.container-fluid:before, .container-fluid:after {
|
445
|
+
display: table;
|
446
|
+
content: "";
|
447
|
+
line-height: 0; }
|
448
|
+
.container-fluid:after {
|
449
|
+
clear: both; }
|
450
|
+
|
451
|
+
p {
|
452
|
+
margin: 0 0 10px; }
|
453
|
+
|
454
|
+
.lead {
|
455
|
+
margin-bottom: 20px;
|
456
|
+
font-size: 21px;
|
457
|
+
font-weight: 200;
|
458
|
+
line-height: 30px; }
|
459
|
+
|
460
|
+
small {
|
461
|
+
font-size: 85%; }
|
462
|
+
|
463
|
+
strong {
|
464
|
+
font-weight: bold; }
|
465
|
+
|
466
|
+
em {
|
467
|
+
font-style: italic; }
|
468
|
+
|
469
|
+
cite {
|
470
|
+
font-style: normal; }
|
471
|
+
|
472
|
+
.muted {
|
473
|
+
color: #999999; }
|
474
|
+
|
475
|
+
a.muted:hover,
|
476
|
+
a.muted:focus {
|
477
|
+
color: gray; }
|
478
|
+
|
479
|
+
.text-warning {
|
480
|
+
color: #c09853; }
|
481
|
+
|
482
|
+
a.text-warning:hover,
|
483
|
+
a.text-warning:focus {
|
484
|
+
color: #a47e3c; }
|
485
|
+
|
486
|
+
.text-error {
|
487
|
+
color: #b94a48; }
|
488
|
+
|
489
|
+
a.text-error:hover,
|
490
|
+
a.text-error:focus {
|
491
|
+
color: #953b39; }
|
492
|
+
|
493
|
+
.text-info {
|
494
|
+
color: #3a87ad; }
|
495
|
+
|
496
|
+
a.text-info:hover,
|
497
|
+
a.text-info:focus {
|
498
|
+
color: #2d6987; }
|
499
|
+
|
500
|
+
.text-success {
|
501
|
+
color: #468847; }
|
502
|
+
|
503
|
+
a.text-success:hover,
|
504
|
+
a.text-success:focus {
|
505
|
+
color: #356635; }
|
506
|
+
|
507
|
+
.text-left {
|
508
|
+
text-align: left; }
|
509
|
+
|
510
|
+
.text-right {
|
511
|
+
text-align: right; }
|
512
|
+
|
513
|
+
.text-center {
|
514
|
+
text-align: center; }
|
515
|
+
|
516
|
+
h1, h2, h3, h4, h5, h6 {
|
517
|
+
margin: 10px 0;
|
518
|
+
font-family: inherit;
|
519
|
+
font-weight: bold;
|
520
|
+
line-height: 20px;
|
521
|
+
color: inherit;
|
522
|
+
text-rendering: optimizelegibility; }
|
523
|
+
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
|
524
|
+
font-weight: normal;
|
525
|
+
line-height: 1;
|
526
|
+
color: #999999; }
|
527
|
+
|
528
|
+
h1,
|
529
|
+
h2,
|
530
|
+
h3 {
|
531
|
+
line-height: 40px; }
|
532
|
+
|
533
|
+
h1 {
|
534
|
+
font-size: 38.5px; }
|
535
|
+
|
536
|
+
h2 {
|
537
|
+
font-size: 31.5px; }
|
538
|
+
|
539
|
+
h3 {
|
540
|
+
font-size: 24.5px; }
|
541
|
+
|
542
|
+
h4 {
|
543
|
+
font-size: 17.5px; }
|
544
|
+
|
545
|
+
h5 {
|
546
|
+
font-size: 14px; }
|
547
|
+
|
548
|
+
h6 {
|
549
|
+
font-size: 11.9px; }
|
550
|
+
|
551
|
+
h1 small {
|
552
|
+
font-size: 24.5px; }
|
553
|
+
|
554
|
+
h2 small {
|
555
|
+
font-size: 17.5px; }
|
556
|
+
|
557
|
+
h3 small {
|
558
|
+
font-size: 14px; }
|
559
|
+
|
560
|
+
h4 small {
|
561
|
+
font-size: 14px; }
|
562
|
+
|
563
|
+
.page-header {
|
564
|
+
padding-bottom: 9px;
|
565
|
+
margin: 20px 0 30px;
|
566
|
+
border-bottom: 1px solid #eeeeee; }
|
567
|
+
|
568
|
+
ul, ol {
|
569
|
+
padding: 0;
|
570
|
+
margin: 0 0 10px 25px; }
|
571
|
+
|
572
|
+
ul ul,
|
573
|
+
ul ol,
|
574
|
+
ol ol,
|
575
|
+
ol ul {
|
576
|
+
margin-bottom: 0; }
|
577
|
+
|
578
|
+
li {
|
579
|
+
line-height: 20px; }
|
580
|
+
|
581
|
+
ul.unstyled,
|
582
|
+
ol.unstyled {
|
583
|
+
margin-left: 0;
|
584
|
+
list-style: none; }
|
585
|
+
|
586
|
+
ul.inline,
|
587
|
+
ol.inline {
|
588
|
+
margin-left: 0;
|
589
|
+
list-style: none; }
|
590
|
+
ul.inline > li,
|
591
|
+
ol.inline > li {
|
592
|
+
display: inline-block;
|
593
|
+
*display: inline;
|
594
|
+
/* IE7 inline-block hack */
|
595
|
+
*zoom: 1;
|
596
|
+
padding-left: 5px;
|
597
|
+
padding-right: 5px; }
|
598
|
+
|
599
|
+
dl {
|
600
|
+
margin-bottom: 20px; }
|
601
|
+
|
602
|
+
dt,
|
603
|
+
dd {
|
604
|
+
line-height: 20px; }
|
605
|
+
|
606
|
+
dt {
|
607
|
+
font-weight: bold; }
|
608
|
+
|
609
|
+
dd {
|
610
|
+
margin-left: 10px; }
|
611
|
+
|
612
|
+
.dl-horizontal {
|
613
|
+
*zoom: 1; }
|
614
|
+
.dl-horizontal:before, .dl-horizontal:after {
|
615
|
+
display: table;
|
616
|
+
content: "";
|
617
|
+
line-height: 0; }
|
618
|
+
.dl-horizontal:after {
|
619
|
+
clear: both; }
|
620
|
+
.dl-horizontal dt {
|
621
|
+
float: left;
|
622
|
+
width: 160px;
|
623
|
+
clear: left;
|
624
|
+
text-align: right;
|
625
|
+
overflow: hidden;
|
626
|
+
text-overflow: ellipsis;
|
627
|
+
white-space: nowrap; }
|
628
|
+
.dl-horizontal dd {
|
629
|
+
margin-left: 180px; }
|
630
|
+
|
631
|
+
hr {
|
632
|
+
margin: 20px 0;
|
633
|
+
border: 0;
|
634
|
+
border-top: 1px solid #eeeeee;
|
635
|
+
border-bottom: 1px solid white; }
|
636
|
+
|
637
|
+
abbr[title],
|
638
|
+
abbr[data-original-title] {
|
639
|
+
cursor: help;
|
640
|
+
border-bottom: 1px dotted #999999; }
|
641
|
+
|
642
|
+
abbr.initialism {
|
643
|
+
font-size: 90%;
|
644
|
+
text-transform: uppercase; }
|
645
|
+
|
646
|
+
blockquote {
|
647
|
+
padding: 0 0 0 15px;
|
648
|
+
margin: 0 0 20px;
|
649
|
+
border-left: 5px solid #eeeeee; }
|
650
|
+
blockquote p {
|
651
|
+
margin-bottom: 0;
|
652
|
+
font-size: 17.5px;
|
653
|
+
font-weight: 300;
|
654
|
+
line-height: 1.25; }
|
655
|
+
blockquote small {
|
656
|
+
display: block;
|
657
|
+
line-height: 20px;
|
658
|
+
color: #999999; }
|
659
|
+
blockquote small:before {
|
660
|
+
content: '\2014 \00A0'; }
|
661
|
+
blockquote.pull-right {
|
662
|
+
float: right;
|
663
|
+
padding-right: 15px;
|
664
|
+
padding-left: 0;
|
665
|
+
border-right: 5px solid #eeeeee;
|
666
|
+
border-left: 0; }
|
667
|
+
blockquote.pull-right p,
|
668
|
+
blockquote.pull-right small {
|
669
|
+
text-align: right; }
|
670
|
+
blockquote.pull-right small:before {
|
671
|
+
content: ''; }
|
672
|
+
blockquote.pull-right small:after {
|
673
|
+
content: '\00A0 \2014'; }
|
674
|
+
|
675
|
+
q:before,
|
676
|
+
q:after,
|
677
|
+
blockquote:before,
|
678
|
+
blockquote:after {
|
679
|
+
content: ""; }
|
680
|
+
|
681
|
+
address {
|
682
|
+
display: block;
|
683
|
+
margin-bottom: 20px;
|
684
|
+
font-style: normal;
|
685
|
+
line-height: 20px; }
|
686
|
+
|
687
|
+
code,
|
688
|
+
pre {
|
689
|
+
padding: 0 3px 2px;
|
690
|
+
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
691
|
+
font-size: 12px;
|
692
|
+
color: #333333; }
|
693
|
+
|
694
|
+
code {
|
695
|
+
padding: 2px 4px;
|
696
|
+
color: #d14;
|
697
|
+
background-color: #f7f7f9;
|
698
|
+
border: 1px solid #e1e1e8;
|
699
|
+
white-space: nowrap; }
|
700
|
+
|
701
|
+
pre {
|
702
|
+
display: block;
|
703
|
+
padding: 9.5px;
|
704
|
+
margin: 0 0 10px;
|
705
|
+
font-size: 13px;
|
706
|
+
line-height: 20px;
|
707
|
+
word-break: break-all;
|
708
|
+
word-wrap: break-word;
|
709
|
+
white-space: pre;
|
710
|
+
white-space: pre-wrap;
|
711
|
+
background-color: #f5f5f5;
|
712
|
+
border: 1px solid #ccc;
|
713
|
+
border: 1px solid rgba(0, 0, 0, 0.15); }
|
714
|
+
pre.prettyprint {
|
715
|
+
margin-bottom: 20px; }
|
716
|
+
pre code {
|
717
|
+
padding: 0;
|
718
|
+
color: inherit;
|
719
|
+
white-space: pre;
|
720
|
+
white-space: pre-wrap;
|
721
|
+
background-color: transparent;
|
722
|
+
border: 0; }
|
723
|
+
|
724
|
+
.pre-scrollable {
|
725
|
+
max-height: 340px;
|
726
|
+
overflow-y: scroll; }
|
727
|
+
|
728
|
+
form {
|
729
|
+
margin: 0 0 20px; }
|
730
|
+
|
731
|
+
input[type="checkbox"] {
|
732
|
+
-webkit-appearance: checkbox;
|
733
|
+
border-radius: 0; }
|
734
|
+
|
735
|
+
input[type="radio"] {
|
736
|
+
-webkit-appearance: radio;
|
737
|
+
border-radius: 0; }
|
738
|
+
|
739
|
+
fieldset {
|
740
|
+
padding: 0;
|
741
|
+
margin: 0;
|
742
|
+
border: 0; }
|
743
|
+
|
744
|
+
legend {
|
745
|
+
display: block;
|
746
|
+
width: 100%;
|
747
|
+
padding: 0;
|
748
|
+
margin-bottom: 20px;
|
749
|
+
font-size: 21px;
|
750
|
+
line-height: 40px;
|
751
|
+
color: #333333;
|
752
|
+
border: 0;
|
753
|
+
border-bottom: 1px solid #e5e5e5; }
|
754
|
+
legend small {
|
755
|
+
font-size: 15px;
|
756
|
+
color: #999999; }
|
757
|
+
|
758
|
+
label,
|
759
|
+
input,
|
760
|
+
button,
|
761
|
+
select,
|
762
|
+
textarea {
|
763
|
+
font-size: 14px;
|
764
|
+
font-weight: normal;
|
765
|
+
line-height: 20px; }
|
766
|
+
|
767
|
+
input,
|
768
|
+
button,
|
769
|
+
select,
|
770
|
+
textarea {
|
771
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
|
772
|
+
|
773
|
+
label {
|
774
|
+
display: block;
|
775
|
+
margin-bottom: 5px; }
|
776
|
+
|
777
|
+
select,
|
778
|
+
textarea,
|
779
|
+
input[type="text"],
|
780
|
+
input[type="password"],
|
781
|
+
input[type="datetime"],
|
782
|
+
input[type="datetime-local"],
|
783
|
+
input[type="date"],
|
784
|
+
input[type="month"],
|
785
|
+
input[type="time"],
|
786
|
+
input[type="week"],
|
787
|
+
input[type="number"],
|
788
|
+
input[type="email"],
|
789
|
+
input[type="url"],
|
790
|
+
input[type="search"],
|
791
|
+
input[type="tel"],
|
792
|
+
input[type="color"],
|
793
|
+
.uneditable-input {
|
794
|
+
display: inline-block;
|
795
|
+
height: 20px;
|
796
|
+
padding: 4px 6px;
|
797
|
+
margin-bottom: 10px;
|
798
|
+
font-size: 14px;
|
799
|
+
line-height: 20px;
|
800
|
+
color: #555555;
|
801
|
+
vertical-align: middle; }
|
802
|
+
|
803
|
+
input,
|
804
|
+
textarea,
|
805
|
+
.uneditable-input {
|
806
|
+
width: 206px; }
|
807
|
+
|
808
|
+
textarea {
|
809
|
+
height: auto; }
|
810
|
+
|
811
|
+
textarea,
|
812
|
+
input[type="text"],
|
813
|
+
input[type="password"],
|
814
|
+
input[type="datetime"],
|
815
|
+
input[type="datetime-local"],
|
816
|
+
input[type="date"],
|
817
|
+
input[type="month"],
|
818
|
+
input[type="time"],
|
819
|
+
input[type="week"],
|
820
|
+
input[type="number"],
|
821
|
+
input[type="email"],
|
822
|
+
input[type="url"],
|
823
|
+
input[type="search"],
|
824
|
+
input[type="tel"],
|
825
|
+
input[type="color"],
|
826
|
+
.uneditable-input {
|
827
|
+
background-color: white;
|
828
|
+
border: 1px solid #cccccc;
|
829
|
+
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
830
|
+
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
831
|
+
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
832
|
+
transition: border linear 0.2s, box-shadow linear 0.2s; }
|
833
|
+
textarea:focus,
|
834
|
+
input[type="text"]:focus,
|
835
|
+
input[type="password"]:focus,
|
836
|
+
input[type="datetime"]:focus,
|
837
|
+
input[type="datetime-local"]:focus,
|
838
|
+
input[type="date"]:focus,
|
839
|
+
input[type="month"]:focus,
|
840
|
+
input[type="time"]:focus,
|
841
|
+
input[type="week"]:focus,
|
842
|
+
input[type="number"]:focus,
|
843
|
+
input[type="email"]:focus,
|
844
|
+
input[type="url"]:focus,
|
845
|
+
input[type="search"]:focus,
|
846
|
+
input[type="tel"]:focus,
|
847
|
+
input[type="color"]:focus,
|
848
|
+
.uneditable-input:focus {
|
849
|
+
border-color: rgba(82, 168, 236, 0.8);
|
850
|
+
outline: 0;
|
851
|
+
outline: thin dotted \9;
|
852
|
+
/* IE6-9 */ }
|
853
|
+
|
854
|
+
input[type="radio"],
|
855
|
+
input[type="checkbox"] {
|
856
|
+
margin: 4px 0 0;
|
857
|
+
*margin-top: 0;
|
858
|
+
/* IE7 */
|
859
|
+
margin-top: 1px \9;
|
860
|
+
/* IE8-9 */
|
861
|
+
line-height: normal; }
|
862
|
+
|
863
|
+
input[type="file"],
|
864
|
+
input[type="image"],
|
865
|
+
input[type="submit"],
|
866
|
+
input[type="reset"],
|
867
|
+
input[type="button"],
|
868
|
+
input[type="radio"],
|
869
|
+
input[type="checkbox"] {
|
870
|
+
width: auto; }
|
871
|
+
|
872
|
+
select,
|
873
|
+
input[type="file"] {
|
874
|
+
height: 30px;
|
875
|
+
/* In IE7, the height of the select element cannot be changed by height, only font-size */
|
876
|
+
*margin-top: 4px;
|
877
|
+
/* For IE7, add top margin to align select with labels */
|
878
|
+
line-height: 30px; }
|
879
|
+
|
880
|
+
select {
|
881
|
+
width: 220px;
|
882
|
+
border: 1px solid #cccccc;
|
883
|
+
background-color: white; }
|
884
|
+
|
885
|
+
select[multiple],
|
886
|
+
select[size] {
|
887
|
+
height: auto; }
|
888
|
+
|
889
|
+
select:focus,
|
890
|
+
input[type="file"]:focus,
|
891
|
+
input[type="radio"]:focus,
|
892
|
+
input[type="checkbox"]:focus {
|
893
|
+
outline: thin dotted #333;
|
894
|
+
outline: 5px auto -webkit-focus-ring-color;
|
895
|
+
outline-offset: -2px; }
|
896
|
+
|
897
|
+
.uneditable-input,
|
898
|
+
.uneditable-textarea {
|
899
|
+
color: #999999;
|
900
|
+
background-color: #fcfcfc;
|
901
|
+
border-color: #cccccc;
|
902
|
+
cursor: not-allowed; }
|
903
|
+
|
904
|
+
.uneditable-input {
|
905
|
+
overflow: hidden;
|
906
|
+
white-space: nowrap; }
|
907
|
+
|
908
|
+
.uneditable-textarea {
|
909
|
+
width: auto;
|
910
|
+
height: auto; }
|
911
|
+
|
912
|
+
input:-moz-placeholder,
|
913
|
+
textarea:-moz-placeholder {
|
914
|
+
color: #999999; }
|
915
|
+
input:-ms-input-placeholder,
|
916
|
+
textarea:-ms-input-placeholder {
|
917
|
+
color: #999999; }
|
918
|
+
input::-webkit-input-placeholder,
|
919
|
+
textarea::-webkit-input-placeholder {
|
920
|
+
color: #999999; }
|
921
|
+
|
922
|
+
.radio,
|
923
|
+
.checkbox {
|
924
|
+
min-height: 20px;
|
925
|
+
padding-left: 20px; }
|
926
|
+
|
927
|
+
.radio input[type="radio"],
|
928
|
+
.checkbox input[type="checkbox"] {
|
929
|
+
float: left;
|
930
|
+
margin-left: -20px; }
|
931
|
+
|
932
|
+
.controls > .radio:first-child,
|
933
|
+
.controls > .checkbox:first-child {
|
934
|
+
padding-top: 5px; }
|
935
|
+
|
936
|
+
.radio.inline,
|
937
|
+
.checkbox.inline {
|
938
|
+
display: inline-block;
|
939
|
+
padding-top: 5px;
|
940
|
+
margin-bottom: 0;
|
941
|
+
vertical-align: middle; }
|
942
|
+
|
943
|
+
.radio.inline + .radio.inline,
|
944
|
+
.checkbox.inline + .checkbox.inline {
|
945
|
+
margin-left: 10px; }
|
946
|
+
|
947
|
+
.input-mini {
|
948
|
+
width: 60px; }
|
949
|
+
|
950
|
+
.input-small {
|
951
|
+
width: 90px; }
|
952
|
+
|
953
|
+
.input-medium {
|
954
|
+
width: 150px; }
|
955
|
+
|
956
|
+
.input-large {
|
957
|
+
width: 210px; }
|
958
|
+
|
959
|
+
.input-xlarge {
|
960
|
+
width: 270px; }
|
961
|
+
|
962
|
+
.input-xxlarge {
|
963
|
+
width: 530px; }
|
964
|
+
|
965
|
+
input[class*="span"],
|
966
|
+
select[class*="span"],
|
967
|
+
textarea[class*="span"],
|
968
|
+
.uneditable-input[class*="span"],
|
969
|
+
.row-fluid input[class*="span"],
|
970
|
+
.row-fluid select[class*="span"],
|
971
|
+
.row-fluid textarea[class*="span"],
|
972
|
+
.row-fluid .uneditable-input[class*="span"] {
|
973
|
+
float: none;
|
974
|
+
margin-left: 0; }
|
975
|
+
|
976
|
+
.input-append input[class*="span"],
|
977
|
+
.input-append .uneditable-input[class*="span"],
|
978
|
+
.input-prepend input[class*="span"],
|
979
|
+
.input-prepend .uneditable-input[class*="span"],
|
980
|
+
.row-fluid input[class*="span"],
|
981
|
+
.row-fluid select[class*="span"],
|
982
|
+
.row-fluid textarea[class*="span"],
|
983
|
+
.row-fluid .uneditable-input[class*="span"],
|
984
|
+
.row-fluid .input-prepend [class*="span"],
|
985
|
+
.row-fluid .input-append [class*="span"] {
|
986
|
+
display: inline-block; }
|
987
|
+
|
988
|
+
input,
|
989
|
+
textarea,
|
990
|
+
.uneditable-input {
|
991
|
+
margin-left: 0; }
|
992
|
+
|
993
|
+
.controls-row [class*="span"] + [class*="span"] {
|
994
|
+
margin-left: 20px; }
|
995
|
+
|
996
|
+
input.span12,
|
997
|
+
textarea.span12,
|
998
|
+
.uneditable-input.span12 {
|
999
|
+
width: 926px; }
|
1000
|
+
|
1001
|
+
input.span11,
|
1002
|
+
textarea.span11,
|
1003
|
+
.uneditable-input.span11 {
|
1004
|
+
width: 846px; }
|
1005
|
+
|
1006
|
+
input.span10,
|
1007
|
+
textarea.span10,
|
1008
|
+
.uneditable-input.span10 {
|
1009
|
+
width: 766px; }
|
1010
|
+
|
1011
|
+
input.span9,
|
1012
|
+
textarea.span9,
|
1013
|
+
.uneditable-input.span9 {
|
1014
|
+
width: 686px; }
|
1015
|
+
|
1016
|
+
input.span8,
|
1017
|
+
textarea.span8,
|
1018
|
+
.uneditable-input.span8 {
|
1019
|
+
width: 606px; }
|
1020
|
+
|
1021
|
+
input.span7,
|
1022
|
+
textarea.span7,
|
1023
|
+
.uneditable-input.span7 {
|
1024
|
+
width: 526px; }
|
1025
|
+
|
1026
|
+
input.span6,
|
1027
|
+
textarea.span6,
|
1028
|
+
.uneditable-input.span6 {
|
1029
|
+
width: 446px; }
|
1030
|
+
|
1031
|
+
input.span5,
|
1032
|
+
textarea.span5,
|
1033
|
+
.uneditable-input.span5 {
|
1034
|
+
width: 366px; }
|
1035
|
+
|
1036
|
+
input.span4,
|
1037
|
+
textarea.span4,
|
1038
|
+
.uneditable-input.span4 {
|
1039
|
+
width: 286px; }
|
1040
|
+
|
1041
|
+
input.span3,
|
1042
|
+
textarea.span3,
|
1043
|
+
.uneditable-input.span3 {
|
1044
|
+
width: 206px; }
|
1045
|
+
|
1046
|
+
input.span2,
|
1047
|
+
textarea.span2,
|
1048
|
+
.uneditable-input.span2 {
|
1049
|
+
width: 126px; }
|
1050
|
+
|
1051
|
+
input.span1,
|
1052
|
+
textarea.span1,
|
1053
|
+
.uneditable-input.span1 {
|
1054
|
+
width: 46px; }
|
1055
|
+
|
1056
|
+
.controls-row {
|
1057
|
+
*zoom: 1; }
|
1058
|
+
.controls-row:before, .controls-row:after {
|
1059
|
+
display: table;
|
1060
|
+
content: "";
|
1061
|
+
line-height: 0; }
|
1062
|
+
.controls-row:after {
|
1063
|
+
clear: both; }
|
1064
|
+
|
1065
|
+
.controls-row [class*="span"],
|
1066
|
+
.row-fluid .controls-row [class*="span"] {
|
1067
|
+
float: left; }
|
1068
|
+
|
1069
|
+
.controls-row .checkbox[class*="span"],
|
1070
|
+
.controls-row .radio[class*="span"] {
|
1071
|
+
padding-top: 5px; }
|
1072
|
+
|
1073
|
+
input[disabled],
|
1074
|
+
select[disabled],
|
1075
|
+
textarea[disabled],
|
1076
|
+
input[readonly],
|
1077
|
+
select[readonly],
|
1078
|
+
textarea[readonly] {
|
1079
|
+
cursor: not-allowed;
|
1080
|
+
background-color: #eeeeee; }
|
1081
|
+
|
1082
|
+
input[type="radio"][disabled],
|
1083
|
+
input[type="checkbox"][disabled],
|
1084
|
+
input[type="radio"][readonly],
|
1085
|
+
input[type="checkbox"][readonly] {
|
1086
|
+
background-color: transparent; }
|
1087
|
+
|
1088
|
+
.control-group.warning .control-label,
|
1089
|
+
.control-group.warning .help-block,
|
1090
|
+
.control-group.warning .help-inline {
|
1091
|
+
color: #c09853; }
|
1092
|
+
.control-group.warning .checkbox,
|
1093
|
+
.control-group.warning .radio,
|
1094
|
+
.control-group.warning input,
|
1095
|
+
.control-group.warning select,
|
1096
|
+
.control-group.warning textarea {
|
1097
|
+
color: #c09853; }
|
1098
|
+
.control-group.warning input,
|
1099
|
+
.control-group.warning select,
|
1100
|
+
.control-group.warning textarea {
|
1101
|
+
border-color: #c09853;
|
1102
|
+
-webkit-box-shadow: none;
|
1103
|
+
-moz-box-shadow: none;
|
1104
|
+
box-shadow: none; }
|
1105
|
+
.control-group.warning input:focus,
|
1106
|
+
.control-group.warning select:focus,
|
1107
|
+
.control-group.warning textarea:focus {
|
1108
|
+
border-color: #a47e3c;
|
1109
|
+
-webkit-box-shadow: none;
|
1110
|
+
-moz-box-shadow: none;
|
1111
|
+
box-shadow: none; }
|
1112
|
+
.control-group.warning .input-prepend .add-on,
|
1113
|
+
.control-group.warning .input-append .add-on {
|
1114
|
+
color: #c09853;
|
1115
|
+
background-color: #fcf8e3;
|
1116
|
+
border-color: #c09853; }
|
1117
|
+
|
1118
|
+
.control-group.error .control-label,
|
1119
|
+
.control-group.error .help-block,
|
1120
|
+
.control-group.error .help-inline {
|
1121
|
+
color: #b94a48; }
|
1122
|
+
.control-group.error .checkbox,
|
1123
|
+
.control-group.error .radio,
|
1124
|
+
.control-group.error input,
|
1125
|
+
.control-group.error select,
|
1126
|
+
.control-group.error textarea {
|
1127
|
+
color: #b94a48; }
|
1128
|
+
.control-group.error input,
|
1129
|
+
.control-group.error select,
|
1130
|
+
.control-group.error textarea {
|
1131
|
+
border-color: #b94a48;
|
1132
|
+
-webkit-box-shadow: none;
|
1133
|
+
-moz-box-shadow: none;
|
1134
|
+
box-shadow: none; }
|
1135
|
+
.control-group.error input:focus,
|
1136
|
+
.control-group.error select:focus,
|
1137
|
+
.control-group.error textarea:focus {
|
1138
|
+
border-color: #953b39;
|
1139
|
+
-webkit-box-shadow: none;
|
1140
|
+
-moz-box-shadow: none;
|
1141
|
+
box-shadow: none; }
|
1142
|
+
.control-group.error .input-prepend .add-on,
|
1143
|
+
.control-group.error .input-append .add-on {
|
1144
|
+
color: #b94a48;
|
1145
|
+
background-color: #f2dede;
|
1146
|
+
border-color: #b94a48; }
|
1147
|
+
|
1148
|
+
.control-group.success .control-label,
|
1149
|
+
.control-group.success .help-block,
|
1150
|
+
.control-group.success .help-inline {
|
1151
|
+
color: #468847; }
|
1152
|
+
.control-group.success .checkbox,
|
1153
|
+
.control-group.success .radio,
|
1154
|
+
.control-group.success input,
|
1155
|
+
.control-group.success select,
|
1156
|
+
.control-group.success textarea {
|
1157
|
+
color: #468847; }
|
1158
|
+
.control-group.success input,
|
1159
|
+
.control-group.success select,
|
1160
|
+
.control-group.success textarea {
|
1161
|
+
border-color: #468847;
|
1162
|
+
-webkit-box-shadow: none;
|
1163
|
+
-moz-box-shadow: none;
|
1164
|
+
box-shadow: none; }
|
1165
|
+
.control-group.success input:focus,
|
1166
|
+
.control-group.success select:focus,
|
1167
|
+
.control-group.success textarea:focus {
|
1168
|
+
border-color: #356635;
|
1169
|
+
-webkit-box-shadow: none;
|
1170
|
+
-moz-box-shadow: none;
|
1171
|
+
box-shadow: none; }
|
1172
|
+
.control-group.success .input-prepend .add-on,
|
1173
|
+
.control-group.success .input-append .add-on {
|
1174
|
+
color: #468847;
|
1175
|
+
background-color: #dff0d8;
|
1176
|
+
border-color: #468847; }
|
1177
|
+
|
1178
|
+
.control-group.info .control-label,
|
1179
|
+
.control-group.info .help-block,
|
1180
|
+
.control-group.info .help-inline {
|
1181
|
+
color: #3a87ad; }
|
1182
|
+
.control-group.info .checkbox,
|
1183
|
+
.control-group.info .radio,
|
1184
|
+
.control-group.info input,
|
1185
|
+
.control-group.info select,
|
1186
|
+
.control-group.info textarea {
|
1187
|
+
color: #3a87ad; }
|
1188
|
+
.control-group.info input,
|
1189
|
+
.control-group.info select,
|
1190
|
+
.control-group.info textarea {
|
1191
|
+
border-color: #3a87ad;
|
1192
|
+
-webkit-box-shadow: none;
|
1193
|
+
-moz-box-shadow: none;
|
1194
|
+
box-shadow: none; }
|
1195
|
+
.control-group.info input:focus,
|
1196
|
+
.control-group.info select:focus,
|
1197
|
+
.control-group.info textarea:focus {
|
1198
|
+
border-color: #2d6987;
|
1199
|
+
-webkit-box-shadow: none;
|
1200
|
+
-moz-box-shadow: none;
|
1201
|
+
box-shadow: none; }
|
1202
|
+
.control-group.info .input-prepend .add-on,
|
1203
|
+
.control-group.info .input-append .add-on {
|
1204
|
+
color: #3a87ad;
|
1205
|
+
background-color: #d9edf7;
|
1206
|
+
border-color: #3a87ad; }
|
1207
|
+
|
1208
|
+
input:focus:invalid,
|
1209
|
+
textarea:focus:invalid,
|
1210
|
+
select:focus:invalid {
|
1211
|
+
color: #b94a48;
|
1212
|
+
border-color: #ee5f5b; }
|
1213
|
+
input:focus:invalid:focus,
|
1214
|
+
textarea:focus:invalid:focus,
|
1215
|
+
select:focus:invalid:focus {
|
1216
|
+
border-color: #e9322d;
|
1217
|
+
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
1218
|
+
-moz-box-shadow: 0 0 6px #f8b9b7;
|
1219
|
+
box-shadow: 0 0 6px #f8b9b7; }
|
1220
|
+
|
1221
|
+
.form-actions {
|
1222
|
+
padding: 19px 20px 20px;
|
1223
|
+
margin-top: 20px;
|
1224
|
+
margin-bottom: 20px;
|
1225
|
+
background-color: whitesmoke;
|
1226
|
+
border-top: 1px solid #e5e5e5;
|
1227
|
+
*zoom: 1; }
|
1228
|
+
.form-actions:before, .form-actions:after {
|
1229
|
+
display: table;
|
1230
|
+
content: "";
|
1231
|
+
line-height: 0; }
|
1232
|
+
.form-actions:after {
|
1233
|
+
clear: both; }
|
1234
|
+
|
1235
|
+
.help-block,
|
1236
|
+
.help-inline {
|
1237
|
+
color: #595959; }
|
1238
|
+
|
1239
|
+
.help-block {
|
1240
|
+
display: block;
|
1241
|
+
margin-bottom: 10px; }
|
1242
|
+
|
1243
|
+
.help-inline {
|
1244
|
+
display: inline-block;
|
1245
|
+
*display: inline;
|
1246
|
+
/* IE7 inline-block hack */
|
1247
|
+
*zoom: 1;
|
1248
|
+
vertical-align: middle;
|
1249
|
+
padding-left: 5px; }
|
1250
|
+
|
1251
|
+
.input-append,
|
1252
|
+
.input-prepend {
|
1253
|
+
display: inline-block;
|
1254
|
+
margin-bottom: 10px;
|
1255
|
+
vertical-align: middle;
|
1256
|
+
font-size: 0;
|
1257
|
+
white-space: nowrap; }
|
1258
|
+
.input-append input,
|
1259
|
+
.input-append select,
|
1260
|
+
.input-append .uneditable-input,
|
1261
|
+
.input-append .dropdown-menu,
|
1262
|
+
.input-append .popover,
|
1263
|
+
.input-prepend input,
|
1264
|
+
.input-prepend select,
|
1265
|
+
.input-prepend .uneditable-input,
|
1266
|
+
.input-prepend .dropdown-menu,
|
1267
|
+
.input-prepend .popover {
|
1268
|
+
font-size: 14px; }
|
1269
|
+
.input-append input,
|
1270
|
+
.input-append select,
|
1271
|
+
.input-append .uneditable-input,
|
1272
|
+
.input-prepend input,
|
1273
|
+
.input-prepend select,
|
1274
|
+
.input-prepend .uneditable-input {
|
1275
|
+
position: relative;
|
1276
|
+
margin-bottom: 0;
|
1277
|
+
*margin-left: 0;
|
1278
|
+
vertical-align: top; }
|
1279
|
+
.input-append input:focus,
|
1280
|
+
.input-append select:focus,
|
1281
|
+
.input-append .uneditable-input:focus,
|
1282
|
+
.input-prepend input:focus,
|
1283
|
+
.input-prepend select:focus,
|
1284
|
+
.input-prepend .uneditable-input:focus {
|
1285
|
+
z-index: 2; }
|
1286
|
+
.input-append .add-on,
|
1287
|
+
.input-prepend .add-on {
|
1288
|
+
display: inline-block;
|
1289
|
+
width: auto;
|
1290
|
+
height: 20px;
|
1291
|
+
min-width: 16px;
|
1292
|
+
padding: 4px 5px;
|
1293
|
+
font-size: 14px;
|
1294
|
+
font-weight: normal;
|
1295
|
+
line-height: 20px;
|
1296
|
+
text-align: center;
|
1297
|
+
text-shadow: 0 1px 0 white;
|
1298
|
+
background-color: #eeeeee;
|
1299
|
+
border: 1px solid #ccc; }
|
1300
|
+
.input-append .add-on,
|
1301
|
+
.input-append .btn,
|
1302
|
+
.input-append .btn-group > .dropdown-toggle,
|
1303
|
+
.input-prepend .add-on,
|
1304
|
+
.input-prepend .btn,
|
1305
|
+
.input-prepend .btn-group > .dropdown-toggle {
|
1306
|
+
vertical-align: top; }
|
1307
|
+
.input-append .active,
|
1308
|
+
.input-prepend .active {
|
1309
|
+
background-color: #a9dba9;
|
1310
|
+
border-color: #46a546; }
|
1311
|
+
|
1312
|
+
.input-prepend .add-on,
|
1313
|
+
.input-prepend .btn {
|
1314
|
+
margin-right: -1px; }
|
1315
|
+
|
1316
|
+
.input-append .add-on,
|
1317
|
+
.input-append .btn,
|
1318
|
+
.input-append .btn-group {
|
1319
|
+
margin-left: -1px; }
|
1320
|
+
|
1321
|
+
.input-prepend.input-append .add-on:first-child,
|
1322
|
+
.input-prepend.input-append .btn:first-child {
|
1323
|
+
margin-right: -1px; }
|
1324
|
+
.input-prepend.input-append .add-on:last-child,
|
1325
|
+
.input-prepend.input-append .btn:last-child {
|
1326
|
+
margin-left: -1px; }
|
1327
|
+
.input-prepend.input-append .btn-group:first-child {
|
1328
|
+
margin-left: 0; }
|
1329
|
+
|
1330
|
+
input.search-query {
|
1331
|
+
padding-right: 14px;
|
1332
|
+
padding-right: 4px \9;
|
1333
|
+
padding-left: 14px;
|
1334
|
+
padding-left: 4px \9;
|
1335
|
+
/* IE7-8 doesn't have border-radius, so don't indent the padding */
|
1336
|
+
margin-bottom: 0; }
|
1337
|
+
|
1338
|
+
.form-search input,
|
1339
|
+
.form-search textarea,
|
1340
|
+
.form-search select,
|
1341
|
+
.form-search .help-inline,
|
1342
|
+
.form-search .uneditable-input,
|
1343
|
+
.form-search .input-prepend,
|
1344
|
+
.form-search .input-append,
|
1345
|
+
.form-inline input,
|
1346
|
+
.form-inline textarea,
|
1347
|
+
.form-inline select,
|
1348
|
+
.form-inline .help-inline,
|
1349
|
+
.form-inline .uneditable-input,
|
1350
|
+
.form-inline .input-prepend,
|
1351
|
+
.form-inline .input-append,
|
1352
|
+
.form-horizontal input,
|
1353
|
+
.form-horizontal textarea,
|
1354
|
+
.form-horizontal select,
|
1355
|
+
.form-horizontal .help-inline,
|
1356
|
+
.form-horizontal .uneditable-input,
|
1357
|
+
.form-horizontal .input-prepend,
|
1358
|
+
.form-horizontal .input-append {
|
1359
|
+
display: inline-block;
|
1360
|
+
*display: inline;
|
1361
|
+
/* IE7 inline-block hack */
|
1362
|
+
*zoom: 1;
|
1363
|
+
margin-bottom: 0;
|
1364
|
+
vertical-align: middle; }
|
1365
|
+
.form-search .hide,
|
1366
|
+
.form-inline .hide,
|
1367
|
+
.form-horizontal .hide {
|
1368
|
+
display: none; }
|
1369
|
+
|
1370
|
+
.form-search label,
|
1371
|
+
.form-inline label,
|
1372
|
+
.form-search .btn-group,
|
1373
|
+
.form-inline .btn-group {
|
1374
|
+
display: inline-block; }
|
1375
|
+
|
1376
|
+
.form-search .input-append,
|
1377
|
+
.form-inline .input-append,
|
1378
|
+
.form-search .input-prepend,
|
1379
|
+
.form-inline .input-prepend {
|
1380
|
+
margin-bottom: 0; }
|
1381
|
+
|
1382
|
+
.form-search .radio,
|
1383
|
+
.form-search .checkbox,
|
1384
|
+
.form-inline .radio,
|
1385
|
+
.form-inline .checkbox {
|
1386
|
+
padding-left: 0;
|
1387
|
+
margin-bottom: 0;
|
1388
|
+
vertical-align: middle; }
|
1389
|
+
|
1390
|
+
.form-search .radio input[type="radio"],
|
1391
|
+
.form-search .checkbox input[type="checkbox"],
|
1392
|
+
.form-inline .radio input[type="radio"],
|
1393
|
+
.form-inline .checkbox input[type="checkbox"] {
|
1394
|
+
float: left;
|
1395
|
+
margin-right: 3px;
|
1396
|
+
margin-left: 0; }
|
1397
|
+
|
1398
|
+
.control-group {
|
1399
|
+
margin-bottom: 10px; }
|
1400
|
+
|
1401
|
+
legend + .control-group {
|
1402
|
+
margin-top: 20px;
|
1403
|
+
-webkit-margin-top-collapse: separate; }
|
1404
|
+
|
1405
|
+
.form-horizontal .control-group {
|
1406
|
+
margin-bottom: 20px;
|
1407
|
+
*zoom: 1; }
|
1408
|
+
.form-horizontal .control-group:before, .form-horizontal .control-group:after {
|
1409
|
+
display: table;
|
1410
|
+
content: "";
|
1411
|
+
line-height: 0; }
|
1412
|
+
.form-horizontal .control-group:after {
|
1413
|
+
clear: both; }
|
1414
|
+
.form-horizontal .control-label {
|
1415
|
+
float: left;
|
1416
|
+
width: 160px;
|
1417
|
+
padding-top: 5px;
|
1418
|
+
text-align: right; }
|
1419
|
+
.form-horizontal .controls {
|
1420
|
+
*display: inline-block;
|
1421
|
+
*padding-left: 20px;
|
1422
|
+
margin-left: 180px;
|
1423
|
+
*margin-left: 0; }
|
1424
|
+
.form-horizontal .controls:first-child {
|
1425
|
+
*padding-left: 180px; }
|
1426
|
+
.form-horizontal .help-block {
|
1427
|
+
margin-bottom: 0; }
|
1428
|
+
.form-horizontal input + .help-block,
|
1429
|
+
.form-horizontal select + .help-block,
|
1430
|
+
.form-horizontal textarea + .help-block,
|
1431
|
+
.form-horizontal .uneditable-input + .help-block,
|
1432
|
+
.form-horizontal .input-prepend + .help-block,
|
1433
|
+
.form-horizontal .input-append + .help-block {
|
1434
|
+
margin-top: 10px; }
|
1435
|
+
.form-horizontal .form-actions {
|
1436
|
+
padding-left: 180px; }
|
1437
|
+
|
1438
|
+
table {
|
1439
|
+
max-width: 100%;
|
1440
|
+
background-color: transparent;
|
1441
|
+
border-collapse: collapse;
|
1442
|
+
border-spacing: 0; }
|
1443
|
+
|
1444
|
+
.table {
|
1445
|
+
width: 100%;
|
1446
|
+
margin-bottom: 20px; }
|
1447
|
+
.table th,
|
1448
|
+
.table td {
|
1449
|
+
padding: 8px;
|
1450
|
+
line-height: 20px;
|
1451
|
+
text-align: left;
|
1452
|
+
vertical-align: top;
|
1453
|
+
border-top: 1px solid #dddddd; }
|
1454
|
+
.table th {
|
1455
|
+
font-weight: bold; }
|
1456
|
+
.table thead th {
|
1457
|
+
vertical-align: bottom; }
|
1458
|
+
.table caption + thead tr:first-child th,
|
1459
|
+
.table caption + thead tr:first-child td,
|
1460
|
+
.table colgroup + thead tr:first-child th,
|
1461
|
+
.table colgroup + thead tr:first-child td,
|
1462
|
+
.table thead:first-child tr:first-child th,
|
1463
|
+
.table thead:first-child tr:first-child td {
|
1464
|
+
border-top: 0; }
|
1465
|
+
.table tbody + tbody {
|
1466
|
+
border-top: 2px solid #dddddd; }
|
1467
|
+
.table .table {
|
1468
|
+
background-color: white; }
|
1469
|
+
|
1470
|
+
.table-condensed th,
|
1471
|
+
.table-condensed td {
|
1472
|
+
padding: 4px 5px; }
|
1473
|
+
|
1474
|
+
.table-bordered {
|
1475
|
+
border: 1px solid #dddddd;
|
1476
|
+
border-collapse: separate;
|
1477
|
+
*border-collapse: collapse;
|
1478
|
+
border-left: 0; }
|
1479
|
+
.table-bordered th,
|
1480
|
+
.table-bordered td {
|
1481
|
+
border-left: 1px solid #dddddd; }
|
1482
|
+
.table-bordered caption + thead tr:first-child th,
|
1483
|
+
.table-bordered caption + tbody tr:first-child th,
|
1484
|
+
.table-bordered caption + tbody tr:first-child td,
|
1485
|
+
.table-bordered colgroup + thead tr:first-child th,
|
1486
|
+
.table-bordered colgroup + tbody tr:first-child th,
|
1487
|
+
.table-bordered colgroup + tbody tr:first-child td,
|
1488
|
+
.table-bordered thead:first-child tr:first-child th,
|
1489
|
+
.table-bordered tbody:first-child tr:first-child th,
|
1490
|
+
.table-bordered tbody:first-child tr:first-child td {
|
1491
|
+
border-top: 0; }
|
1492
|
+
|
1493
|
+
.table-striped tbody > tr:nth-child(odd) > td,
|
1494
|
+
.table-striped tbody > tr:nth-child(odd) > th {
|
1495
|
+
background-color: #f9f9f9; }
|
1496
|
+
|
1497
|
+
.table-hover tbody tr:hover > td,
|
1498
|
+
.table-hover tbody tr:hover > th {
|
1499
|
+
background-color: whitesmoke; }
|
1500
|
+
|
1501
|
+
table td[class*="span"],
|
1502
|
+
table th[class*="span"],
|
1503
|
+
.row-fluid table td[class*="span"],
|
1504
|
+
.row-fluid table th[class*="span"] {
|
1505
|
+
display: table-cell;
|
1506
|
+
float: none;
|
1507
|
+
margin-left: 0; }
|
1508
|
+
|
1509
|
+
.table td.span1,
|
1510
|
+
.table th.span1 {
|
1511
|
+
float: none;
|
1512
|
+
width: 44px;
|
1513
|
+
margin-left: 0; }
|
1514
|
+
.table td.span2,
|
1515
|
+
.table th.span2 {
|
1516
|
+
float: none;
|
1517
|
+
width: 124px;
|
1518
|
+
margin-left: 0; }
|
1519
|
+
.table td.span3,
|
1520
|
+
.table th.span3 {
|
1521
|
+
float: none;
|
1522
|
+
width: 204px;
|
1523
|
+
margin-left: 0; }
|
1524
|
+
.table td.span4,
|
1525
|
+
.table th.span4 {
|
1526
|
+
float: none;
|
1527
|
+
width: 284px;
|
1528
|
+
margin-left: 0; }
|
1529
|
+
.table td.span5,
|
1530
|
+
.table th.span5 {
|
1531
|
+
float: none;
|
1532
|
+
width: 364px;
|
1533
|
+
margin-left: 0; }
|
1534
|
+
.table td.span6,
|
1535
|
+
.table th.span6 {
|
1536
|
+
float: none;
|
1537
|
+
width: 444px;
|
1538
|
+
margin-left: 0; }
|
1539
|
+
.table td.span7,
|
1540
|
+
.table th.span7 {
|
1541
|
+
float: none;
|
1542
|
+
width: 524px;
|
1543
|
+
margin-left: 0; }
|
1544
|
+
.table td.span8,
|
1545
|
+
.table th.span8 {
|
1546
|
+
float: none;
|
1547
|
+
width: 604px;
|
1548
|
+
margin-left: 0; }
|
1549
|
+
.table td.span9,
|
1550
|
+
.table th.span9 {
|
1551
|
+
float: none;
|
1552
|
+
width: 684px;
|
1553
|
+
margin-left: 0; }
|
1554
|
+
.table td.span10,
|
1555
|
+
.table th.span10 {
|
1556
|
+
float: none;
|
1557
|
+
width: 764px;
|
1558
|
+
margin-left: 0; }
|
1559
|
+
.table td.span11,
|
1560
|
+
.table th.span11 {
|
1561
|
+
float: none;
|
1562
|
+
width: 844px;
|
1563
|
+
margin-left: 0; }
|
1564
|
+
.table td.span12,
|
1565
|
+
.table th.span12 {
|
1566
|
+
float: none;
|
1567
|
+
width: 924px;
|
1568
|
+
margin-left: 0; }
|
1569
|
+
|
1570
|
+
.table tbody tr.success > td {
|
1571
|
+
background-color: #dff0d8; }
|
1572
|
+
.table tbody tr.error > td {
|
1573
|
+
background-color: #f2dede; }
|
1574
|
+
.table tbody tr.warning > td {
|
1575
|
+
background-color: #fcf8e3; }
|
1576
|
+
.table tbody tr.info > td {
|
1577
|
+
background-color: #d9edf7; }
|
1578
|
+
|
1579
|
+
.table-hover tbody tr.success:hover > td {
|
1580
|
+
background-color: #d0e9c6; }
|
1581
|
+
.table-hover tbody tr.error:hover > td {
|
1582
|
+
background-color: #ebcccc; }
|
1583
|
+
.table-hover tbody tr.warning:hover > td {
|
1584
|
+
background-color: #faf2cc; }
|
1585
|
+
.table-hover tbody tr.info:hover > td {
|
1586
|
+
background-color: #c4e3f3; }
|
1587
|
+
|
1588
|
+
/*!
|
1589
|
+
* Font Awesome 3.0.2
|
1590
|
+
* the iconic font designed for use with Twitter Bootstrap
|
1591
|
+
* -------------------------------------------------------
|
1592
|
+
* The full suite of pictographic icons, examples, and documentation
|
1593
|
+
* can be found at: http://fortawesome.github.com/Font-Awesome/
|
1594
|
+
*
|
1595
|
+
* License
|
1596
|
+
* -------------------------------------------------------
|
1597
|
+
* - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
|
1598
|
+
* - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
|
1599
|
+
* http://opensource.org/licenses/mit-license.html
|
1600
|
+
* - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
|
1601
|
+
* - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
|
1602
|
+
* "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
|
1603
|
+
*
|
1604
|
+
* Contact
|
1605
|
+
* -------------------------------------------------------
|
1606
|
+
* Email: dave@davegandy.com
|
1607
|
+
* Twitter: http://twitter.com/fortaweso_me
|
1608
|
+
* Work: Lead Product Designer @ http://kyruus.com
|
1609
|
+
*/
|
1610
|
+
@font-face {
|
1611
|
+
font-family: 'FontAwesome';
|
1612
|
+
src: url("/fonts/fontawesome-webfont.eot?v=3.0.1");
|
1613
|
+
src: url("/fonts/fontawesome-webfont.eot?#iefix&v=3.0.1") format("embedded-opentype"), url("/fonts/fontawesome-webfont.woff?v=3.0.1") format("woff"), url("/fonts/fontawesome-webfont.ttf?v=3.0.1") format("truetype");
|
1614
|
+
font-weight: normal;
|
1615
|
+
font-style: normal; }
|
1616
|
+
|
1617
|
+
/* Font Awesome styles
|
1618
|
+
------------------------------------------------------- */
|
1619
|
+
[class^="icon-"],
|
1620
|
+
[class*=" icon-"] {
|
1621
|
+
font-family: FontAwesome;
|
1622
|
+
font-weight: normal;
|
1623
|
+
font-style: normal;
|
1624
|
+
text-decoration: inherit;
|
1625
|
+
-webkit-font-smoothing: antialiased;
|
1626
|
+
/* sprites.less reset */
|
1627
|
+
display: inline;
|
1628
|
+
width: auto;
|
1629
|
+
height: auto;
|
1630
|
+
line-height: normal;
|
1631
|
+
vertical-align: baseline;
|
1632
|
+
background-image: none;
|
1633
|
+
background-position: 0% 0%;
|
1634
|
+
background-repeat: repeat;
|
1635
|
+
margin-top: 0; }
|
1636
|
+
|
1637
|
+
/* more sprites.less reset */
|
1638
|
+
.icon-white,
|
1639
|
+
.nav-pills > .active > a > [class^="icon-"],
|
1640
|
+
.nav-pills > .active > a > [class*=" icon-"],
|
1641
|
+
.nav-list > .active > a > [class^="icon-"],
|
1642
|
+
.nav-list > .active > a > [class*=" icon-"],
|
1643
|
+
.navbar-inverse .nav > .active > a > [class^="icon-"],
|
1644
|
+
.navbar-inverse .nav > .active > a > [class*=" icon-"],
|
1645
|
+
.dropdown-menu > li > a:hover > [class^="icon-"],
|
1646
|
+
.dropdown-menu > li > a:hover > [class*=" icon-"],
|
1647
|
+
.dropdown-menu > .active > a > [class^="icon-"],
|
1648
|
+
.dropdown-menu > .active > a > [class*=" icon-"],
|
1649
|
+
.dropdown-submenu:hover > a > [class^="icon-"],
|
1650
|
+
.dropdown-submenu:hover > a > [class*=" icon-"] {
|
1651
|
+
background-image: none; }
|
1652
|
+
|
1653
|
+
[class^="icon-"]:before,
|
1654
|
+
[class*=" icon-"]:before {
|
1655
|
+
text-decoration: inherit;
|
1656
|
+
display: inline-block;
|
1657
|
+
speak: none; }
|
1658
|
+
|
1659
|
+
/* makes sure icons active on rollover in links */
|
1660
|
+
a [class^="icon-"],
|
1661
|
+
a [class*=" icon-"] {
|
1662
|
+
display: inline-block; }
|
1663
|
+
|
1664
|
+
/* makes the font 33% larger relative to the icon container */
|
1665
|
+
.icon-large:before {
|
1666
|
+
vertical-align: -10%;
|
1667
|
+
font-size: 1.3333333333333333em; }
|
1668
|
+
|
1669
|
+
.btn [class^="icon-"],
|
1670
|
+
.btn [class*=" icon-"], .nav [class^="icon-"],
|
1671
|
+
.nav [class*=" icon-"] {
|
1672
|
+
display: inline;
|
1673
|
+
/* keeps button heights with and without icons the same */ }
|
1674
|
+
.btn [class^="icon-"].icon-large,
|
1675
|
+
.btn [class*=" icon-"].icon-large, .nav [class^="icon-"].icon-large,
|
1676
|
+
.nav [class*=" icon-"].icon-large {
|
1677
|
+
line-height: .9em; }
|
1678
|
+
.btn [class^="icon-"].icon-spin,
|
1679
|
+
.btn [class*=" icon-"].icon-spin, .nav [class^="icon-"].icon-spin,
|
1680
|
+
.nav [class*=" icon-"].icon-spin {
|
1681
|
+
display: inline-block; }
|
1682
|
+
|
1683
|
+
.nav-tabs [class^="icon-"],
|
1684
|
+
.nav-tabs [class*=" icon-"], .nav-pills [class^="icon-"],
|
1685
|
+
.nav-pills [class*=" icon-"] {
|
1686
|
+
/* keeps button heights with and without icons the same */ }
|
1687
|
+
.nav-tabs [class^="icon-"], .nav-tabs [class^="icon-"].icon-large,
|
1688
|
+
.nav-tabs [class*=" icon-"],
|
1689
|
+
.nav-tabs [class*=" icon-"].icon-large, .nav-pills [class^="icon-"], .nav-pills [class^="icon-"].icon-large,
|
1690
|
+
.nav-pills [class*=" icon-"],
|
1691
|
+
.nav-pills [class*=" icon-"].icon-large {
|
1692
|
+
line-height: .9em; }
|
1693
|
+
|
1694
|
+
li [class^="icon-"],
|
1695
|
+
li [class*=" icon-"], .nav li [class^="icon-"],
|
1696
|
+
.nav li [class*=" icon-"] {
|
1697
|
+
display: inline-block;
|
1698
|
+
width: 1.25em;
|
1699
|
+
text-align: center; }
|
1700
|
+
li [class^="icon-"].icon-large,
|
1701
|
+
li [class*=" icon-"].icon-large, .nav li [class^="icon-"].icon-large,
|
1702
|
+
.nav li [class*=" icon-"].icon-large {
|
1703
|
+
/* increased font size for icon-large */
|
1704
|
+
width: 1.5625em; }
|
1705
|
+
|
1706
|
+
ul.icons {
|
1707
|
+
list-style-type: none;
|
1708
|
+
text-indent: -.75em; }
|
1709
|
+
ul.icons li [class^="icon-"],
|
1710
|
+
ul.icons li [class*=" icon-"] {
|
1711
|
+
width: .75em; }
|
1712
|
+
|
1713
|
+
.icon-muted {
|
1714
|
+
color: #eeeeee; }
|
1715
|
+
|
1716
|
+
.icon-border {
|
1717
|
+
border: solid 1px #eeeeee;
|
1718
|
+
padding: .2em .25em .15em;
|
1719
|
+
-webkit-border-radius: 3px;
|
1720
|
+
-moz-border-radius: 3px;
|
1721
|
+
border-radius: 3px; }
|
1722
|
+
|
1723
|
+
.icon-2x {
|
1724
|
+
font-size: 2em; }
|
1725
|
+
.icon-2x.icon-border {
|
1726
|
+
border-width: 2px;
|
1727
|
+
-webkit-border-radius: 4px;
|
1728
|
+
-moz-border-radius: 4px;
|
1729
|
+
border-radius: 4px; }
|
1730
|
+
|
1731
|
+
.icon-3x {
|
1732
|
+
font-size: 3em; }
|
1733
|
+
.icon-3x.icon-border {
|
1734
|
+
border-width: 3px;
|
1735
|
+
-webkit-border-radius: 5px;
|
1736
|
+
-moz-border-radius: 5px;
|
1737
|
+
border-radius: 5px; }
|
1738
|
+
|
1739
|
+
.icon-4x {
|
1740
|
+
font-size: 4em; }
|
1741
|
+
.icon-4x.icon-border {
|
1742
|
+
border-width: 4px;
|
1743
|
+
-webkit-border-radius: 6px;
|
1744
|
+
-moz-border-radius: 6px;
|
1745
|
+
border-radius: 6px; }
|
1746
|
+
|
1747
|
+
.pull-right {
|
1748
|
+
float: right; }
|
1749
|
+
|
1750
|
+
.pull-left {
|
1751
|
+
float: left; }
|
1752
|
+
|
1753
|
+
[class^="icon-"].pull-left,
|
1754
|
+
[class*=" icon-"].pull-left {
|
1755
|
+
margin-right: .3em; }
|
1756
|
+
[class^="icon-"].pull-right,
|
1757
|
+
[class*=" icon-"].pull-right {
|
1758
|
+
margin-left: .3em; }
|
1759
|
+
|
1760
|
+
.btn [class^="icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x,
|
1761
|
+
.btn [class*=" icon-"].pull-left.icon-2x,
|
1762
|
+
.btn [class*=" icon-"].pull-right.icon-2x {
|
1763
|
+
margin-top: .18em; }
|
1764
|
+
.btn [class^="icon-"].icon-spin.icon-large,
|
1765
|
+
.btn [class*=" icon-"].icon-spin.icon-large {
|
1766
|
+
line-height: .8em; }
|
1767
|
+
|
1768
|
+
.btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x,
|
1769
|
+
.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
|
1770
|
+
.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
|
1771
|
+
margin-top: .25em; }
|
1772
|
+
|
1773
|
+
.btn.btn-large [class^="icon-"],
|
1774
|
+
.btn.btn-large [class*=" icon-"] {
|
1775
|
+
margin-top: 0; }
|
1776
|
+
.btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x,
|
1777
|
+
.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
|
1778
|
+
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
|
1779
|
+
margin-top: .05em; }
|
1780
|
+
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
|
1781
|
+
.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
|
1782
|
+
margin-right: .2em; }
|
1783
|
+
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
|
1784
|
+
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
|
1785
|
+
margin-left: .2em; }
|
1786
|
+
|
1787
|
+
.icon-spin {
|
1788
|
+
display: inline-block;
|
1789
|
+
-moz-animation: spin 2s infinite linear;
|
1790
|
+
-o-animation: spin 2s infinite linear;
|
1791
|
+
-webkit-animation: spin 2s infinite linear;
|
1792
|
+
animation: spin 2s infinite linear; }
|
1793
|
+
|
1794
|
+
@-moz-keyframes spin {
|
1795
|
+
0% {
|
1796
|
+
-moz-transform: rotate(0deg); }
|
1797
|
+
|
1798
|
+
100% {
|
1799
|
+
-moz-transform: rotate(359deg); } }
|
1800
|
+
|
1801
|
+
@-webkit-keyframes spin {
|
1802
|
+
0% {
|
1803
|
+
-webkit-transform: rotate(0deg); }
|
1804
|
+
|
1805
|
+
100% {
|
1806
|
+
-webkit-transform: rotate(359deg); } }
|
1807
|
+
|
1808
|
+
@-o-keyframes spin {
|
1809
|
+
0% {
|
1810
|
+
-o-transform: rotate(0deg); }
|
1811
|
+
|
1812
|
+
100% {
|
1813
|
+
-o-transform: rotate(359deg); } }
|
1814
|
+
|
1815
|
+
@-ms-keyframes spin {
|
1816
|
+
0% {
|
1817
|
+
-ms-transform: rotate(0deg); }
|
1818
|
+
|
1819
|
+
100% {
|
1820
|
+
-ms-transform: rotate(359deg); } }
|
1821
|
+
|
1822
|
+
@keyframes spin {
|
1823
|
+
0% {
|
1824
|
+
transform: rotate(0deg); }
|
1825
|
+
|
1826
|
+
100% {
|
1827
|
+
transform: rotate(359deg); } }
|
1828
|
+
|
1829
|
+
@-moz-document url-prefix() {
|
1830
|
+
.icon-spin {
|
1831
|
+
height: .9em; }
|
1832
|
+
|
1833
|
+
.btn .icon-spin {
|
1834
|
+
height: auto; }
|
1835
|
+
|
1836
|
+
.icon-spin.icon-large {
|
1837
|
+
height: 1.25em; }
|
1838
|
+
|
1839
|
+
.btn .icon-spin.icon-large {
|
1840
|
+
height: .75em; } }
|
1841
|
+
|
1842
|
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
1843
|
+
readers do not read off random characters that represent icons */
|
1844
|
+
.icon-glass:before {
|
1845
|
+
content: "\f000"; }
|
1846
|
+
|
1847
|
+
.icon-music:before {
|
1848
|
+
content: "\f001"; }
|
1849
|
+
|
1850
|
+
.icon-search:before {
|
1851
|
+
content: "\f002"; }
|
1852
|
+
|
1853
|
+
.icon-envelope:before {
|
1854
|
+
content: "\f003"; }
|
1855
|
+
|
1856
|
+
.icon-heart:before {
|
1857
|
+
content: "\f004"; }
|
1858
|
+
|
1859
|
+
.icon-star:before {
|
1860
|
+
content: "\f005"; }
|
1861
|
+
|
1862
|
+
.icon-star-empty:before {
|
1863
|
+
content: "\f006"; }
|
1864
|
+
|
1865
|
+
.icon-user:before {
|
1866
|
+
content: "\f007"; }
|
1867
|
+
|
1868
|
+
.icon-film:before {
|
1869
|
+
content: "\f008"; }
|
1870
|
+
|
1871
|
+
.icon-th-large:before {
|
1872
|
+
content: "\f009"; }
|
1873
|
+
|
1874
|
+
.icon-th:before {
|
1875
|
+
content: "\f00a"; }
|
1876
|
+
|
1877
|
+
.icon-th-list:before {
|
1878
|
+
content: "\f00b"; }
|
1879
|
+
|
1880
|
+
.icon-ok:before {
|
1881
|
+
content: "\f00c"; }
|
1882
|
+
|
1883
|
+
.icon-remove:before {
|
1884
|
+
content: "\f00d"; }
|
1885
|
+
|
1886
|
+
.icon-zoom-in:before {
|
1887
|
+
content: "\f00e"; }
|
1888
|
+
|
1889
|
+
.icon-zoom-out:before {
|
1890
|
+
content: "\f010"; }
|
1891
|
+
|
1892
|
+
.icon-off:before {
|
1893
|
+
content: "\f011"; }
|
1894
|
+
|
1895
|
+
.icon-signal:before {
|
1896
|
+
content: "\f012"; }
|
1897
|
+
|
1898
|
+
.icon-cog:before {
|
1899
|
+
content: "\f013"; }
|
1900
|
+
|
1901
|
+
.icon-trash:before {
|
1902
|
+
content: "\f014"; }
|
1903
|
+
|
1904
|
+
.icon-home:before {
|
1905
|
+
content: "\f015"; }
|
1906
|
+
|
1907
|
+
.icon-file:before {
|
1908
|
+
content: "\f016"; }
|
1909
|
+
|
1910
|
+
.icon-time:before {
|
1911
|
+
content: "\f017"; }
|
1912
|
+
|
1913
|
+
.icon-road:before {
|
1914
|
+
content: "\f018"; }
|
1915
|
+
|
1916
|
+
.icon-download-alt:before {
|
1917
|
+
content: "\f019"; }
|
1918
|
+
|
1919
|
+
.icon-download:before {
|
1920
|
+
content: "\f01a"; }
|
1921
|
+
|
1922
|
+
.icon-upload:before {
|
1923
|
+
content: "\f01b"; }
|
1924
|
+
|
1925
|
+
.icon-inbox:before {
|
1926
|
+
content: "\f01c"; }
|
1927
|
+
|
1928
|
+
.icon-play-circle:before {
|
1929
|
+
content: "\f01d"; }
|
1930
|
+
|
1931
|
+
.icon-repeat:before {
|
1932
|
+
content: "\f01e"; }
|
1933
|
+
|
1934
|
+
/* \f020 doesn't work in Safari. all shifted one down */
|
1935
|
+
.icon-refresh:before {
|
1936
|
+
content: "\f021"; }
|
1937
|
+
|
1938
|
+
.icon-list-alt:before {
|
1939
|
+
content: "\f022"; }
|
1940
|
+
|
1941
|
+
.icon-lock:before {
|
1942
|
+
content: "\f023"; }
|
1943
|
+
|
1944
|
+
.icon-flag:before {
|
1945
|
+
content: "\f024"; }
|
1946
|
+
|
1947
|
+
.icon-headphones:before {
|
1948
|
+
content: "\f025"; }
|
1949
|
+
|
1950
|
+
.icon-volume-off:before {
|
1951
|
+
content: "\f026"; }
|
1952
|
+
|
1953
|
+
.icon-volume-down:before {
|
1954
|
+
content: "\f027"; }
|
1955
|
+
|
1956
|
+
.icon-volume-up:before {
|
1957
|
+
content: "\f028"; }
|
1958
|
+
|
1959
|
+
.icon-qrcode:before {
|
1960
|
+
content: "\f029"; }
|
1961
|
+
|
1962
|
+
.icon-barcode:before {
|
1963
|
+
content: "\f02a"; }
|
1964
|
+
|
1965
|
+
.icon-tag:before {
|
1966
|
+
content: "\f02b"; }
|
1967
|
+
|
1968
|
+
.icon-tags:before {
|
1969
|
+
content: "\f02c"; }
|
1970
|
+
|
1971
|
+
.icon-book:before {
|
1972
|
+
content: "\f02d"; }
|
1973
|
+
|
1974
|
+
.icon-bookmark:before {
|
1975
|
+
content: "\f02e"; }
|
1976
|
+
|
1977
|
+
.icon-print:before {
|
1978
|
+
content: "\f02f"; }
|
1979
|
+
|
1980
|
+
.icon-camera:before {
|
1981
|
+
content: "\f030"; }
|
1982
|
+
|
1983
|
+
.icon-font:before {
|
1984
|
+
content: "\f031"; }
|
1985
|
+
|
1986
|
+
.icon-bold:before {
|
1987
|
+
content: "\f032"; }
|
1988
|
+
|
1989
|
+
.icon-italic:before {
|
1990
|
+
content: "\f033"; }
|
1991
|
+
|
1992
|
+
.icon-text-height:before {
|
1993
|
+
content: "\f034"; }
|
1994
|
+
|
1995
|
+
.icon-text-width:before {
|
1996
|
+
content: "\f035"; }
|
1997
|
+
|
1998
|
+
.icon-align-left:before {
|
1999
|
+
content: "\f036"; }
|
2000
|
+
|
2001
|
+
.icon-align-center:before {
|
2002
|
+
content: "\f037"; }
|
2003
|
+
|
2004
|
+
.icon-align-right:before {
|
2005
|
+
content: "\f038"; }
|
2006
|
+
|
2007
|
+
.icon-align-justify:before {
|
2008
|
+
content: "\f039"; }
|
2009
|
+
|
2010
|
+
.icon-list:before {
|
2011
|
+
content: "\f03a"; }
|
2012
|
+
|
2013
|
+
.icon-indent-left:before {
|
2014
|
+
content: "\f03b"; }
|
2015
|
+
|
2016
|
+
.icon-indent-right:before {
|
2017
|
+
content: "\f03c"; }
|
2018
|
+
|
2019
|
+
.icon-facetime-video:before {
|
2020
|
+
content: "\f03d"; }
|
2021
|
+
|
2022
|
+
.icon-picture:before {
|
2023
|
+
content: "\f03e"; }
|
2024
|
+
|
2025
|
+
.icon-pencil:before {
|
2026
|
+
content: "\f040"; }
|
2027
|
+
|
2028
|
+
.icon-map-marker:before {
|
2029
|
+
content: "\f041"; }
|
2030
|
+
|
2031
|
+
.icon-adjust:before {
|
2032
|
+
content: "\f042"; }
|
2033
|
+
|
2034
|
+
.icon-tint:before {
|
2035
|
+
content: "\f043"; }
|
2036
|
+
|
2037
|
+
.icon-edit:before {
|
2038
|
+
content: "\f044"; }
|
2039
|
+
|
2040
|
+
.icon-share:before {
|
2041
|
+
content: "\f045"; }
|
2042
|
+
|
2043
|
+
.icon-check:before {
|
2044
|
+
content: "\f046"; }
|
2045
|
+
|
2046
|
+
.icon-move:before {
|
2047
|
+
content: "\f047"; }
|
2048
|
+
|
2049
|
+
.icon-step-backward:before {
|
2050
|
+
content: "\f048"; }
|
2051
|
+
|
2052
|
+
.icon-fast-backward:before {
|
2053
|
+
content: "\f049"; }
|
2054
|
+
|
2055
|
+
.icon-backward:before {
|
2056
|
+
content: "\f04a"; }
|
2057
|
+
|
2058
|
+
.icon-play:before {
|
2059
|
+
content: "\f04b"; }
|
2060
|
+
|
2061
|
+
.icon-pause:before {
|
2062
|
+
content: "\f04c"; }
|
2063
|
+
|
2064
|
+
.icon-stop:before {
|
2065
|
+
content: "\f04d"; }
|
2066
|
+
|
2067
|
+
.icon-forward:before {
|
2068
|
+
content: "\f04e"; }
|
2069
|
+
|
2070
|
+
.icon-fast-forward:before {
|
2071
|
+
content: "\f050"; }
|
2072
|
+
|
2073
|
+
.icon-step-forward:before {
|
2074
|
+
content: "\f051"; }
|
2075
|
+
|
2076
|
+
.icon-eject:before {
|
2077
|
+
content: "\f052"; }
|
2078
|
+
|
2079
|
+
.icon-chevron-left:before {
|
2080
|
+
content: "\f053"; }
|
2081
|
+
|
2082
|
+
.icon-chevron-right:before {
|
2083
|
+
content: "\f054"; }
|
2084
|
+
|
2085
|
+
.icon-plus-sign:before {
|
2086
|
+
content: "\f055"; }
|
2087
|
+
|
2088
|
+
.icon-minus-sign:before {
|
2089
|
+
content: "\f056"; }
|
2090
|
+
|
2091
|
+
.icon-remove-sign:before {
|
2092
|
+
content: "\f057"; }
|
2093
|
+
|
2094
|
+
.icon-ok-sign:before {
|
2095
|
+
content: "\f058"; }
|
2096
|
+
|
2097
|
+
.icon-question-sign:before {
|
2098
|
+
content: "\f059"; }
|
2099
|
+
|
2100
|
+
.icon-info-sign:before {
|
2101
|
+
content: "\f05a"; }
|
2102
|
+
|
2103
|
+
.icon-screenshot:before {
|
2104
|
+
content: "\f05b"; }
|
2105
|
+
|
2106
|
+
.icon-remove-circle:before {
|
2107
|
+
content: "\f05c"; }
|
2108
|
+
|
2109
|
+
.icon-ok-circle:before {
|
2110
|
+
content: "\f05d"; }
|
2111
|
+
|
2112
|
+
.icon-ban-circle:before {
|
2113
|
+
content: "\f05e"; }
|
2114
|
+
|
2115
|
+
.icon-arrow-left:before {
|
2116
|
+
content: "\f060"; }
|
2117
|
+
|
2118
|
+
.icon-arrow-right:before {
|
2119
|
+
content: "\f061"; }
|
2120
|
+
|
2121
|
+
.icon-arrow-up:before {
|
2122
|
+
content: "\f062"; }
|
2123
|
+
|
2124
|
+
.icon-arrow-down:before {
|
2125
|
+
content: "\f063"; }
|
2126
|
+
|
2127
|
+
.icon-share-alt:before {
|
2128
|
+
content: "\f064"; }
|
2129
|
+
|
2130
|
+
.icon-resize-full:before {
|
2131
|
+
content: "\f065"; }
|
2132
|
+
|
2133
|
+
.icon-resize-small:before {
|
2134
|
+
content: "\f066"; }
|
2135
|
+
|
2136
|
+
.icon-plus:before {
|
2137
|
+
content: "\f067"; }
|
2138
|
+
|
2139
|
+
.icon-minus:before {
|
2140
|
+
content: "\f068"; }
|
2141
|
+
|
2142
|
+
.icon-asterisk:before {
|
2143
|
+
content: "\f069"; }
|
2144
|
+
|
2145
|
+
.icon-exclamation-sign:before {
|
2146
|
+
content: "\f06a"; }
|
2147
|
+
|
2148
|
+
.icon-gift:before {
|
2149
|
+
content: "\f06b"; }
|
2150
|
+
|
2151
|
+
.icon-leaf:before {
|
2152
|
+
content: "\f06c"; }
|
2153
|
+
|
2154
|
+
.icon-fire:before {
|
2155
|
+
content: "\f06d"; }
|
2156
|
+
|
2157
|
+
.icon-eye-open:before {
|
2158
|
+
content: "\f06e"; }
|
2159
|
+
|
2160
|
+
.icon-eye-close:before {
|
2161
|
+
content: "\f070"; }
|
2162
|
+
|
2163
|
+
.icon-warning-sign:before {
|
2164
|
+
content: "\f071"; }
|
2165
|
+
|
2166
|
+
.icon-plane:before {
|
2167
|
+
content: "\f072"; }
|
2168
|
+
|
2169
|
+
.icon-calendar:before {
|
2170
|
+
content: "\f073"; }
|
2171
|
+
|
2172
|
+
.icon-random:before {
|
2173
|
+
content: "\f074"; }
|
2174
|
+
|
2175
|
+
.icon-comment:before {
|
2176
|
+
content: "\f075"; }
|
2177
|
+
|
2178
|
+
.icon-magnet:before {
|
2179
|
+
content: "\f076"; }
|
2180
|
+
|
2181
|
+
.icon-chevron-up:before {
|
2182
|
+
content: "\f077"; }
|
2183
|
+
|
2184
|
+
.icon-chevron-down:before {
|
2185
|
+
content: "\f078"; }
|
2186
|
+
|
2187
|
+
.icon-retweet:before {
|
2188
|
+
content: "\f079"; }
|
2189
|
+
|
2190
|
+
.icon-shopping-cart:before {
|
2191
|
+
content: "\f07a"; }
|
2192
|
+
|
2193
|
+
.icon-folder-close:before {
|
2194
|
+
content: "\f07b"; }
|
2195
|
+
|
2196
|
+
.icon-folder-open:before {
|
2197
|
+
content: "\f07c"; }
|
2198
|
+
|
2199
|
+
.icon-resize-vertical:before {
|
2200
|
+
content: "\f07d"; }
|
2201
|
+
|
2202
|
+
.icon-resize-horizontal:before {
|
2203
|
+
content: "\f07e"; }
|
2204
|
+
|
2205
|
+
.icon-bar-chart:before {
|
2206
|
+
content: "\f080"; }
|
2207
|
+
|
2208
|
+
.icon-twitter-sign:before {
|
2209
|
+
content: "\f081"; }
|
2210
|
+
|
2211
|
+
.icon-facebook-sign:before {
|
2212
|
+
content: "\f082"; }
|
2213
|
+
|
2214
|
+
.icon-camera-retro:before {
|
2215
|
+
content: "\f083"; }
|
2216
|
+
|
2217
|
+
.icon-key:before {
|
2218
|
+
content: "\f084"; }
|
2219
|
+
|
2220
|
+
.icon-cogs:before {
|
2221
|
+
content: "\f085"; }
|
2222
|
+
|
2223
|
+
.icon-comments:before {
|
2224
|
+
content: "\f086"; }
|
2225
|
+
|
2226
|
+
.icon-thumbs-up:before {
|
2227
|
+
content: "\f087"; }
|
2228
|
+
|
2229
|
+
.icon-thumbs-down:before {
|
2230
|
+
content: "\f088"; }
|
2231
|
+
|
2232
|
+
.icon-star-half:before {
|
2233
|
+
content: "\f089"; }
|
2234
|
+
|
2235
|
+
.icon-heart-empty:before {
|
2236
|
+
content: "\f08a"; }
|
2237
|
+
|
2238
|
+
.icon-signout:before {
|
2239
|
+
content: "\f08b"; }
|
2240
|
+
|
2241
|
+
.icon-linkedin-sign:before {
|
2242
|
+
content: "\f08c"; }
|
2243
|
+
|
2244
|
+
.icon-pushpin:before {
|
2245
|
+
content: "\f08d"; }
|
2246
|
+
|
2247
|
+
.icon-external-link:before {
|
2248
|
+
content: "\f08e"; }
|
2249
|
+
|
2250
|
+
.icon-signin:before {
|
2251
|
+
content: "\f090"; }
|
2252
|
+
|
2253
|
+
.icon-trophy:before {
|
2254
|
+
content: "\f091"; }
|
2255
|
+
|
2256
|
+
.icon-github-sign:before {
|
2257
|
+
content: "\f092"; }
|
2258
|
+
|
2259
|
+
.icon-upload-alt:before {
|
2260
|
+
content: "\f093"; }
|
2261
|
+
|
2262
|
+
.icon-lemon:before {
|
2263
|
+
content: "\f094"; }
|
2264
|
+
|
2265
|
+
.icon-phone:before {
|
2266
|
+
content: "\f095"; }
|
2267
|
+
|
2268
|
+
.icon-check-empty:before {
|
2269
|
+
content: "\f096"; }
|
2270
|
+
|
2271
|
+
.icon-bookmark-empty:before {
|
2272
|
+
content: "\f097"; }
|
2273
|
+
|
2274
|
+
.icon-phone-sign:before {
|
2275
|
+
content: "\f098"; }
|
2276
|
+
|
2277
|
+
.icon-twitter:before {
|
2278
|
+
content: "\f099"; }
|
2279
|
+
|
2280
|
+
.icon-facebook:before {
|
2281
|
+
content: "\f09a"; }
|
2282
|
+
|
2283
|
+
.icon-github:before {
|
2284
|
+
content: "\f09b"; }
|
2285
|
+
|
2286
|
+
.icon-unlock:before {
|
2287
|
+
content: "\f09c"; }
|
2288
|
+
|
2289
|
+
.icon-credit-card:before {
|
2290
|
+
content: "\f09d"; }
|
2291
|
+
|
2292
|
+
.icon-rss:before {
|
2293
|
+
content: "\f09e"; }
|
2294
|
+
|
2295
|
+
.icon-hdd:before {
|
2296
|
+
content: "\f0a0"; }
|
2297
|
+
|
2298
|
+
.icon-bullhorn:before {
|
2299
|
+
content: "\f0a1"; }
|
2300
|
+
|
2301
|
+
.icon-bell:before {
|
2302
|
+
content: "\f0a2"; }
|
2303
|
+
|
2304
|
+
.icon-certificate:before {
|
2305
|
+
content: "\f0a3"; }
|
2306
|
+
|
2307
|
+
.icon-hand-right:before {
|
2308
|
+
content: "\f0a4"; }
|
2309
|
+
|
2310
|
+
.icon-hand-left:before {
|
2311
|
+
content: "\f0a5"; }
|
2312
|
+
|
2313
|
+
.icon-hand-up:before {
|
2314
|
+
content: "\f0a6"; }
|
2315
|
+
|
2316
|
+
.icon-hand-down:before {
|
2317
|
+
content: "\f0a7"; }
|
2318
|
+
|
2319
|
+
.icon-circle-arrow-left:before {
|
2320
|
+
content: "\f0a8"; }
|
2321
|
+
|
2322
|
+
.icon-circle-arrow-right:before {
|
2323
|
+
content: "\f0a9"; }
|
2324
|
+
|
2325
|
+
.icon-circle-arrow-up:before {
|
2326
|
+
content: "\f0aa"; }
|
2327
|
+
|
2328
|
+
.icon-circle-arrow-down:before {
|
2329
|
+
content: "\f0ab"; }
|
2330
|
+
|
2331
|
+
.icon-globe:before {
|
2332
|
+
content: "\f0ac"; }
|
2333
|
+
|
2334
|
+
.icon-wrench:before {
|
2335
|
+
content: "\f0ad"; }
|
2336
|
+
|
2337
|
+
.icon-tasks:before {
|
2338
|
+
content: "\f0ae"; }
|
2339
|
+
|
2340
|
+
.icon-filter:before {
|
2341
|
+
content: "\f0b0"; }
|
2342
|
+
|
2343
|
+
.icon-briefcase:before {
|
2344
|
+
content: "\f0b1"; }
|
2345
|
+
|
2346
|
+
.icon-fullscreen:before {
|
2347
|
+
content: "\f0b2"; }
|
2348
|
+
|
2349
|
+
.icon-group:before {
|
2350
|
+
content: "\f0c0"; }
|
2351
|
+
|
2352
|
+
.icon-link:before {
|
2353
|
+
content: "\f0c1"; }
|
2354
|
+
|
2355
|
+
.icon-cloud:before {
|
2356
|
+
content: "\f0c2"; }
|
2357
|
+
|
2358
|
+
.icon-beaker:before {
|
2359
|
+
content: "\f0c3"; }
|
2360
|
+
|
2361
|
+
.icon-cut:before {
|
2362
|
+
content: "\f0c4"; }
|
2363
|
+
|
2364
|
+
.icon-copy:before {
|
2365
|
+
content: "\f0c5"; }
|
2366
|
+
|
2367
|
+
.icon-paper-clip:before {
|
2368
|
+
content: "\f0c6"; }
|
2369
|
+
|
2370
|
+
.icon-save:before {
|
2371
|
+
content: "\f0c7"; }
|
2372
|
+
|
2373
|
+
.icon-sign-blank:before {
|
2374
|
+
content: "\f0c8"; }
|
2375
|
+
|
2376
|
+
.icon-reorder:before {
|
2377
|
+
content: "\f0c9"; }
|
2378
|
+
|
2379
|
+
.icon-list-ul:before {
|
2380
|
+
content: "\f0ca"; }
|
2381
|
+
|
2382
|
+
.icon-list-ol:before {
|
2383
|
+
content: "\f0cb"; }
|
2384
|
+
|
2385
|
+
.icon-strikethrough:before {
|
2386
|
+
content: "\f0cc"; }
|
2387
|
+
|
2388
|
+
.icon-underline:before {
|
2389
|
+
content: "\f0cd"; }
|
2390
|
+
|
2391
|
+
.icon-table:before {
|
2392
|
+
content: "\f0ce"; }
|
2393
|
+
|
2394
|
+
.icon-magic:before {
|
2395
|
+
content: "\f0d0"; }
|
2396
|
+
|
2397
|
+
.icon-truck:before {
|
2398
|
+
content: "\f0d1"; }
|
2399
|
+
|
2400
|
+
.icon-pinterest:before {
|
2401
|
+
content: "\f0d2"; }
|
2402
|
+
|
2403
|
+
.icon-pinterest-sign:before {
|
2404
|
+
content: "\f0d3"; }
|
2405
|
+
|
2406
|
+
.icon-google-plus-sign:before {
|
2407
|
+
content: "\f0d4"; }
|
2408
|
+
|
2409
|
+
.icon-google-plus:before {
|
2410
|
+
content: "\f0d5"; }
|
2411
|
+
|
2412
|
+
.icon-money:before {
|
2413
|
+
content: "\f0d6"; }
|
2414
|
+
|
2415
|
+
.icon-caret-down:before {
|
2416
|
+
content: "\f0d7"; }
|
2417
|
+
|
2418
|
+
.icon-caret-up:before {
|
2419
|
+
content: "\f0d8"; }
|
2420
|
+
|
2421
|
+
.icon-caret-left:before {
|
2422
|
+
content: "\f0d9"; }
|
2423
|
+
|
2424
|
+
.icon-caret-right:before {
|
2425
|
+
content: "\f0da"; }
|
2426
|
+
|
2427
|
+
.icon-columns:before {
|
2428
|
+
content: "\f0db"; }
|
2429
|
+
|
2430
|
+
.icon-sort:before {
|
2431
|
+
content: "\f0dc"; }
|
2432
|
+
|
2433
|
+
.icon-sort-down:before {
|
2434
|
+
content: "\f0dd"; }
|
2435
|
+
|
2436
|
+
.icon-sort-up:before {
|
2437
|
+
content: "\f0de"; }
|
2438
|
+
|
2439
|
+
.icon-envelope-alt:before {
|
2440
|
+
content: "\f0e0"; }
|
2441
|
+
|
2442
|
+
.icon-linkedin:before {
|
2443
|
+
content: "\f0e1"; }
|
2444
|
+
|
2445
|
+
.icon-undo:before {
|
2446
|
+
content: "\f0e2"; }
|
2447
|
+
|
2448
|
+
.icon-legal:before {
|
2449
|
+
content: "\f0e3"; }
|
2450
|
+
|
2451
|
+
.icon-dashboard:before {
|
2452
|
+
content: "\f0e4"; }
|
2453
|
+
|
2454
|
+
.icon-comment-alt:before {
|
2455
|
+
content: "\f0e5"; }
|
2456
|
+
|
2457
|
+
.icon-comments-alt:before {
|
2458
|
+
content: "\f0e6"; }
|
2459
|
+
|
2460
|
+
.icon-bolt:before {
|
2461
|
+
content: "\f0e7"; }
|
2462
|
+
|
2463
|
+
.icon-sitemap:before {
|
2464
|
+
content: "\f0e8"; }
|
2465
|
+
|
2466
|
+
.icon-umbrella:before {
|
2467
|
+
content: "\f0e9"; }
|
2468
|
+
|
2469
|
+
.icon-paste:before {
|
2470
|
+
content: "\f0ea"; }
|
2471
|
+
|
2472
|
+
.icon-lightbulb:before {
|
2473
|
+
content: "\f0eb"; }
|
2474
|
+
|
2475
|
+
.icon-exchange:before {
|
2476
|
+
content: "\f0ec"; }
|
2477
|
+
|
2478
|
+
.icon-cloud-download:before {
|
2479
|
+
content: "\f0ed"; }
|
2480
|
+
|
2481
|
+
.icon-cloud-upload:before {
|
2482
|
+
content: "\f0ee"; }
|
2483
|
+
|
2484
|
+
.icon-user-md:before {
|
2485
|
+
content: "\f0f0"; }
|
2486
|
+
|
2487
|
+
.icon-stethoscope:before {
|
2488
|
+
content: "\f0f1"; }
|
2489
|
+
|
2490
|
+
.icon-suitcase:before {
|
2491
|
+
content: "\f0f2"; }
|
2492
|
+
|
2493
|
+
.icon-bell-alt:before {
|
2494
|
+
content: "\f0f3"; }
|
2495
|
+
|
2496
|
+
.icon-coffee:before {
|
2497
|
+
content: "\f0f4"; }
|
2498
|
+
|
2499
|
+
.icon-food:before {
|
2500
|
+
content: "\f0f5"; }
|
2501
|
+
|
2502
|
+
.icon-file-alt:before {
|
2503
|
+
content: "\f0f6"; }
|
2504
|
+
|
2505
|
+
.icon-building:before {
|
2506
|
+
content: "\f0f7"; }
|
2507
|
+
|
2508
|
+
.icon-hospital:before {
|
2509
|
+
content: "\f0f8"; }
|
2510
|
+
|
2511
|
+
.icon-ambulance:before {
|
2512
|
+
content: "\f0f9"; }
|
2513
|
+
|
2514
|
+
.icon-medkit:before {
|
2515
|
+
content: "\f0fa"; }
|
2516
|
+
|
2517
|
+
.icon-fighter-jet:before {
|
2518
|
+
content: "\f0fb"; }
|
2519
|
+
|
2520
|
+
.icon-beer:before {
|
2521
|
+
content: "\f0fc"; }
|
2522
|
+
|
2523
|
+
.icon-h-sign:before {
|
2524
|
+
content: "\f0fd"; }
|
2525
|
+
|
2526
|
+
.icon-plus-sign-alt:before {
|
2527
|
+
content: "\f0fe"; }
|
2528
|
+
|
2529
|
+
.icon-double-angle-left:before {
|
2530
|
+
content: "\f100"; }
|
2531
|
+
|
2532
|
+
.icon-double-angle-right:before {
|
2533
|
+
content: "\f101"; }
|
2534
|
+
|
2535
|
+
.icon-double-angle-up:before {
|
2536
|
+
content: "\f102"; }
|
2537
|
+
|
2538
|
+
.icon-double-angle-down:before {
|
2539
|
+
content: "\f103"; }
|
2540
|
+
|
2541
|
+
.icon-angle-left:before {
|
2542
|
+
content: "\f104"; }
|
2543
|
+
|
2544
|
+
.icon-angle-right:before {
|
2545
|
+
content: "\f105"; }
|
2546
|
+
|
2547
|
+
.icon-angle-up:before {
|
2548
|
+
content: "\f106"; }
|
2549
|
+
|
2550
|
+
.icon-angle-down:before {
|
2551
|
+
content: "\f107"; }
|
2552
|
+
|
2553
|
+
.icon-desktop:before {
|
2554
|
+
content: "\f108"; }
|
2555
|
+
|
2556
|
+
.icon-laptop:before {
|
2557
|
+
content: "\f109"; }
|
2558
|
+
|
2559
|
+
.icon-tablet:before {
|
2560
|
+
content: "\f10a"; }
|
2561
|
+
|
2562
|
+
.icon-mobile-phone:before {
|
2563
|
+
content: "\f10b"; }
|
2564
|
+
|
2565
|
+
.icon-circle-blank:before {
|
2566
|
+
content: "\f10c"; }
|
2567
|
+
|
2568
|
+
.icon-quote-left:before {
|
2569
|
+
content: "\f10d"; }
|
2570
|
+
|
2571
|
+
.icon-quote-right:before {
|
2572
|
+
content: "\f10e"; }
|
2573
|
+
|
2574
|
+
.icon-spinner:before {
|
2575
|
+
content: "\f110"; }
|
2576
|
+
|
2577
|
+
.icon-circle:before {
|
2578
|
+
content: "\f111"; }
|
2579
|
+
|
2580
|
+
.icon-reply:before {
|
2581
|
+
content: "\f112"; }
|
2582
|
+
|
2583
|
+
.icon-github-alt:before {
|
2584
|
+
content: "\f113"; }
|
2585
|
+
|
2586
|
+
.icon-folder-close-alt:before {
|
2587
|
+
content: "\f114"; }
|
2588
|
+
|
2589
|
+
.icon-folder-open-alt:before {
|
2590
|
+
content: "\f115"; }
|
2591
|
+
|
2592
|
+
.dropup,
|
2593
|
+
.dropdown {
|
2594
|
+
position: relative; }
|
2595
|
+
|
2596
|
+
.dropdown-toggle {
|
2597
|
+
*margin-bottom: -3px; }
|
2598
|
+
|
2599
|
+
.dropdown-toggle:active,
|
2600
|
+
.open .dropdown-toggle {
|
2601
|
+
outline: 0; }
|
2602
|
+
|
2603
|
+
.caret {
|
2604
|
+
display: inline-block;
|
2605
|
+
width: 0;
|
2606
|
+
height: 0;
|
2607
|
+
vertical-align: top;
|
2608
|
+
border-top: 4px solid black;
|
2609
|
+
border-right: 4px solid transparent;
|
2610
|
+
border-left: 4px solid transparent;
|
2611
|
+
content: ""; }
|
2612
|
+
|
2613
|
+
.dropdown .caret {
|
2614
|
+
margin-top: 8px;
|
2615
|
+
margin-left: 2px; }
|
2616
|
+
|
2617
|
+
.dropdown-menu {
|
2618
|
+
position: absolute;
|
2619
|
+
top: 100%;
|
2620
|
+
left: 0;
|
2621
|
+
z-index: 1000;
|
2622
|
+
display: none;
|
2623
|
+
float: left;
|
2624
|
+
min-width: 160px;
|
2625
|
+
padding: 5px 0;
|
2626
|
+
margin: 2px 0 0;
|
2627
|
+
list-style: none;
|
2628
|
+
background-color: white;
|
2629
|
+
border: 1px solid #ccc;
|
2630
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
2631
|
+
*border-right-width: 2px;
|
2632
|
+
*border-bottom-width: 2px;
|
2633
|
+
-webkit-background-clip: padding-box;
|
2634
|
+
-moz-background-clip: padding;
|
2635
|
+
background-clip: padding-box; }
|
2636
|
+
.dropdown-menu.pull-right {
|
2637
|
+
right: 0;
|
2638
|
+
left: auto; }
|
2639
|
+
.dropdown-menu .divider {
|
2640
|
+
*width: 100%;
|
2641
|
+
height: 1px;
|
2642
|
+
margin: 9px 1px;
|
2643
|
+
*margin: -5px 0 5px;
|
2644
|
+
overflow: hidden;
|
2645
|
+
background-color: #e5e5e5;
|
2646
|
+
border-bottom: 1px solid white; }
|
2647
|
+
.dropdown-menu > li > a {
|
2648
|
+
display: block;
|
2649
|
+
padding: 3px 20px;
|
2650
|
+
clear: both;
|
2651
|
+
font-weight: normal;
|
2652
|
+
line-height: 20px;
|
2653
|
+
color: #333333;
|
2654
|
+
white-space: nowrap; }
|
2655
|
+
|
2656
|
+
.dropdown-menu > li > a:hover,
|
2657
|
+
.dropdown-menu > li > a:focus,
|
2658
|
+
.dropdown-submenu:hover > a,
|
2659
|
+
.dropdown-submenu:focus > a {
|
2660
|
+
text-decoration: none;
|
2661
|
+
color: white;
|
2662
|
+
background-color: #0081c2; }
|
2663
|
+
|
2664
|
+
.dropdown-menu > .active > a,
|
2665
|
+
.dropdown-menu > .active > a:hover,
|
2666
|
+
.dropdown-menu > .active > a:focus {
|
2667
|
+
color: white;
|
2668
|
+
text-decoration: none;
|
2669
|
+
outline: 0;
|
2670
|
+
background-color: #0081c2; }
|
2671
|
+
|
2672
|
+
.dropdown-menu > .disabled > a,
|
2673
|
+
.dropdown-menu > .disabled > a:hover,
|
2674
|
+
.dropdown-menu > .disabled > a:focus {
|
2675
|
+
color: #999999; }
|
2676
|
+
|
2677
|
+
.dropdown-menu > .disabled > a:hover,
|
2678
|
+
.dropdown-menu > .disabled > a:focus {
|
2679
|
+
text-decoration: none;
|
2680
|
+
background-color: transparent;
|
2681
|
+
background-image: none;
|
2682
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
2683
|
+
cursor: default; }
|
2684
|
+
|
2685
|
+
.open {
|
2686
|
+
*z-index: 1000; }
|
2687
|
+
.open > .dropdown-menu {
|
2688
|
+
display: block; }
|
2689
|
+
|
2690
|
+
.pull-right > .dropdown-menu {
|
2691
|
+
right: 0;
|
2692
|
+
left: auto; }
|
2693
|
+
|
2694
|
+
.dropup .caret,
|
2695
|
+
.navbar-fixed-bottom .dropdown .caret {
|
2696
|
+
border-top: 0;
|
2697
|
+
border-bottom: 4px solid black;
|
2698
|
+
content: ""; }
|
2699
|
+
.dropup .dropdown-menu,
|
2700
|
+
.navbar-fixed-bottom .dropdown .dropdown-menu {
|
2701
|
+
top: auto;
|
2702
|
+
bottom: 100%;
|
2703
|
+
margin-bottom: 1px; }
|
2704
|
+
|
2705
|
+
.dropdown-submenu {
|
2706
|
+
position: relative; }
|
2707
|
+
|
2708
|
+
.dropdown-submenu > .dropdown-menu {
|
2709
|
+
top: 0;
|
2710
|
+
left: 100%;
|
2711
|
+
margin-top: -6px;
|
2712
|
+
margin-left: -1px; }
|
2713
|
+
|
2714
|
+
.dropdown-submenu:hover > .dropdown-menu {
|
2715
|
+
display: block; }
|
2716
|
+
|
2717
|
+
.dropup .dropdown-submenu > .dropdown-menu {
|
2718
|
+
top: auto;
|
2719
|
+
bottom: 0;
|
2720
|
+
margin-top: 0;
|
2721
|
+
margin-bottom: -2px; }
|
2722
|
+
|
2723
|
+
.dropdown-submenu > a:after {
|
2724
|
+
display: block;
|
2725
|
+
content: " ";
|
2726
|
+
float: right;
|
2727
|
+
width: 0;
|
2728
|
+
height: 0;
|
2729
|
+
border-color: transparent;
|
2730
|
+
border-style: solid;
|
2731
|
+
border-width: 5px 0 5px 5px;
|
2732
|
+
border-left-color: #cccccc;
|
2733
|
+
margin-top: 5px;
|
2734
|
+
margin-right: -10px; }
|
2735
|
+
|
2736
|
+
.dropdown-submenu:hover > a:after {
|
2737
|
+
border-left-color: white; }
|
2738
|
+
|
2739
|
+
.dropdown-submenu.pull-left {
|
2740
|
+
float: none; }
|
2741
|
+
.dropdown-submenu.pull-left > .dropdown-menu {
|
2742
|
+
left: -100%;
|
2743
|
+
margin-left: 10px; }
|
2744
|
+
|
2745
|
+
.dropdown .dropdown-menu .nav-header {
|
2746
|
+
padding-left: 20px;
|
2747
|
+
padding-right: 20px; }
|
2748
|
+
|
2749
|
+
.typeahead {
|
2750
|
+
z-index: 1051;
|
2751
|
+
margin-top: 2px; }
|
2752
|
+
|
2753
|
+
.well {
|
2754
|
+
min-height: 20px;
|
2755
|
+
padding: 19px;
|
2756
|
+
margin-bottom: 20px;
|
2757
|
+
background-color: whitesmoke;
|
2758
|
+
border: 1px solid #e3e3e3; }
|
2759
|
+
.well blockquote {
|
2760
|
+
border-color: #ddd;
|
2761
|
+
border-color: rgba(0, 0, 0, 0.15); }
|
2762
|
+
|
2763
|
+
.well-large {
|
2764
|
+
padding: 24px; }
|
2765
|
+
|
2766
|
+
.well-small {
|
2767
|
+
padding: 9px; }
|
2768
|
+
|
2769
|
+
.fade {
|
2770
|
+
opacity: 0;
|
2771
|
+
-webkit-transition: opacity 0.15s linear;
|
2772
|
+
-moz-transition: opacity 0.15s linear;
|
2773
|
+
-o-transition: opacity 0.15s linear;
|
2774
|
+
transition: opacity 0.15s linear; }
|
2775
|
+
.fade.in {
|
2776
|
+
opacity: 1; }
|
2777
|
+
|
2778
|
+
.collapse {
|
2779
|
+
position: relative;
|
2780
|
+
height: 0;
|
2781
|
+
overflow: hidden;
|
2782
|
+
-webkit-transition: height 0.35s ease;
|
2783
|
+
-moz-transition: height 0.35s ease;
|
2784
|
+
-o-transition: height 0.35s ease;
|
2785
|
+
transition: height 0.35s ease; }
|
2786
|
+
.collapse.in {
|
2787
|
+
height: auto; }
|
2788
|
+
|
2789
|
+
.close {
|
2790
|
+
float: right;
|
2791
|
+
font-size: 20px;
|
2792
|
+
font-weight: bold;
|
2793
|
+
line-height: 20px;
|
2794
|
+
color: black;
|
2795
|
+
text-shadow: 0 1px 0 white;
|
2796
|
+
opacity: 0.2;
|
2797
|
+
filter: alpha(opacity=20); }
|
2798
|
+
.close:hover, .close:focus {
|
2799
|
+
color: black;
|
2800
|
+
text-decoration: none;
|
2801
|
+
cursor: pointer;
|
2802
|
+
opacity: 0.4;
|
2803
|
+
filter: alpha(opacity=40); }
|
2804
|
+
|
2805
|
+
button.close {
|
2806
|
+
padding: 0;
|
2807
|
+
cursor: pointer;
|
2808
|
+
background: transparent;
|
2809
|
+
border: 0;
|
2810
|
+
-webkit-appearance: none; }
|
2811
|
+
|
2812
|
+
.btn {
|
2813
|
+
display: inline-block;
|
2814
|
+
*display: inline;
|
2815
|
+
/* IE7 inline-block hack */
|
2816
|
+
*zoom: 1;
|
2817
|
+
padding: 4px 12px;
|
2818
|
+
margin-bottom: 0;
|
2819
|
+
font-size: 14px;
|
2820
|
+
line-height: 20px;
|
2821
|
+
text-align: center;
|
2822
|
+
vertical-align: middle;
|
2823
|
+
cursor: pointer;
|
2824
|
+
color: #333333;
|
2825
|
+
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
2826
|
+
background-color: whitesmoke;
|
2827
|
+
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
2828
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2829
|
+
*background-color: #e6e6e6;
|
2830
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
2831
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
2832
|
+
border: 1px solid #cccccc;
|
2833
|
+
*border: 0;
|
2834
|
+
border-bottom-color: #b3b3b3;
|
2835
|
+
*margin-left: .3em; }
|
2836
|
+
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
|
2837
|
+
color: #333333;
|
2838
|
+
background-color: #e6e6e6;
|
2839
|
+
*background-color: #d9d9d9; }
|
2840
|
+
.btn:active, .btn.active {
|
2841
|
+
background-color: #cccccc \9; }
|
2842
|
+
.btn:first-child {
|
2843
|
+
*margin-left: 0; }
|
2844
|
+
.btn:hover, .btn:focus {
|
2845
|
+
color: #333333;
|
2846
|
+
text-decoration: none;
|
2847
|
+
background-position: 0 -15px; }
|
2848
|
+
.btn:focus {
|
2849
|
+
outline: thin dotted #333;
|
2850
|
+
outline: 5px auto -webkit-focus-ring-color;
|
2851
|
+
outline-offset: -2px; }
|
2852
|
+
.btn.active, .btn:active {
|
2853
|
+
background-image: none;
|
2854
|
+
outline: 0; }
|
2855
|
+
.btn.disabled, .btn[disabled] {
|
2856
|
+
cursor: default;
|
2857
|
+
background-image: none;
|
2858
|
+
opacity: 0.65;
|
2859
|
+
filter: alpha(opacity=65); }
|
2860
|
+
|
2861
|
+
.btn-large {
|
2862
|
+
padding: 11px 19px;
|
2863
|
+
font-size: 17.5px; }
|
2864
|
+
|
2865
|
+
.btn-large [class^="icon-"],
|
2866
|
+
.btn-large [class*=" icon-"] {
|
2867
|
+
margin-top: 4px; }
|
2868
|
+
|
2869
|
+
.btn-small {
|
2870
|
+
padding: 2px 10px;
|
2871
|
+
font-size: 11.9px; }
|
2872
|
+
|
2873
|
+
.btn-small [class^="icon-"],
|
2874
|
+
.btn-small [class*=" icon-"] {
|
2875
|
+
margin-top: 0; }
|
2876
|
+
|
2877
|
+
.btn-mini [class^="icon-"],
|
2878
|
+
.btn-mini [class*=" icon-"] {
|
2879
|
+
margin-top: -1px; }
|
2880
|
+
|
2881
|
+
.btn-mini {
|
2882
|
+
padding: 0px 6px;
|
2883
|
+
font-size: 10.5px; }
|
2884
|
+
|
2885
|
+
.btn-block {
|
2886
|
+
display: block;
|
2887
|
+
width: 100%;
|
2888
|
+
padding-left: 0;
|
2889
|
+
padding-right: 0;
|
2890
|
+
-webkit-box-sizing: border-box;
|
2891
|
+
-moz-box-sizing: border-box;
|
2892
|
+
box-sizing: border-box; }
|
2893
|
+
|
2894
|
+
.btn-block + .btn-block {
|
2895
|
+
margin-top: 5px; }
|
2896
|
+
|
2897
|
+
input[type="submit"].btn-block,
|
2898
|
+
input[type="reset"].btn-block,
|
2899
|
+
input[type="button"].btn-block {
|
2900
|
+
width: 100%; }
|
2901
|
+
|
2902
|
+
.btn-primary.active,
|
2903
|
+
.btn-warning.active,
|
2904
|
+
.btn-danger.active,
|
2905
|
+
.btn-success.active,
|
2906
|
+
.btn-info.active,
|
2907
|
+
.btn-inverse.active {
|
2908
|
+
color: rgba(255, 255, 255, 0.75); }
|
2909
|
+
|
2910
|
+
.btn-primary {
|
2911
|
+
color: white;
|
2912
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2913
|
+
background-color: #006ccc;
|
2914
|
+
border-color: #0044cc #0044cc #002a80;
|
2915
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2916
|
+
*background-color: #0044cc;
|
2917
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
2918
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
2919
|
+
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
|
2920
|
+
color: white;
|
2921
|
+
background-color: #0044cc;
|
2922
|
+
*background-color: #003bb3; }
|
2923
|
+
.btn-primary:active, .btn-primary.active {
|
2924
|
+
background-color: #003399 \9; }
|
2925
|
+
|
2926
|
+
.btn-warning {
|
2927
|
+
color: white;
|
2928
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2929
|
+
background-color: #f9a732;
|
2930
|
+
border-color: #f89406 #f89406 #ad6704;
|
2931
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2932
|
+
*background-color: #f89406;
|
2933
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
2934
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
2935
|
+
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
|
2936
|
+
color: white;
|
2937
|
+
background-color: #f89406;
|
2938
|
+
*background-color: #df8505; }
|
2939
|
+
.btn-warning:active, .btn-warning.active {
|
2940
|
+
background-color: #c67605 \9; }
|
2941
|
+
|
2942
|
+
.btn-danger {
|
2943
|
+
color: white;
|
2944
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2945
|
+
background-color: #da4e49;
|
2946
|
+
border-color: #bd362f #bd362f #802420;
|
2947
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2948
|
+
*background-color: #bd362f;
|
2949
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
2950
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
2951
|
+
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
|
2952
|
+
color: white;
|
2953
|
+
background-color: #bd362f;
|
2954
|
+
*background-color: #a9302a; }
|
2955
|
+
.btn-danger:active, .btn-danger.active {
|
2956
|
+
background-color: #942a25 \9; }
|
2957
|
+
|
2958
|
+
.btn-success {
|
2959
|
+
color: white;
|
2960
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2961
|
+
background-color: #5bb65b;
|
2962
|
+
border-color: #51a351 #51a351 #387038;
|
2963
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2964
|
+
*background-color: #51a351;
|
2965
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
2966
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
2967
|
+
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
|
2968
|
+
color: white;
|
2969
|
+
background-color: #51a351;
|
2970
|
+
*background-color: #499249; }
|
2971
|
+
.btn-success:active, .btn-success.active {
|
2972
|
+
background-color: #408140 \9; }
|
2973
|
+
|
2974
|
+
.btn-info {
|
2975
|
+
color: white;
|
2976
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2977
|
+
background-color: #49afcd;
|
2978
|
+
border-color: #2f96b4 #2f96b4 #1f6377;
|
2979
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2980
|
+
*background-color: #2f96b4;
|
2981
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
2982
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
2983
|
+
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
|
2984
|
+
color: white;
|
2985
|
+
background-color: #2f96b4;
|
2986
|
+
*background-color: #2a85a0; }
|
2987
|
+
.btn-info:active, .btn-info.active {
|
2988
|
+
background-color: #24748c \9; }
|
2989
|
+
|
2990
|
+
.btn-inverse {
|
2991
|
+
color: white;
|
2992
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2993
|
+
background-color: #363636;
|
2994
|
+
border-color: #222222 #222222 black;
|
2995
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2996
|
+
*background-color: #222222;
|
2997
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
2998
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
2999
|
+
.btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
|
3000
|
+
color: white;
|
3001
|
+
background-color: #222222;
|
3002
|
+
*background-color: #151515; }
|
3003
|
+
.btn-inverse:active, .btn-inverse.active {
|
3004
|
+
background-color: #090909 \9; }
|
3005
|
+
|
3006
|
+
button.btn,
|
3007
|
+
input[type="submit"].btn {
|
3008
|
+
*padding-top: 3px;
|
3009
|
+
*padding-bottom: 3px; }
|
3010
|
+
button.btn::-moz-focus-inner,
|
3011
|
+
input[type="submit"].btn::-moz-focus-inner {
|
3012
|
+
padding: 0;
|
3013
|
+
border: 0; }
|
3014
|
+
button.btn.btn-large,
|
3015
|
+
input[type="submit"].btn.btn-large {
|
3016
|
+
*padding-top: 7px;
|
3017
|
+
*padding-bottom: 7px; }
|
3018
|
+
button.btn.btn-small,
|
3019
|
+
input[type="submit"].btn.btn-small {
|
3020
|
+
*padding-top: 3px;
|
3021
|
+
*padding-bottom: 3px; }
|
3022
|
+
button.btn.btn-mini,
|
3023
|
+
input[type="submit"].btn.btn-mini {
|
3024
|
+
*padding-top: 1px;
|
3025
|
+
*padding-bottom: 1px; }
|
3026
|
+
|
3027
|
+
.btn-link,
|
3028
|
+
.btn-link:active,
|
3029
|
+
.btn-link[disabled] {
|
3030
|
+
background-color: transparent;
|
3031
|
+
background-image: none; }
|
3032
|
+
|
3033
|
+
.btn-link {
|
3034
|
+
border-color: transparent;
|
3035
|
+
cursor: pointer;
|
3036
|
+
color: #0088cc; }
|
3037
|
+
|
3038
|
+
.btn-link:hover,
|
3039
|
+
.btn-link:focus {
|
3040
|
+
color: #005580;
|
3041
|
+
text-decoration: underline;
|
3042
|
+
background-color: transparent; }
|
3043
|
+
|
3044
|
+
.btn-link[disabled]:hover,
|
3045
|
+
.btn-link[disabled]:focus {
|
3046
|
+
color: #333333;
|
3047
|
+
text-decoration: none; }
|
3048
|
+
|
3049
|
+
.btn-group {
|
3050
|
+
position: relative;
|
3051
|
+
display: inline-block;
|
3052
|
+
*display: inline;
|
3053
|
+
/* IE7 inline-block hack */
|
3054
|
+
*zoom: 1;
|
3055
|
+
font-size: 0;
|
3056
|
+
vertical-align: middle;
|
3057
|
+
white-space: nowrap;
|
3058
|
+
*margin-left: .3em; }
|
3059
|
+
.btn-group:first-child {
|
3060
|
+
*margin-left: 0; }
|
3061
|
+
|
3062
|
+
.btn-group + .btn-group {
|
3063
|
+
margin-left: 5px; }
|
3064
|
+
|
3065
|
+
.btn-toolbar {
|
3066
|
+
font-size: 0;
|
3067
|
+
margin-top: 10px;
|
3068
|
+
margin-bottom: 10px; }
|
3069
|
+
.btn-toolbar > .btn + .btn,
|
3070
|
+
.btn-toolbar > .btn-group + .btn,
|
3071
|
+
.btn-toolbar > .btn + .btn-group {
|
3072
|
+
margin-left: 5px; }
|
3073
|
+
|
3074
|
+
.btn-group > .btn {
|
3075
|
+
position: relative; }
|
3076
|
+
|
3077
|
+
.btn-group > .btn + .btn {
|
3078
|
+
margin-left: -1px; }
|
3079
|
+
|
3080
|
+
.btn-group > .btn,
|
3081
|
+
.btn-group > .dropdown-menu,
|
3082
|
+
.btn-group > .popover {
|
3083
|
+
font-size: 14px; }
|
3084
|
+
|
3085
|
+
.btn-group > .btn-mini {
|
3086
|
+
font-size: 10.5px; }
|
3087
|
+
|
3088
|
+
.btn-group > .btn-small {
|
3089
|
+
font-size: 11.9px; }
|
3090
|
+
|
3091
|
+
.btn-group > .btn-large {
|
3092
|
+
font-size: 17.5px; }
|
3093
|
+
|
3094
|
+
.btn-group > .btn:first-child {
|
3095
|
+
margin-left: 0; }
|
3096
|
+
|
3097
|
+
.btn-group > .btn:last-child,
|
3098
|
+
.btn-group > .dropdown-toggle {
|
3099
|
+
-webkit-border-top-right-radius: 0;
|
3100
|
+
-moz-border-radius-topright: 0;
|
3101
|
+
border-top-right-radius: 0;
|
3102
|
+
-webkit-border-bottom-right-radius: 0;
|
3103
|
+
-moz-border-radius-bottomright: 0;
|
3104
|
+
border-bottom-right-radius: 0; }
|
3105
|
+
|
3106
|
+
.btn-group > .btn.large:first-child {
|
3107
|
+
margin-left: 0; }
|
3108
|
+
|
3109
|
+
.btn-group > .btn.large:last-child,
|
3110
|
+
.btn-group > .large.dropdown-toggle {
|
3111
|
+
-webkit-border-top-right-radius: 0;
|
3112
|
+
-moz-border-radius-topright: 0;
|
3113
|
+
border-top-right-radius: 0;
|
3114
|
+
-webkit-border-bottom-right-radius: 0;
|
3115
|
+
-moz-border-radius-bottomright: 0;
|
3116
|
+
border-bottom-right-radius: 0; }
|
3117
|
+
|
3118
|
+
.btn-group > .btn:hover,
|
3119
|
+
.btn-group > .btn:focus,
|
3120
|
+
.btn-group > .btn:active,
|
3121
|
+
.btn-group > .btn.active {
|
3122
|
+
z-index: 2; }
|
3123
|
+
|
3124
|
+
.btn-group .dropdown-toggle:active,
|
3125
|
+
.btn-group.open .dropdown-toggle {
|
3126
|
+
outline: 0; }
|
3127
|
+
|
3128
|
+
.btn-group > .btn + .dropdown-toggle {
|
3129
|
+
padding-left: 8px;
|
3130
|
+
padding-right: 8px;
|
3131
|
+
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
3132
|
+
-moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
3133
|
+
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
3134
|
+
*padding-top: 5px;
|
3135
|
+
*padding-bottom: 5px; }
|
3136
|
+
|
3137
|
+
.btn-group > .btn-mini + .dropdown-toggle {
|
3138
|
+
padding-left: 5px;
|
3139
|
+
padding-right: 5px;
|
3140
|
+
*padding-top: 2px;
|
3141
|
+
*padding-bottom: 2px; }
|
3142
|
+
|
3143
|
+
.btn-group > .btn-small + .dropdown-toggle {
|
3144
|
+
*padding-top: 5px;
|
3145
|
+
*padding-bottom: 4px; }
|
3146
|
+
|
3147
|
+
.btn-group > .btn-large + .dropdown-toggle {
|
3148
|
+
padding-left: 12px;
|
3149
|
+
padding-right: 12px;
|
3150
|
+
*padding-top: 7px;
|
3151
|
+
*padding-bottom: 7px; }
|
3152
|
+
|
3153
|
+
.btn-group.open .dropdown-toggle {
|
3154
|
+
background-image: none; }
|
3155
|
+
.btn-group.open .btn.dropdown-toggle {
|
3156
|
+
background-color: #e6e6e6; }
|
3157
|
+
.btn-group.open .btn-primary.dropdown-toggle {
|
3158
|
+
background-color: #0044cc; }
|
3159
|
+
.btn-group.open .btn-warning.dropdown-toggle {
|
3160
|
+
background-color: #f89406; }
|
3161
|
+
.btn-group.open .btn-danger.dropdown-toggle {
|
3162
|
+
background-color: #bd362f; }
|
3163
|
+
.btn-group.open .btn-success.dropdown-toggle {
|
3164
|
+
background-color: #51a351; }
|
3165
|
+
.btn-group.open .btn-info.dropdown-toggle {
|
3166
|
+
background-color: #2f96b4; }
|
3167
|
+
.btn-group.open .btn-inverse.dropdown-toggle {
|
3168
|
+
background-color: #222222; }
|
3169
|
+
|
3170
|
+
.btn .caret {
|
3171
|
+
margin-top: 8px;
|
3172
|
+
margin-left: 0; }
|
3173
|
+
|
3174
|
+
.btn-large .caret {
|
3175
|
+
margin-top: 6px; }
|
3176
|
+
|
3177
|
+
.btn-large .caret {
|
3178
|
+
border-left-width: 5px;
|
3179
|
+
border-right-width: 5px;
|
3180
|
+
border-top-width: 5px; }
|
3181
|
+
|
3182
|
+
.btn-mini .caret,
|
3183
|
+
.btn-small .caret {
|
3184
|
+
margin-top: 8px; }
|
3185
|
+
|
3186
|
+
.dropup .btn-large .caret {
|
3187
|
+
border-bottom-width: 5px; }
|
3188
|
+
|
3189
|
+
.btn-primary .caret,
|
3190
|
+
.btn-warning .caret,
|
3191
|
+
.btn-danger .caret,
|
3192
|
+
.btn-info .caret,
|
3193
|
+
.btn-success .caret,
|
3194
|
+
.btn-inverse .caret {
|
3195
|
+
border-top-color: white;
|
3196
|
+
border-bottom-color: white; }
|
3197
|
+
|
3198
|
+
.btn-group-vertical {
|
3199
|
+
display: inline-block;
|
3200
|
+
*display: inline;
|
3201
|
+
/* IE7 inline-block hack */
|
3202
|
+
*zoom: 1; }
|
3203
|
+
|
3204
|
+
.btn-group-vertical > .btn {
|
3205
|
+
display: block;
|
3206
|
+
float: none;
|
3207
|
+
max-width: 100%;
|
3208
|
+
-webkit-border-radius: 0;
|
3209
|
+
-moz-border-radius: 0;
|
3210
|
+
border-radius: 0; }
|
3211
|
+
|
3212
|
+
.btn-group-vertical > .btn + .btn {
|
3213
|
+
margin-left: 0;
|
3214
|
+
margin-top: -1px; }
|
3215
|
+
|
3216
|
+
.alert {
|
3217
|
+
padding: 8px 35px 8px 14px;
|
3218
|
+
margin-bottom: 20px;
|
3219
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
3220
|
+
background-color: #fcf8e3;
|
3221
|
+
border: 1px solid #fbeed5; }
|
3222
|
+
|
3223
|
+
.alert,
|
3224
|
+
.alert h4 {
|
3225
|
+
color: #c09853; }
|
3226
|
+
|
3227
|
+
.alert h4 {
|
3228
|
+
margin: 0; }
|
3229
|
+
|
3230
|
+
.alert .close {
|
3231
|
+
position: relative;
|
3232
|
+
top: -2px;
|
3233
|
+
right: -21px;
|
3234
|
+
line-height: 20px; }
|
3235
|
+
|
3236
|
+
.alert-success {
|
3237
|
+
background-color: #dff0d8;
|
3238
|
+
border-color: #d6e9c6;
|
3239
|
+
color: #468847; }
|
3240
|
+
|
3241
|
+
.alert-success h4 {
|
3242
|
+
color: #468847; }
|
3243
|
+
|
3244
|
+
.alert-danger,
|
3245
|
+
.alert-error {
|
3246
|
+
background-color: #f2dede;
|
3247
|
+
border-color: #eed3d7;
|
3248
|
+
color: #b94a48; }
|
3249
|
+
|
3250
|
+
.alert-danger h4,
|
3251
|
+
.alert-error h4 {
|
3252
|
+
color: #b94a48; }
|
3253
|
+
|
3254
|
+
.alert-info {
|
3255
|
+
background-color: #d9edf7;
|
3256
|
+
border-color: #bce8f1;
|
3257
|
+
color: #3a87ad; }
|
3258
|
+
|
3259
|
+
.alert-info h4 {
|
3260
|
+
color: #3a87ad; }
|
3261
|
+
|
3262
|
+
.alert-block {
|
3263
|
+
padding-top: 14px;
|
3264
|
+
padding-bottom: 14px; }
|
3265
|
+
|
3266
|
+
.alert-block > p,
|
3267
|
+
.alert-block > ul {
|
3268
|
+
margin-bottom: 0; }
|
3269
|
+
|
3270
|
+
.alert-block p + p {
|
3271
|
+
margin-top: 5px; }
|
3272
|
+
|
3273
|
+
.nav {
|
3274
|
+
margin-left: 0;
|
3275
|
+
margin-bottom: 20px;
|
3276
|
+
list-style: none; }
|
3277
|
+
|
3278
|
+
.nav > li > a {
|
3279
|
+
display: block; }
|
3280
|
+
|
3281
|
+
.nav > li > a:hover,
|
3282
|
+
.nav > li > a:focus {
|
3283
|
+
text-decoration: none;
|
3284
|
+
background-color: #eeeeee; }
|
3285
|
+
|
3286
|
+
.nav > li > a > img {
|
3287
|
+
max-width: none; }
|
3288
|
+
|
3289
|
+
.nav > .pull-right {
|
3290
|
+
float: right; }
|
3291
|
+
|
3292
|
+
.nav-header {
|
3293
|
+
display: block;
|
3294
|
+
padding: 3px 15px;
|
3295
|
+
font-size: 11px;
|
3296
|
+
font-weight: bold;
|
3297
|
+
line-height: 20px;
|
3298
|
+
color: #999999;
|
3299
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
3300
|
+
text-transform: uppercase; }
|
3301
|
+
|
3302
|
+
.nav li + .nav-header {
|
3303
|
+
margin-top: 9px; }
|
3304
|
+
|
3305
|
+
.nav-list {
|
3306
|
+
padding-left: 15px;
|
3307
|
+
padding-right: 15px;
|
3308
|
+
margin-bottom: 0; }
|
3309
|
+
|
3310
|
+
.nav-list > li > a,
|
3311
|
+
.nav-list .nav-header {
|
3312
|
+
margin-left: -15px;
|
3313
|
+
margin-right: -15px;
|
3314
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
|
3315
|
+
|
3316
|
+
.nav-list > li > a {
|
3317
|
+
padding: 3px 15px; }
|
3318
|
+
|
3319
|
+
.nav-list > .active > a,
|
3320
|
+
.nav-list > .active > a:hover,
|
3321
|
+
.nav-list > .active > a:focus {
|
3322
|
+
color: white;
|
3323
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
3324
|
+
background-color: #0088cc; }
|
3325
|
+
|
3326
|
+
.nav-list [class^="icon-"],
|
3327
|
+
.nav-list [class*=" icon-"] {
|
3328
|
+
margin-right: 2px; }
|
3329
|
+
|
3330
|
+
.nav-list .divider {
|
3331
|
+
*width: 100%;
|
3332
|
+
height: 1px;
|
3333
|
+
margin: 9px 1px;
|
3334
|
+
*margin: -5px 0 5px;
|
3335
|
+
overflow: hidden;
|
3336
|
+
background-color: #e5e5e5;
|
3337
|
+
border-bottom: 1px solid white; }
|
3338
|
+
|
3339
|
+
.nav-tabs,
|
3340
|
+
.nav-pills {
|
3341
|
+
*zoom: 1; }
|
3342
|
+
.nav-tabs:before, .nav-tabs:after,
|
3343
|
+
.nav-pills:before,
|
3344
|
+
.nav-pills:after {
|
3345
|
+
display: table;
|
3346
|
+
content: "";
|
3347
|
+
line-height: 0; }
|
3348
|
+
.nav-tabs:after,
|
3349
|
+
.nav-pills:after {
|
3350
|
+
clear: both; }
|
3351
|
+
|
3352
|
+
.nav-tabs > li,
|
3353
|
+
.nav-pills > li {
|
3354
|
+
float: left; }
|
3355
|
+
|
3356
|
+
.nav-tabs > li > a,
|
3357
|
+
.nav-pills > li > a {
|
3358
|
+
padding-right: 12px;
|
3359
|
+
padding-left: 12px;
|
3360
|
+
margin-right: 2px;
|
3361
|
+
line-height: 14px; }
|
3362
|
+
|
3363
|
+
.nav-tabs {
|
3364
|
+
border-bottom: 1px solid #ddd; }
|
3365
|
+
|
3366
|
+
.nav-tabs > li {
|
3367
|
+
margin-bottom: -1px; }
|
3368
|
+
|
3369
|
+
.nav-tabs > li > a {
|
3370
|
+
padding-top: 8px;
|
3371
|
+
padding-bottom: 8px;
|
3372
|
+
line-height: 20px;
|
3373
|
+
border: 1px solid transparent; }
|
3374
|
+
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
|
3375
|
+
border-color: #eeeeee #eeeeee #dddddd; }
|
3376
|
+
|
3377
|
+
.nav-tabs > .active > a,
|
3378
|
+
.nav-tabs > .active > a:hover,
|
3379
|
+
.nav-tabs > .active > a:focus {
|
3380
|
+
color: #555555;
|
3381
|
+
background-color: white;
|
3382
|
+
border: 1px solid #ddd;
|
3383
|
+
border-bottom-color: transparent;
|
3384
|
+
cursor: default; }
|
3385
|
+
|
3386
|
+
.nav-pills > li > a {
|
3387
|
+
padding-top: 8px;
|
3388
|
+
padding-bottom: 8px;
|
3389
|
+
margin-top: 2px;
|
3390
|
+
margin-bottom: 2px; }
|
3391
|
+
|
3392
|
+
.nav-pills > .active > a,
|
3393
|
+
.nav-pills > .active > a:hover,
|
3394
|
+
.nav-pills > .active > a:focus {
|
3395
|
+
color: white;
|
3396
|
+
background-color: #0088cc; }
|
3397
|
+
|
3398
|
+
.nav-stacked > li {
|
3399
|
+
float: none; }
|
3400
|
+
|
3401
|
+
.nav-stacked > li > a {
|
3402
|
+
margin-right: 0; }
|
3403
|
+
|
3404
|
+
.nav-tabs.nav-stacked {
|
3405
|
+
border-bottom: 0; }
|
3406
|
+
|
3407
|
+
.nav-tabs.nav-stacked > li > a {
|
3408
|
+
border: 1px solid #ddd; }
|
3409
|
+
|
3410
|
+
.nav-tabs.nav-stacked > li > a:hover,
|
3411
|
+
.nav-tabs.nav-stacked > li > a:focus {
|
3412
|
+
border-color: #ddd;
|
3413
|
+
z-index: 2; }
|
3414
|
+
|
3415
|
+
.nav-pills.nav-stacked > li > a {
|
3416
|
+
margin-bottom: 3px; }
|
3417
|
+
|
3418
|
+
.nav-pills.nav-stacked > li:last-child > a {
|
3419
|
+
margin-bottom: 1px; }
|
3420
|
+
|
3421
|
+
.nav .dropdown-toggle .caret {
|
3422
|
+
border-top-color: #0088cc;
|
3423
|
+
border-bottom-color: #0088cc;
|
3424
|
+
margin-top: 6px; }
|
3425
|
+
|
3426
|
+
.nav .dropdown-toggle:hover .caret,
|
3427
|
+
.nav .dropdown-toggle:focus .caret {
|
3428
|
+
border-top-color: #005580;
|
3429
|
+
border-bottom-color: #005580; }
|
3430
|
+
|
3431
|
+
/* move down carets for tabs */
|
3432
|
+
.nav-tabs .dropdown-toggle .caret {
|
3433
|
+
margin-top: 8px; }
|
3434
|
+
|
3435
|
+
.nav .active .dropdown-toggle .caret {
|
3436
|
+
border-top-color: #fff;
|
3437
|
+
border-bottom-color: #fff; }
|
3438
|
+
|
3439
|
+
.nav-tabs .active .dropdown-toggle .caret {
|
3440
|
+
border-top-color: #555555;
|
3441
|
+
border-bottom-color: #555555; }
|
3442
|
+
|
3443
|
+
.nav > .dropdown.active > a:hover,
|
3444
|
+
.nav > .dropdown.active > a:focus {
|
3445
|
+
cursor: pointer; }
|
3446
|
+
|
3447
|
+
.nav-tabs .open .dropdown-toggle,
|
3448
|
+
.nav-pills .open .dropdown-toggle,
|
3449
|
+
.nav > li.dropdown.open.active > a:hover,
|
3450
|
+
.nav > li.dropdown.open.active > a:focus {
|
3451
|
+
color: white;
|
3452
|
+
background-color: #999999;
|
3453
|
+
border-color: #999999; }
|
3454
|
+
|
3455
|
+
.nav li.dropdown.open .caret,
|
3456
|
+
.nav li.dropdown.open.active .caret,
|
3457
|
+
.nav li.dropdown.open a:hover .caret,
|
3458
|
+
.nav li.dropdown.open a:focus .caret {
|
3459
|
+
border-top-color: white;
|
3460
|
+
border-bottom-color: white;
|
3461
|
+
opacity: 1;
|
3462
|
+
filter: alpha(opacity=100); }
|
3463
|
+
|
3464
|
+
.tabs-stacked .open > a:hover,
|
3465
|
+
.tabs-stacked .open > a:focus {
|
3466
|
+
border-color: #999999; }
|
3467
|
+
|
3468
|
+
.tabbable {
|
3469
|
+
*zoom: 1; }
|
3470
|
+
.tabbable:before, .tabbable:after {
|
3471
|
+
display: table;
|
3472
|
+
content: "";
|
3473
|
+
line-height: 0; }
|
3474
|
+
.tabbable:after {
|
3475
|
+
clear: both; }
|
3476
|
+
|
3477
|
+
.tab-content {
|
3478
|
+
overflow: auto; }
|
3479
|
+
|
3480
|
+
.tabs-below > .nav-tabs,
|
3481
|
+
.tabs-right > .nav-tabs,
|
3482
|
+
.tabs-left > .nav-tabs {
|
3483
|
+
border-bottom: 0; }
|
3484
|
+
|
3485
|
+
.tab-content > .tab-pane,
|
3486
|
+
.pill-content > .pill-pane {
|
3487
|
+
display: none; }
|
3488
|
+
|
3489
|
+
.tab-content > .active,
|
3490
|
+
.pill-content > .active {
|
3491
|
+
display: block; }
|
3492
|
+
|
3493
|
+
.tabs-below > .nav-tabs {
|
3494
|
+
border-top: 1px solid #ddd; }
|
3495
|
+
|
3496
|
+
.tabs-below > .nav-tabs > li {
|
3497
|
+
margin-top: -1px;
|
3498
|
+
margin-bottom: 0; }
|
3499
|
+
|
3500
|
+
.tabs-below > .nav-tabs > li > a:hover, .tabs-below > .nav-tabs > li > a:focus {
|
3501
|
+
border-bottom-color: transparent;
|
3502
|
+
border-top-color: #ddd; }
|
3503
|
+
|
3504
|
+
.tabs-below > .nav-tabs > .active > a,
|
3505
|
+
.tabs-below > .nav-tabs > .active > a:hover,
|
3506
|
+
.tabs-below > .nav-tabs > .active > a:focus {
|
3507
|
+
border-color: transparent #ddd #ddd #ddd; }
|
3508
|
+
|
3509
|
+
.tabs-left > .nav-tabs > li,
|
3510
|
+
.tabs-right > .nav-tabs > li {
|
3511
|
+
float: none; }
|
3512
|
+
|
3513
|
+
.tabs-left > .nav-tabs > li > a,
|
3514
|
+
.tabs-right > .nav-tabs > li > a {
|
3515
|
+
min-width: 74px;
|
3516
|
+
margin-right: 0;
|
3517
|
+
margin-bottom: 3px; }
|
3518
|
+
|
3519
|
+
.tabs-left > .nav-tabs {
|
3520
|
+
float: left;
|
3521
|
+
margin-right: 19px;
|
3522
|
+
border-right: 1px solid #ddd; }
|
3523
|
+
|
3524
|
+
.tabs-left > .nav-tabs > li > a {
|
3525
|
+
margin-right: -1px; }
|
3526
|
+
|
3527
|
+
.tabs-left > .nav-tabs > li > a:hover,
|
3528
|
+
.tabs-left > .nav-tabs > li > a:focus {
|
3529
|
+
border-color: #eeeeee #dddddd #eeeeee #eeeeee; }
|
3530
|
+
|
3531
|
+
.tabs-left > .nav-tabs .active > a,
|
3532
|
+
.tabs-left > .nav-tabs .active > a:hover,
|
3533
|
+
.tabs-left > .nav-tabs .active > a:focus {
|
3534
|
+
border-color: #ddd transparent #ddd #ddd;
|
3535
|
+
*border-right-color: white; }
|
3536
|
+
|
3537
|
+
.tabs-right > .nav-tabs {
|
3538
|
+
float: right;
|
3539
|
+
margin-left: 19px;
|
3540
|
+
border-left: 1px solid #ddd; }
|
3541
|
+
|
3542
|
+
.tabs-right > .nav-tabs > li > a {
|
3543
|
+
margin-left: -1px; }
|
3544
|
+
|
3545
|
+
.tabs-right > .nav-tabs > li > a:hover,
|
3546
|
+
.tabs-right > .nav-tabs > li > a:focus {
|
3547
|
+
border-color: #eeeeee #eeeeee #eeeeee #dddddd; }
|
3548
|
+
|
3549
|
+
.tabs-right > .nav-tabs .active > a,
|
3550
|
+
.tabs-right > .nav-tabs .active > a:hover,
|
3551
|
+
.tabs-right > .nav-tabs .active > a:focus {
|
3552
|
+
border-color: #ddd #ddd #ddd transparent;
|
3553
|
+
*border-left-color: white; }
|
3554
|
+
|
3555
|
+
.nav > .disabled > a {
|
3556
|
+
color: #999999; }
|
3557
|
+
|
3558
|
+
.nav > .disabled > a:hover,
|
3559
|
+
.nav > .disabled > a:focus {
|
3560
|
+
text-decoration: none;
|
3561
|
+
background-color: transparent;
|
3562
|
+
cursor: default; }
|
3563
|
+
|
3564
|
+
.navbar {
|
3565
|
+
overflow: visible;
|
3566
|
+
margin-bottom: 20px;
|
3567
|
+
*position: relative;
|
3568
|
+
*z-index: 2; }
|
3569
|
+
|
3570
|
+
.navbar-inner {
|
3571
|
+
min-height: 40px;
|
3572
|
+
padding-left: 20px;
|
3573
|
+
padding-right: 20px;
|
3574
|
+
background-color: #f9f9f9;
|
3575
|
+
border: 1px solid #d4d4d4;
|
3576
|
+
*zoom: 1; }
|
3577
|
+
.navbar-inner:before, .navbar-inner:after {
|
3578
|
+
display: table;
|
3579
|
+
content: "";
|
3580
|
+
line-height: 0; }
|
3581
|
+
.navbar-inner:after {
|
3582
|
+
clear: both; }
|
3583
|
+
|
3584
|
+
.navbar .container {
|
3585
|
+
width: auto; }
|
3586
|
+
|
3587
|
+
.nav-collapse.collapse {
|
3588
|
+
height: auto;
|
3589
|
+
overflow: visible; }
|
3590
|
+
|
3591
|
+
.navbar .brand {
|
3592
|
+
float: left;
|
3593
|
+
display: block;
|
3594
|
+
padding: 10px 20px 10px;
|
3595
|
+
margin-left: -20px;
|
3596
|
+
font-size: 20px;
|
3597
|
+
font-weight: 200;
|
3598
|
+
color: #777777;
|
3599
|
+
text-shadow: 0 1px 0 white; }
|
3600
|
+
.navbar .brand:hover, .navbar .brand:focus {
|
3601
|
+
text-decoration: none; }
|
3602
|
+
|
3603
|
+
.navbar-text {
|
3604
|
+
margin-bottom: 0;
|
3605
|
+
line-height: 40px;
|
3606
|
+
color: #777777; }
|
3607
|
+
|
3608
|
+
.navbar-link {
|
3609
|
+
color: #777777; }
|
3610
|
+
.navbar-link:hover, .navbar-link:focus {
|
3611
|
+
color: #333333; }
|
3612
|
+
|
3613
|
+
.navbar .divider-vertical {
|
3614
|
+
height: 40px;
|
3615
|
+
margin: 0 9px;
|
3616
|
+
border-left: 1px solid #f2f2f2;
|
3617
|
+
border-right: 1px solid white; }
|
3618
|
+
|
3619
|
+
.navbar .btn,
|
3620
|
+
.navbar .btn-group {
|
3621
|
+
margin-top: 5px; }
|
3622
|
+
|
3623
|
+
.navbar .btn-group .btn,
|
3624
|
+
.navbar .input-prepend .btn,
|
3625
|
+
.navbar .input-append .btn,
|
3626
|
+
.navbar .input-prepend .btn-group,
|
3627
|
+
.navbar .input-append .btn-group {
|
3628
|
+
margin-top: 0; }
|
3629
|
+
|
3630
|
+
.navbar-form {
|
3631
|
+
margin-bottom: 0;
|
3632
|
+
*zoom: 1; }
|
3633
|
+
.navbar-form:before, .navbar-form:after {
|
3634
|
+
display: table;
|
3635
|
+
content: "";
|
3636
|
+
line-height: 0; }
|
3637
|
+
.navbar-form:after {
|
3638
|
+
clear: both; }
|
3639
|
+
.navbar-form input,
|
3640
|
+
.navbar-form select,
|
3641
|
+
.navbar-form .radio,
|
3642
|
+
.navbar-form .checkbox {
|
3643
|
+
margin-top: 5px; }
|
3644
|
+
.navbar-form input,
|
3645
|
+
.navbar-form select,
|
3646
|
+
.navbar-form .btn {
|
3647
|
+
display: inline-block;
|
3648
|
+
margin-bottom: 0; }
|
3649
|
+
.navbar-form input[type="image"],
|
3650
|
+
.navbar-form input[type="checkbox"],
|
3651
|
+
.navbar-form input[type="radio"] {
|
3652
|
+
margin-top: 3px; }
|
3653
|
+
.navbar-form .input-append,
|
3654
|
+
.navbar-form .input-prepend {
|
3655
|
+
margin-top: 5px;
|
3656
|
+
white-space: nowrap; }
|
3657
|
+
.navbar-form .input-append input,
|
3658
|
+
.navbar-form .input-prepend input {
|
3659
|
+
margin-top: 0; }
|
3660
|
+
|
3661
|
+
.navbar-search {
|
3662
|
+
position: relative;
|
3663
|
+
float: left;
|
3664
|
+
margin-top: 5px;
|
3665
|
+
margin-bottom: 0; }
|
3666
|
+
.navbar-search .search-query {
|
3667
|
+
margin-bottom: 0;
|
3668
|
+
padding: 4px 14px;
|
3669
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
3670
|
+
font-size: 13px;
|
3671
|
+
font-weight: normal;
|
3672
|
+
line-height: 1; }
|
3673
|
+
|
3674
|
+
.navbar-static-top {
|
3675
|
+
position: static;
|
3676
|
+
margin-bottom: 0; }
|
3677
|
+
|
3678
|
+
.navbar-fixed-top,
|
3679
|
+
.navbar-fixed-bottom {
|
3680
|
+
position: fixed;
|
3681
|
+
right: 0;
|
3682
|
+
left: 0;
|
3683
|
+
z-index: 1030;
|
3684
|
+
margin-bottom: 0; }
|
3685
|
+
|
3686
|
+
.navbar-fixed-top .navbar-inner,
|
3687
|
+
.navbar-static-top .navbar-inner {
|
3688
|
+
border-width: 0 0 1px; }
|
3689
|
+
|
3690
|
+
.navbar-fixed-bottom .navbar-inner {
|
3691
|
+
border-width: 1px 0 0; }
|
3692
|
+
|
3693
|
+
.navbar-fixed-top .navbar-inner,
|
3694
|
+
.navbar-fixed-bottom .navbar-inner {
|
3695
|
+
padding-left: 0;
|
3696
|
+
padding-right: 0; }
|
3697
|
+
|
3698
|
+
.navbar-static-top .container,
|
3699
|
+
.navbar-fixed-top .container,
|
3700
|
+
.navbar-fixed-bottom .container {
|
3701
|
+
width: 940px; }
|
3702
|
+
|
3703
|
+
.navbar-fixed-top {
|
3704
|
+
top: 0; }
|
3705
|
+
|
3706
|
+
.navbar-fixed-bottom {
|
3707
|
+
bottom: 0; }
|
3708
|
+
|
3709
|
+
.navbar .nav {
|
3710
|
+
position: relative;
|
3711
|
+
left: 0;
|
3712
|
+
display: block;
|
3713
|
+
float: left;
|
3714
|
+
margin: 0 10px 0 0; }
|
3715
|
+
|
3716
|
+
.navbar .nav.pull-right {
|
3717
|
+
float: right;
|
3718
|
+
margin-right: 0; }
|
3719
|
+
|
3720
|
+
.navbar .nav > li {
|
3721
|
+
float: left; }
|
3722
|
+
|
3723
|
+
.navbar .nav > li > a {
|
3724
|
+
float: none;
|
3725
|
+
padding: 10px 15px 10px;
|
3726
|
+
color: #777777;
|
3727
|
+
text-decoration: none;
|
3728
|
+
text-shadow: 0 1px 0 white; }
|
3729
|
+
|
3730
|
+
.navbar .nav .dropdown-toggle .caret {
|
3731
|
+
margin-top: 8px; }
|
3732
|
+
|
3733
|
+
.navbar .nav > li > a:focus,
|
3734
|
+
.navbar .nav > li > a:hover {
|
3735
|
+
background-color: transparent;
|
3736
|
+
color: #333333;
|
3737
|
+
text-decoration: none; }
|
3738
|
+
|
3739
|
+
.navbar .nav > .active > a,
|
3740
|
+
.navbar .nav > .active > a:hover,
|
3741
|
+
.navbar .nav > .active > a:focus {
|
3742
|
+
color: #555555;
|
3743
|
+
text-decoration: none;
|
3744
|
+
background-color: #e6e6e6; }
|
3745
|
+
|
3746
|
+
.navbar .btn-navbar {
|
3747
|
+
display: none;
|
3748
|
+
float: right;
|
3749
|
+
padding: 7px 10px;
|
3750
|
+
margin-left: 5px;
|
3751
|
+
margin-right: 5px;
|
3752
|
+
color: white;
|
3753
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
3754
|
+
background-color: #ededed;
|
3755
|
+
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
3756
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
3757
|
+
*background-color: #e6e6e6;
|
3758
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
3759
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
3760
|
+
.navbar .btn-navbar:hover, .navbar .btn-navbar:focus, .navbar .btn-navbar:active, .navbar .btn-navbar.active, .navbar .btn-navbar.disabled, .navbar .btn-navbar[disabled] {
|
3761
|
+
color: white;
|
3762
|
+
background-color: #e6e6e6;
|
3763
|
+
*background-color: #d9d9d9; }
|
3764
|
+
.navbar .btn-navbar:active, .navbar .btn-navbar.active {
|
3765
|
+
background-color: #cccccc \9; }
|
3766
|
+
|
3767
|
+
.navbar .btn-navbar .icon-bar {
|
3768
|
+
display: block;
|
3769
|
+
width: 18px;
|
3770
|
+
height: 2px;
|
3771
|
+
background-color: #f5f5f5; }
|
3772
|
+
|
3773
|
+
.btn-navbar .icon-bar + .icon-bar {
|
3774
|
+
margin-top: 3px; }
|
3775
|
+
|
3776
|
+
.navbar .nav > li > .dropdown-menu:before {
|
3777
|
+
content: '';
|
3778
|
+
display: inline-block;
|
3779
|
+
border-left: 7px solid transparent;
|
3780
|
+
border-right: 7px solid transparent;
|
3781
|
+
border-bottom: 7px solid #ccc;
|
3782
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
3783
|
+
position: absolute;
|
3784
|
+
top: -7px;
|
3785
|
+
left: 9px; }
|
3786
|
+
.navbar .nav > li > .dropdown-menu:after {
|
3787
|
+
content: '';
|
3788
|
+
display: inline-block;
|
3789
|
+
border-left: 6px solid transparent;
|
3790
|
+
border-right: 6px solid transparent;
|
3791
|
+
border-bottom: 6px solid white;
|
3792
|
+
position: absolute;
|
3793
|
+
top: -6px;
|
3794
|
+
left: 10px; }
|
3795
|
+
|
3796
|
+
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
|
3797
|
+
border-top: 7px solid #ccc;
|
3798
|
+
border-top-color: rgba(0, 0, 0, 0.2);
|
3799
|
+
border-bottom: 0;
|
3800
|
+
bottom: -7px;
|
3801
|
+
top: auto; }
|
3802
|
+
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
|
3803
|
+
border-top: 6px solid white;
|
3804
|
+
border-bottom: 0;
|
3805
|
+
bottom: -6px;
|
3806
|
+
top: auto; }
|
3807
|
+
|
3808
|
+
.navbar .nav li.dropdown > a:hover .caret,
|
3809
|
+
.navbar .nav li.dropdown > a:focus .caret {
|
3810
|
+
border-top-color: #555555;
|
3811
|
+
border-bottom-color: #555555; }
|
3812
|
+
|
3813
|
+
.navbar .nav li.dropdown.open > .dropdown-toggle,
|
3814
|
+
.navbar .nav li.dropdown.active > .dropdown-toggle,
|
3815
|
+
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
|
3816
|
+
background-color: #e6e6e6;
|
3817
|
+
color: #555555; }
|
3818
|
+
|
3819
|
+
.navbar .nav li.dropdown > .dropdown-toggle .caret {
|
3820
|
+
border-top-color: #777777;
|
3821
|
+
border-bottom-color: #777777; }
|
3822
|
+
|
3823
|
+
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
|
3824
|
+
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
|
3825
|
+
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
|
3826
|
+
border-top-color: #555555;
|
3827
|
+
border-bottom-color: #555555; }
|
3828
|
+
|
3829
|
+
.navbar .pull-right > li > .dropdown-menu,
|
3830
|
+
.navbar .nav > li > .dropdown-menu.pull-right {
|
3831
|
+
left: auto;
|
3832
|
+
right: 0; }
|
3833
|
+
.navbar .pull-right > li > .dropdown-menu:before,
|
3834
|
+
.navbar .nav > li > .dropdown-menu.pull-right:before {
|
3835
|
+
left: auto;
|
3836
|
+
right: 12px; }
|
3837
|
+
.navbar .pull-right > li > .dropdown-menu:after,
|
3838
|
+
.navbar .nav > li > .dropdown-menu.pull-right:after {
|
3839
|
+
left: auto;
|
3840
|
+
right: 13px; }
|
3841
|
+
.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
|
3842
|
+
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
|
3843
|
+
left: auto;
|
3844
|
+
right: 100%;
|
3845
|
+
margin-left: 0;
|
3846
|
+
margin-right: -1px; }
|
3847
|
+
|
3848
|
+
.navbar-inverse .navbar-inner {
|
3849
|
+
background-color: #1b1b1b;
|
3850
|
+
border-color: #252525; }
|
3851
|
+
.navbar-inverse .brand,
|
3852
|
+
.navbar-inverse .nav > li > a {
|
3853
|
+
color: #999999;
|
3854
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }
|
3855
|
+
.navbar-inverse .brand:hover, .navbar-inverse .brand:focus,
|
3856
|
+
.navbar-inverse .nav > li > a:hover,
|
3857
|
+
.navbar-inverse .nav > li > a:focus {
|
3858
|
+
color: white; }
|
3859
|
+
.navbar-inverse .brand {
|
3860
|
+
color: #999999; }
|
3861
|
+
.navbar-inverse .navbar-text {
|
3862
|
+
color: #999999; }
|
3863
|
+
.navbar-inverse .nav > li > a:focus,
|
3864
|
+
.navbar-inverse .nav > li > a:hover {
|
3865
|
+
background-color: transparent;
|
3866
|
+
color: white; }
|
3867
|
+
.navbar-inverse .nav .active > a,
|
3868
|
+
.navbar-inverse .nav .active > a:hover,
|
3869
|
+
.navbar-inverse .nav .active > a:focus {
|
3870
|
+
color: white;
|
3871
|
+
background-color: #111111; }
|
3872
|
+
.navbar-inverse .navbar-link {
|
3873
|
+
color: #999999; }
|
3874
|
+
.navbar-inverse .navbar-link:hover, .navbar-inverse .navbar-link:focus {
|
3875
|
+
color: white; }
|
3876
|
+
.navbar-inverse .divider-vertical {
|
3877
|
+
border-left-color: #111111;
|
3878
|
+
border-right-color: #222222; }
|
3879
|
+
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
|
3880
|
+
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
|
3881
|
+
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
|
3882
|
+
background-color: #111111;
|
3883
|
+
color: white; }
|
3884
|
+
.navbar-inverse .nav li.dropdown > a:hover .caret,
|
3885
|
+
.navbar-inverse .nav li.dropdown > a:focus .caret {
|
3886
|
+
border-top-color: white;
|
3887
|
+
color: white; }
|
3888
|
+
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
|
3889
|
+
border-top-color: #999999;
|
3890
|
+
border-bottom-color: #999999; }
|
3891
|
+
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
|
3892
|
+
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
|
3893
|
+
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
|
3894
|
+
border-top-color: white;
|
3895
|
+
border-bottom-color: white; }
|
3896
|
+
.navbar-inverse .navbar-search .search-query {
|
3897
|
+
color: white;
|
3898
|
+
background-color: #515151;
|
3899
|
+
border-color: #111111;
|
3900
|
+
-webkit-transition: none;
|
3901
|
+
-moz-transition: none;
|
3902
|
+
-o-transition: none;
|
3903
|
+
transition: none; }
|
3904
|
+
.navbar-inverse .navbar-search .search-query:-moz-placeholder {
|
3905
|
+
color: #cccccc; }
|
3906
|
+
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
|
3907
|
+
color: #cccccc; }
|
3908
|
+
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
|
3909
|
+
color: #cccccc; }
|
3910
|
+
.navbar-inverse .navbar-search .search-query:focus, .navbar-inverse .navbar-search .search-query.focused {
|
3911
|
+
padding: 5px 15px;
|
3912
|
+
color: #333333;
|
3913
|
+
text-shadow: 0 1px 0 white;
|
3914
|
+
background-color: white;
|
3915
|
+
border: 0;
|
3916
|
+
outline: 0; }
|
3917
|
+
.navbar-inverse .btn-navbar {
|
3918
|
+
color: white;
|
3919
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
3920
|
+
background-color: #0e0e0e;
|
3921
|
+
border-color: #040404 #040404 black;
|
3922
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
3923
|
+
*background-color: #040404;
|
3924
|
+
/* Darken IE7 buttons by default so they stand out more given they won't have borders */
|
3925
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
3926
|
+
.navbar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar:focus, .navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active, .navbar-inverse .btn-navbar.disabled, .navbar-inverse .btn-navbar[disabled] {
|
3927
|
+
color: white;
|
3928
|
+
background-color: #040404;
|
3929
|
+
*background-color: black; }
|
3930
|
+
.navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active {
|
3931
|
+
background-color: black \9; }
|
3932
|
+
|
3933
|
+
.breadcrumb {
|
3934
|
+
padding: 8px 15px;
|
3935
|
+
margin: 0 0 20px;
|
3936
|
+
list-style: none;
|
3937
|
+
background-color: #f5f5f5; }
|
3938
|
+
.breadcrumb > li {
|
3939
|
+
display: inline-block;
|
3940
|
+
*display: inline;
|
3941
|
+
/* IE7 inline-block hack */
|
3942
|
+
*zoom: 1;
|
3943
|
+
text-shadow: 0 1px 0 white; }
|
3944
|
+
.breadcrumb > li > .divider {
|
3945
|
+
padding: 0 5px;
|
3946
|
+
color: #ccc; }
|
3947
|
+
.breadcrumb .active {
|
3948
|
+
color: #999999; }
|
3949
|
+
|
3950
|
+
.pagination {
|
3951
|
+
margin: 20px 0; }
|
3952
|
+
|
3953
|
+
.pagination ul {
|
3954
|
+
display: inline-block;
|
3955
|
+
*display: inline;
|
3956
|
+
/* IE7 inline-block hack */
|
3957
|
+
*zoom: 1;
|
3958
|
+
margin-left: 0;
|
3959
|
+
margin-bottom: 0; }
|
3960
|
+
|
3961
|
+
.pagination ul > li {
|
3962
|
+
display: inline; }
|
3963
|
+
|
3964
|
+
.pagination ul > li > a,
|
3965
|
+
.pagination ul > li > span {
|
3966
|
+
float: left;
|
3967
|
+
padding: 4px 12px;
|
3968
|
+
line-height: 20px;
|
3969
|
+
text-decoration: none;
|
3970
|
+
background-color: white;
|
3971
|
+
border: 1px solid #dddddd;
|
3972
|
+
border-left-width: 0; }
|
3973
|
+
|
3974
|
+
.pagination ul > li > a:hover,
|
3975
|
+
.pagination ul > li > a:focus,
|
3976
|
+
.pagination ul > .active > a,
|
3977
|
+
.pagination ul > .active > span {
|
3978
|
+
background-color: whitesmoke; }
|
3979
|
+
|
3980
|
+
.pagination ul > .active > a,
|
3981
|
+
.pagination ul > .active > span {
|
3982
|
+
color: #999999;
|
3983
|
+
cursor: default; }
|
3984
|
+
|
3985
|
+
.pagination ul > .disabled > span,
|
3986
|
+
.pagination ul > .disabled > a,
|
3987
|
+
.pagination ul > .disabled > a:hover,
|
3988
|
+
.pagination ul > .disabled > a:focus {
|
3989
|
+
color: #999999;
|
3990
|
+
background-color: transparent;
|
3991
|
+
cursor: default; }
|
3992
|
+
|
3993
|
+
.pagination ul > li:first-child > a,
|
3994
|
+
.pagination ul > li:first-child > span {
|
3995
|
+
border-left-width: 1px; }
|
3996
|
+
|
3997
|
+
.pagination-centered {
|
3998
|
+
text-align: center; }
|
3999
|
+
|
4000
|
+
.pagination-right {
|
4001
|
+
text-align: right; }
|
4002
|
+
|
4003
|
+
.pagination-large ul > li > a,
|
4004
|
+
.pagination-large ul > li > span {
|
4005
|
+
padding: 11px 19px;
|
4006
|
+
font-size: 17.5px; }
|
4007
|
+
|
4008
|
+
.pagination-small ul > li > a,
|
4009
|
+
.pagination-small ul > li > span {
|
4010
|
+
padding: 2px 10px;
|
4011
|
+
font-size: 11.9px; }
|
4012
|
+
|
4013
|
+
.pagination-mini ul > li > a,
|
4014
|
+
.pagination-mini ul > li > span {
|
4015
|
+
padding: 0px 6px;
|
4016
|
+
font-size: 10.5px; }
|
4017
|
+
|
4018
|
+
.pager {
|
4019
|
+
margin: 20px 0;
|
4020
|
+
list-style: none;
|
4021
|
+
text-align: center;
|
4022
|
+
*zoom: 1; }
|
4023
|
+
.pager:before, .pager:after {
|
4024
|
+
display: table;
|
4025
|
+
content: "";
|
4026
|
+
line-height: 0; }
|
4027
|
+
.pager:after {
|
4028
|
+
clear: both; }
|
4029
|
+
|
4030
|
+
.pager li {
|
4031
|
+
display: inline; }
|
4032
|
+
|
4033
|
+
.pager li > a,
|
4034
|
+
.pager li > span {
|
4035
|
+
display: inline-block;
|
4036
|
+
padding: 5px 14px;
|
4037
|
+
background-color: #fff;
|
4038
|
+
border: 1px solid #ddd; }
|
4039
|
+
|
4040
|
+
.pager li > a:hover,
|
4041
|
+
.pager li > a:focus {
|
4042
|
+
text-decoration: none;
|
4043
|
+
background-color: #f5f5f5; }
|
4044
|
+
|
4045
|
+
.pager .next > a,
|
4046
|
+
.pager .next > span {
|
4047
|
+
float: right; }
|
4048
|
+
|
4049
|
+
.pager .previous > a,
|
4050
|
+
.pager .previous > span {
|
4051
|
+
float: left; }
|
4052
|
+
|
4053
|
+
.pager .disabled > a,
|
4054
|
+
.pager .disabled > a:hover,
|
4055
|
+
.pager .disabled > a:focus,
|
4056
|
+
.pager .disabled > span {
|
4057
|
+
color: #999999;
|
4058
|
+
background-color: #fff;
|
4059
|
+
cursor: default; }
|
4060
|
+
|
4061
|
+
.modal-backdrop {
|
4062
|
+
position: fixed;
|
4063
|
+
top: 0;
|
4064
|
+
right: 0;
|
4065
|
+
bottom: 0;
|
4066
|
+
left: 0;
|
4067
|
+
z-index: 1040;
|
4068
|
+
background-color: black; }
|
4069
|
+
.modal-backdrop.fade {
|
4070
|
+
opacity: 0; }
|
4071
|
+
|
4072
|
+
.modal-backdrop,
|
4073
|
+
.modal-backdrop.fade.in {
|
4074
|
+
opacity: 0.8;
|
4075
|
+
filter: alpha(opacity=80); }
|
4076
|
+
|
4077
|
+
.modal {
|
4078
|
+
position: fixed;
|
4079
|
+
top: 10%;
|
4080
|
+
left: 50%;
|
4081
|
+
z-index: 1050;
|
4082
|
+
width: 560px;
|
4083
|
+
margin-left: -280px;
|
4084
|
+
background-color: white;
|
4085
|
+
border: 1px solid #999;
|
4086
|
+
border: 1px solid rgba(0, 0, 0, 0.3);
|
4087
|
+
*border: 1px solid #999;
|
4088
|
+
/* IE6-7 */
|
4089
|
+
-webkit-background-clip: padding-box;
|
4090
|
+
-moz-background-clip: padding-box;
|
4091
|
+
background-clip: padding-box;
|
4092
|
+
outline: none; }
|
4093
|
+
.modal.fade {
|
4094
|
+
-webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
|
4095
|
+
-moz-transition: opacity 0.3s linear, top 0.3s ease-out;
|
4096
|
+
-o-transition: opacity 0.3s linear, top 0.3s ease-out;
|
4097
|
+
transition: opacity 0.3s linear, top 0.3s ease-out;
|
4098
|
+
top: -25%; }
|
4099
|
+
.modal.fade.in {
|
4100
|
+
top: 10%; }
|
4101
|
+
|
4102
|
+
.modal-header {
|
4103
|
+
padding: 9px 15px;
|
4104
|
+
border-bottom: 1px solid #eee; }
|
4105
|
+
.modal-header .close {
|
4106
|
+
margin-top: 2px; }
|
4107
|
+
.modal-header h3 {
|
4108
|
+
margin: 0;
|
4109
|
+
line-height: 30px; }
|
4110
|
+
|
4111
|
+
.modal-body {
|
4112
|
+
position: relative;
|
4113
|
+
overflow-y: auto;
|
4114
|
+
max-height: 400px;
|
4115
|
+
padding: 15px; }
|
4116
|
+
|
4117
|
+
.modal-form {
|
4118
|
+
margin-bottom: 0; }
|
4119
|
+
|
4120
|
+
.modal-footer {
|
4121
|
+
padding: 14px 15px 15px;
|
4122
|
+
margin-bottom: 0;
|
4123
|
+
text-align: right;
|
4124
|
+
background-color: #f5f5f5;
|
4125
|
+
border-top: 1px solid #ddd;
|
4126
|
+
*zoom: 1; }
|
4127
|
+
.modal-footer:before, .modal-footer:after {
|
4128
|
+
display: table;
|
4129
|
+
content: "";
|
4130
|
+
line-height: 0; }
|
4131
|
+
.modal-footer:after {
|
4132
|
+
clear: both; }
|
4133
|
+
.modal-footer .btn + .btn {
|
4134
|
+
margin-left: 5px;
|
4135
|
+
margin-bottom: 0; }
|
4136
|
+
.modal-footer .btn-group .btn + .btn {
|
4137
|
+
margin-left: -1px; }
|
4138
|
+
.modal-footer .btn-block + .btn-block {
|
4139
|
+
margin-left: 0; }
|
4140
|
+
|
4141
|
+
.tooltip {
|
4142
|
+
position: absolute;
|
4143
|
+
z-index: 1030;
|
4144
|
+
display: block;
|
4145
|
+
visibility: visible;
|
4146
|
+
font-size: 11px;
|
4147
|
+
line-height: 1.4;
|
4148
|
+
opacity: 0;
|
4149
|
+
filter: alpha(opacity=0); }
|
4150
|
+
.tooltip.in {
|
4151
|
+
opacity: 0.8;
|
4152
|
+
filter: alpha(opacity=80); }
|
4153
|
+
.tooltip.top {
|
4154
|
+
margin-top: -3px;
|
4155
|
+
padding: 5px 0; }
|
4156
|
+
.tooltip.right {
|
4157
|
+
margin-left: 3px;
|
4158
|
+
padding: 0 5px; }
|
4159
|
+
.tooltip.bottom {
|
4160
|
+
margin-top: 3px;
|
4161
|
+
padding: 5px 0; }
|
4162
|
+
.tooltip.left {
|
4163
|
+
margin-left: -3px;
|
4164
|
+
padding: 0 5px; }
|
4165
|
+
|
4166
|
+
.tooltip-inner {
|
4167
|
+
max-width: 200px;
|
4168
|
+
padding: 8px;
|
4169
|
+
color: white;
|
4170
|
+
text-align: center;
|
4171
|
+
text-decoration: none;
|
4172
|
+
background-color: black; }
|
4173
|
+
|
4174
|
+
.tooltip-arrow {
|
4175
|
+
position: absolute;
|
4176
|
+
width: 0;
|
4177
|
+
height: 0;
|
4178
|
+
border-color: transparent;
|
4179
|
+
border-style: solid; }
|
4180
|
+
|
4181
|
+
.tooltip.top .tooltip-arrow {
|
4182
|
+
bottom: 0;
|
4183
|
+
left: 50%;
|
4184
|
+
margin-left: -5px;
|
4185
|
+
border-width: 5px 5px 0;
|
4186
|
+
border-top-color: black; }
|
4187
|
+
.tooltip.right .tooltip-arrow {
|
4188
|
+
top: 50%;
|
4189
|
+
left: 0;
|
4190
|
+
margin-top: -5px;
|
4191
|
+
border-width: 5px 5px 5px 0;
|
4192
|
+
border-right-color: black; }
|
4193
|
+
.tooltip.left .tooltip-arrow {
|
4194
|
+
top: 50%;
|
4195
|
+
right: 0;
|
4196
|
+
margin-top: -5px;
|
4197
|
+
border-width: 5px 0 5px 5px;
|
4198
|
+
border-left-color: black; }
|
4199
|
+
.tooltip.bottom .tooltip-arrow {
|
4200
|
+
top: 0;
|
4201
|
+
left: 50%;
|
4202
|
+
margin-left: -5px;
|
4203
|
+
border-width: 0 5px 5px;
|
4204
|
+
border-bottom-color: black; }
|
4205
|
+
|
4206
|
+
.popover {
|
4207
|
+
position: absolute;
|
4208
|
+
top: 0;
|
4209
|
+
left: 0;
|
4210
|
+
z-index: 1010;
|
4211
|
+
display: none;
|
4212
|
+
max-width: 276px;
|
4213
|
+
padding: 1px;
|
4214
|
+
text-align: left;
|
4215
|
+
background-color: white;
|
4216
|
+
-webkit-background-clip: padding-box;
|
4217
|
+
-moz-background-clip: padding;
|
4218
|
+
background-clip: padding-box;
|
4219
|
+
border: 1px solid #ccc;
|
4220
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
4221
|
+
white-space: normal; }
|
4222
|
+
.popover.top {
|
4223
|
+
margin-top: -10px; }
|
4224
|
+
.popover.right {
|
4225
|
+
margin-left: 10px; }
|
4226
|
+
.popover.bottom {
|
4227
|
+
margin-top: 10px; }
|
4228
|
+
.popover.left {
|
4229
|
+
margin-left: -10px; }
|
4230
|
+
|
4231
|
+
.popover-title {
|
4232
|
+
margin: 0;
|
4233
|
+
padding: 8px 14px;
|
4234
|
+
font-size: 14px;
|
4235
|
+
font-weight: normal;
|
4236
|
+
line-height: 18px;
|
4237
|
+
background-color: #f7f7f7;
|
4238
|
+
border-bottom: 1px solid #ebebeb; }
|
4239
|
+
.popover-title:empty {
|
4240
|
+
display: none; }
|
4241
|
+
|
4242
|
+
.popover-content {
|
4243
|
+
padding: 9px 14px; }
|
4244
|
+
|
4245
|
+
.popover .arrow,
|
4246
|
+
.popover .arrow:after {
|
4247
|
+
position: absolute;
|
4248
|
+
display: block;
|
4249
|
+
width: 0;
|
4250
|
+
height: 0;
|
4251
|
+
border-color: transparent;
|
4252
|
+
border-style: solid; }
|
4253
|
+
|
4254
|
+
.popover .arrow {
|
4255
|
+
border-width: 11px; }
|
4256
|
+
|
4257
|
+
.popover .arrow:after {
|
4258
|
+
border-width: 10px;
|
4259
|
+
content: ""; }
|
4260
|
+
|
4261
|
+
.popover.top .arrow {
|
4262
|
+
left: 50%;
|
4263
|
+
margin-left: -11px;
|
4264
|
+
border-bottom-width: 0;
|
4265
|
+
border-top-color: #999;
|
4266
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
4267
|
+
bottom: -11px; }
|
4268
|
+
.popover.top .arrow:after {
|
4269
|
+
bottom: 1px;
|
4270
|
+
margin-left: -10px;
|
4271
|
+
border-bottom-width: 0;
|
4272
|
+
border-top-color: white; }
|
4273
|
+
.popover.right .arrow {
|
4274
|
+
top: 50%;
|
4275
|
+
left: -11px;
|
4276
|
+
margin-top: -11px;
|
4277
|
+
border-left-width: 0;
|
4278
|
+
border-right-color: #999;
|
4279
|
+
border-right-color: rgba(0, 0, 0, 0.25); }
|
4280
|
+
.popover.right .arrow:after {
|
4281
|
+
left: 1px;
|
4282
|
+
bottom: -10px;
|
4283
|
+
border-left-width: 0;
|
4284
|
+
border-right-color: white; }
|
4285
|
+
.popover.bottom .arrow {
|
4286
|
+
left: 50%;
|
4287
|
+
margin-left: -11px;
|
4288
|
+
border-top-width: 0;
|
4289
|
+
border-bottom-color: #999;
|
4290
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
4291
|
+
top: -11px; }
|
4292
|
+
.popover.bottom .arrow:after {
|
4293
|
+
top: 1px;
|
4294
|
+
margin-left: -10px;
|
4295
|
+
border-top-width: 0;
|
4296
|
+
border-bottom-color: white; }
|
4297
|
+
.popover.left .arrow {
|
4298
|
+
top: 50%;
|
4299
|
+
right: -11px;
|
4300
|
+
margin-top: -11px;
|
4301
|
+
border-right-width: 0;
|
4302
|
+
border-left-color: #999;
|
4303
|
+
border-left-color: rgba(0, 0, 0, 0.25); }
|
4304
|
+
.popover.left .arrow:after {
|
4305
|
+
right: 1px;
|
4306
|
+
border-right-width: 0;
|
4307
|
+
border-left-color: white;
|
4308
|
+
bottom: -10px; }
|
4309
|
+
|
4310
|
+
.thumbnails {
|
4311
|
+
margin-left: -20px;
|
4312
|
+
list-style: none;
|
4313
|
+
*zoom: 1; }
|
4314
|
+
.thumbnails:before, .thumbnails:after {
|
4315
|
+
display: table;
|
4316
|
+
content: "";
|
4317
|
+
line-height: 0; }
|
4318
|
+
.thumbnails:after {
|
4319
|
+
clear: both; }
|
4320
|
+
|
4321
|
+
.row-fluid .thumbnails {
|
4322
|
+
margin-left: 0; }
|
4323
|
+
|
4324
|
+
.thumbnails > li {
|
4325
|
+
float: left;
|
4326
|
+
margin-bottom: 20px;
|
4327
|
+
margin-left: 20px; }
|
4328
|
+
|
4329
|
+
.thumbnail {
|
4330
|
+
display: block;
|
4331
|
+
padding: 4px;
|
4332
|
+
line-height: 20px;
|
4333
|
+
border: 1px solid #ddd;
|
4334
|
+
-webkit-transition: all 0.2s ease-in-out;
|
4335
|
+
-moz-transition: all 0.2s ease-in-out;
|
4336
|
+
-o-transition: all 0.2s ease-in-out;
|
4337
|
+
transition: all 0.2s ease-in-out; }
|
4338
|
+
|
4339
|
+
a.thumbnail:hover,
|
4340
|
+
a.thumbnail:focus {
|
4341
|
+
border-color: #0088cc; }
|
4342
|
+
|
4343
|
+
.thumbnail > img {
|
4344
|
+
display: block;
|
4345
|
+
max-width: 100%;
|
4346
|
+
margin-left: auto;
|
4347
|
+
margin-right: auto; }
|
4348
|
+
|
4349
|
+
.thumbnail .caption {
|
4350
|
+
padding: 9px;
|
4351
|
+
color: #555555; }
|
4352
|
+
|
4353
|
+
.media,
|
4354
|
+
.media-body {
|
4355
|
+
overflow: hidden;
|
4356
|
+
*overflow: visible;
|
4357
|
+
zoom: 1; }
|
4358
|
+
|
4359
|
+
.media,
|
4360
|
+
.media .media {
|
4361
|
+
margin-top: 15px; }
|
4362
|
+
|
4363
|
+
.media:first-child {
|
4364
|
+
margin-top: 0; }
|
4365
|
+
|
4366
|
+
.media-object {
|
4367
|
+
display: block; }
|
4368
|
+
|
4369
|
+
.media-heading {
|
4370
|
+
margin: 0 0 5px; }
|
4371
|
+
|
4372
|
+
.media > .pull-left {
|
4373
|
+
margin-right: 10px; }
|
4374
|
+
|
4375
|
+
.media > .pull-right {
|
4376
|
+
margin-left: 10px; }
|
4377
|
+
|
4378
|
+
.media-list {
|
4379
|
+
margin-left: 0;
|
4380
|
+
list-style: none; }
|
4381
|
+
|
4382
|
+
.label,
|
4383
|
+
.badge {
|
4384
|
+
display: inline-block;
|
4385
|
+
padding: 2px 4px;
|
4386
|
+
font-size: 11.844px;
|
4387
|
+
font-weight: bold;
|
4388
|
+
line-height: 14px;
|
4389
|
+
color: white;
|
4390
|
+
vertical-align: baseline;
|
4391
|
+
white-space: nowrap;
|
4392
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
4393
|
+
background-color: #999999; }
|
4394
|
+
|
4395
|
+
.badge {
|
4396
|
+
padding-left: 9px;
|
4397
|
+
padding-right: 9px; }
|
4398
|
+
|
4399
|
+
.label:empty,
|
4400
|
+
.badge:empty {
|
4401
|
+
display: none; }
|
4402
|
+
|
4403
|
+
a.label:hover, a.label:focus, a.badge:hover, a.badge:focus {
|
4404
|
+
color: white;
|
4405
|
+
text-decoration: none;
|
4406
|
+
cursor: pointer; }
|
4407
|
+
|
4408
|
+
.label-important {
|
4409
|
+
background-color: #b94a48; }
|
4410
|
+
|
4411
|
+
.label-important[href] {
|
4412
|
+
background-color: #953b39; }
|
4413
|
+
|
4414
|
+
.label-warning {
|
4415
|
+
background-color: #f89406; }
|
4416
|
+
|
4417
|
+
.label-warning[href] {
|
4418
|
+
background-color: #c67605; }
|
4419
|
+
|
4420
|
+
.label-success {
|
4421
|
+
background-color: #468847; }
|
4422
|
+
|
4423
|
+
.label-success[href] {
|
4424
|
+
background-color: #356635; }
|
4425
|
+
|
4426
|
+
.label-info {
|
4427
|
+
background-color: #3a87ad; }
|
4428
|
+
|
4429
|
+
.label-info[href] {
|
4430
|
+
background-color: #2d6987; }
|
4431
|
+
|
4432
|
+
.label-inverse {
|
4433
|
+
background-color: #333333; }
|
4434
|
+
|
4435
|
+
.label-inverse[href] {
|
4436
|
+
background-color: #1a1a1a; }
|
4437
|
+
|
4438
|
+
.badge-important {
|
4439
|
+
background-color: #b94a48; }
|
4440
|
+
|
4441
|
+
.badge-important[href] {
|
4442
|
+
background-color: #953b39; }
|
4443
|
+
|
4444
|
+
.badge-warning {
|
4445
|
+
background-color: #f89406; }
|
4446
|
+
|
4447
|
+
.badge-warning[href] {
|
4448
|
+
background-color: #c67605; }
|
4449
|
+
|
4450
|
+
.badge-success {
|
4451
|
+
background-color: #468847; }
|
4452
|
+
|
4453
|
+
.badge-success[href] {
|
4454
|
+
background-color: #356635; }
|
4455
|
+
|
4456
|
+
.badge-info {
|
4457
|
+
background-color: #3a87ad; }
|
4458
|
+
|
4459
|
+
.badge-info[href] {
|
4460
|
+
background-color: #2d6987; }
|
4461
|
+
|
4462
|
+
.badge-inverse {
|
4463
|
+
background-color: #333333; }
|
4464
|
+
|
4465
|
+
.badge-inverse[href] {
|
4466
|
+
background-color: #1a1a1a; }
|
4467
|
+
|
4468
|
+
.btn .label,
|
4469
|
+
.btn .badge {
|
4470
|
+
position: relative;
|
4471
|
+
top: -1px; }
|
4472
|
+
|
4473
|
+
.btn-mini .label,
|
4474
|
+
.btn-mini .badge {
|
4475
|
+
top: 0; }
|
4476
|
+
|
4477
|
+
@-webkit-keyframes progress-bar-stripes {
|
4478
|
+
from {
|
4479
|
+
background-position: 40px 0; }
|
4480
|
+
|
4481
|
+
to {
|
4482
|
+
background-position: 0 0; } }
|
4483
|
+
|
4484
|
+
@-moz-keyframes progress-bar-stripes {
|
4485
|
+
from {
|
4486
|
+
background-position: 40px 0; }
|
4487
|
+
|
4488
|
+
to {
|
4489
|
+
background-position: 0 0; } }
|
4490
|
+
|
4491
|
+
@-ms-keyframes progress-bar-stripes {
|
4492
|
+
from {
|
4493
|
+
background-position: 40px 0; }
|
4494
|
+
|
4495
|
+
to {
|
4496
|
+
background-position: 0 0; } }
|
4497
|
+
|
4498
|
+
@-o-keyframes progress-bar-stripes {
|
4499
|
+
from {
|
4500
|
+
background-position: 0 0; }
|
4501
|
+
|
4502
|
+
to {
|
4503
|
+
background-position: 40px 0; } }
|
4504
|
+
|
4505
|
+
@keyframes progress-bar-stripes {
|
4506
|
+
from {
|
4507
|
+
background-position: 40px 0; }
|
4508
|
+
|
4509
|
+
to {
|
4510
|
+
background-position: 0 0; } }
|
4511
|
+
|
4512
|
+
.progress {
|
4513
|
+
overflow: hidden;
|
4514
|
+
height: 20px;
|
4515
|
+
margin-bottom: 20px;
|
4516
|
+
background-color: #f6f6f6; }
|
4517
|
+
|
4518
|
+
.progress .bar {
|
4519
|
+
width: 0%;
|
4520
|
+
height: 100%;
|
4521
|
+
color: white;
|
4522
|
+
float: left;
|
4523
|
+
font-size: 12px;
|
4524
|
+
text-align: center;
|
4525
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
4526
|
+
background-color: #0d90d1;
|
4527
|
+
-webkit-box-sizing: border-box;
|
4528
|
+
-moz-box-sizing: border-box;
|
4529
|
+
box-sizing: border-box;
|
4530
|
+
-webkit-transition: width 0.6s ease;
|
4531
|
+
-moz-transition: width 0.6s ease;
|
4532
|
+
-o-transition: width 0.6s ease;
|
4533
|
+
transition: width 0.6s ease; }
|
4534
|
+
|
4535
|
+
.progress-striped .bar {
|
4536
|
+
background-color: #149bdf;
|
4537
|
+
-webkit-background-size: 40px 40px;
|
4538
|
+
-moz-background-size: 40px 40px;
|
4539
|
+
-o-background-size: 40px 40px;
|
4540
|
+
background-size: 40px 40px; }
|
4541
|
+
|
4542
|
+
.progress.active .bar {
|
4543
|
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
4544
|
+
-moz-animation: progress-bar-stripes 2s linear infinite;
|
4545
|
+
-ms-animation: progress-bar-stripes 2s linear infinite;
|
4546
|
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
4547
|
+
animation: progress-bar-stripes 2s linear infinite; }
|
4548
|
+
|
4549
|
+
.progress-danger .bar, .progress .bar-danger {
|
4550
|
+
background-color: #dd514b; }
|
4551
|
+
|
4552
|
+
.progress-danger.progress-striped .bar, .progress-striped .bar-danger {
|
4553
|
+
background-color: #ee5f5b; }
|
4554
|
+
|
4555
|
+
.progress-success .bar, .progress .bar-success {
|
4556
|
+
background-color: #5db95d; }
|
4557
|
+
|
4558
|
+
.progress-success.progress-striped .bar, .progress-striped .bar-success {
|
4559
|
+
background-color: #62c462; }
|
4560
|
+
|
4561
|
+
.progress-info .bar, .progress .bar-info {
|
4562
|
+
background-color: #4bb1cf; }
|
4563
|
+
|
4564
|
+
.progress-info.progress-striped .bar, .progress-striped .bar-info {
|
4565
|
+
background-color: #5bc0de; }
|
4566
|
+
|
4567
|
+
.progress-warning .bar, .progress .bar-warning {
|
4568
|
+
background-color: #f9a732; }
|
4569
|
+
|
4570
|
+
.progress-warning.progress-striped .bar, .progress-striped .bar-warning {
|
4571
|
+
background-color: #fbb450; }
|
4572
|
+
|
4573
|
+
.accordion {
|
4574
|
+
margin-bottom: 20px; }
|
4575
|
+
|
4576
|
+
.accordion-group {
|
4577
|
+
margin-bottom: 2px;
|
4578
|
+
border: 1px solid #e5e5e5; }
|
4579
|
+
|
4580
|
+
.accordion-heading {
|
4581
|
+
border-bottom: 0; }
|
4582
|
+
|
4583
|
+
.accordion-heading .accordion-toggle {
|
4584
|
+
display: block;
|
4585
|
+
padding: 8px 15px; }
|
4586
|
+
|
4587
|
+
.accordion-toggle {
|
4588
|
+
cursor: pointer; }
|
4589
|
+
|
4590
|
+
.accordion-inner {
|
4591
|
+
padding: 9px 15px;
|
4592
|
+
border-top: 1px solid #e5e5e5; }
|
4593
|
+
|
4594
|
+
.carousel {
|
4595
|
+
position: relative;
|
4596
|
+
margin-bottom: 20px;
|
4597
|
+
line-height: 1; }
|
4598
|
+
|
4599
|
+
.carousel-inner {
|
4600
|
+
overflow: hidden;
|
4601
|
+
width: 100%;
|
4602
|
+
position: relative; }
|
4603
|
+
|
4604
|
+
.carousel-inner > .item {
|
4605
|
+
display: none;
|
4606
|
+
position: relative;
|
4607
|
+
-webkit-transition: 0.6s ease-in-out left;
|
4608
|
+
-moz-transition: 0.6s ease-in-out left;
|
4609
|
+
-o-transition: 0.6s ease-in-out left;
|
4610
|
+
transition: 0.6s ease-in-out left; }
|
4611
|
+
.carousel-inner > .item > img,
|
4612
|
+
.carousel-inner > .item > a > img {
|
4613
|
+
display: block;
|
4614
|
+
line-height: 1; }
|
4615
|
+
.carousel-inner > .active,
|
4616
|
+
.carousel-inner > .next,
|
4617
|
+
.carousel-inner > .prev {
|
4618
|
+
display: block; }
|
4619
|
+
.carousel-inner > .active {
|
4620
|
+
left: 0; }
|
4621
|
+
.carousel-inner > .next,
|
4622
|
+
.carousel-inner > .prev {
|
4623
|
+
position: absolute;
|
4624
|
+
top: 0;
|
4625
|
+
width: 100%; }
|
4626
|
+
.carousel-inner > .next {
|
4627
|
+
left: 100%; }
|
4628
|
+
.carousel-inner > .prev {
|
4629
|
+
left: -100%; }
|
4630
|
+
.carousel-inner > .next.left,
|
4631
|
+
.carousel-inner > .prev.right {
|
4632
|
+
left: 0; }
|
4633
|
+
.carousel-inner > .active.left {
|
4634
|
+
left: -100%; }
|
4635
|
+
.carousel-inner > .active.right {
|
4636
|
+
left: 100%; }
|
4637
|
+
|
4638
|
+
.carousel-control {
|
4639
|
+
position: absolute;
|
4640
|
+
top: 40%;
|
4641
|
+
left: 15px;
|
4642
|
+
width: 40px;
|
4643
|
+
height: 40px;
|
4644
|
+
margin-top: -20px;
|
4645
|
+
font-size: 60px;
|
4646
|
+
font-weight: 100;
|
4647
|
+
line-height: 30px;
|
4648
|
+
color: white;
|
4649
|
+
text-align: center;
|
4650
|
+
background: #222222;
|
4651
|
+
border: 3px solid white;
|
4652
|
+
opacity: 0.5;
|
4653
|
+
filter: alpha(opacity=50); }
|
4654
|
+
.carousel-control.right {
|
4655
|
+
left: auto;
|
4656
|
+
right: 15px; }
|
4657
|
+
.carousel-control:hover, .carousel-control:focus {
|
4658
|
+
color: white;
|
4659
|
+
text-decoration: none;
|
4660
|
+
opacity: 0.9;
|
4661
|
+
filter: alpha(opacity=90); }
|
4662
|
+
|
4663
|
+
.carousel-indicators {
|
4664
|
+
position: absolute;
|
4665
|
+
top: 15px;
|
4666
|
+
right: 15px;
|
4667
|
+
z-index: 5;
|
4668
|
+
margin: 0;
|
4669
|
+
list-style: none; }
|
4670
|
+
.carousel-indicators li {
|
4671
|
+
display: block;
|
4672
|
+
float: left;
|
4673
|
+
width: 10px;
|
4674
|
+
height: 10px;
|
4675
|
+
margin-left: 5px;
|
4676
|
+
text-indent: -999px;
|
4677
|
+
background-color: #ccc;
|
4678
|
+
background-color: rgba(255, 255, 255, 0.25); }
|
4679
|
+
.carousel-indicators .active {
|
4680
|
+
background-color: #fff; }
|
4681
|
+
|
4682
|
+
.carousel-caption {
|
4683
|
+
position: absolute;
|
4684
|
+
left: 0;
|
4685
|
+
right: 0;
|
4686
|
+
bottom: 0;
|
4687
|
+
padding: 15px;
|
4688
|
+
background: #333333;
|
4689
|
+
background: rgba(0, 0, 0, 0.75); }
|
4690
|
+
|
4691
|
+
.carousel-caption h4,
|
4692
|
+
.carousel-caption p {
|
4693
|
+
color: white;
|
4694
|
+
line-height: 20px; }
|
4695
|
+
|
4696
|
+
.carousel-caption h4 {
|
4697
|
+
margin: 0 0 5px; }
|
4698
|
+
|
4699
|
+
.carousel-caption p {
|
4700
|
+
margin-bottom: 0; }
|
4701
|
+
|
4702
|
+
.hero-unit {
|
4703
|
+
padding: 60px;
|
4704
|
+
margin-bottom: 30px;
|
4705
|
+
font-size: 18px;
|
4706
|
+
font-weight: 200;
|
4707
|
+
line-height: 30px;
|
4708
|
+
color: inherit;
|
4709
|
+
background-color: #eeeeee; }
|
4710
|
+
.hero-unit h1 {
|
4711
|
+
margin-bottom: 0;
|
4712
|
+
font-size: 60px;
|
4713
|
+
line-height: 1;
|
4714
|
+
color: inherit;
|
4715
|
+
letter-spacing: -1px; }
|
4716
|
+
.hero-unit li {
|
4717
|
+
line-height: 30px; }
|
4718
|
+
|
4719
|
+
.pull-right {
|
4720
|
+
float: right; }
|
4721
|
+
|
4722
|
+
.pull-left {
|
4723
|
+
float: left; }
|
4724
|
+
|
4725
|
+
.hide {
|
4726
|
+
display: none; }
|
4727
|
+
|
4728
|
+
.show {
|
4729
|
+
display: block; }
|
4730
|
+
|
4731
|
+
.invisible {
|
4732
|
+
visibility: hidden; }
|
4733
|
+
|
4734
|
+
.affix {
|
4735
|
+
position: fixed; }
|
4736
|
+
|
4737
|
+
.clearfix {
|
4738
|
+
*zoom: 1; }
|
4739
|
+
.clearfix:before, .clearfix:after {
|
4740
|
+
display: table;
|
4741
|
+
content: "";
|
4742
|
+
line-height: 0; }
|
4743
|
+
.clearfix:after {
|
4744
|
+
clear: both; }
|
4745
|
+
|
4746
|
+
.hide-text {
|
4747
|
+
font: 0/0 a;
|
4748
|
+
color: transparent;
|
4749
|
+
text-shadow: none;
|
4750
|
+
background-color: transparent;
|
4751
|
+
border: 0; }
|
4752
|
+
|
4753
|
+
.input-block-level {
|
4754
|
+
display: block;
|
4755
|
+
width: 100%;
|
4756
|
+
min-height: 30px;
|
4757
|
+
-webkit-box-sizing: border-box;
|
4758
|
+
-moz-box-sizing: border-box;
|
4759
|
+
box-sizing: border-box; }
|
4760
|
+
/*
|
4761
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
4762
|
+
* listed below.
|
4763
|
+
*
|
4764
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
4765
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
4766
|
+
*
|
4767
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
4768
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
4769
|
+
*
|
4770
|
+
|
4771
|
+
|
4772
|
+
|
4773
|
+
*/
|
4774
|
+
|
4775
|
+
|
4776
|
+
html, body {
|
4777
|
+
height: 100%;
|
4778
|
+
margin: 0;
|
4779
|
+
}
|
4780
|
+
#messages {
|
4781
|
+
position: absolute;
|
4782
|
+
right: 20px;
|
4783
|
+
z-index: 9999; }
|
4784
|
+
|
4785
|
+
#text-editor {
|
4786
|
+
position: absolute;
|
4787
|
+
left: 0;
|
4788
|
+
top: 60px;
|
4789
|
+
right: 0;
|
4790
|
+
bottom: 0;
|
4791
|
+
font-size: 16pt; }
|