laces 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. data/CONTRIBUTING.md +38 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +122 -0
  4. data/LICENSE +21 -0
  5. data/README.md +5 -0
  6. data/Rakefile +8 -0
  7. data/bin/laces +16 -0
  8. data/features/creating_a_heroku_app.feature +9 -0
  9. data/features/rake_clean.feature +21 -0
  10. data/features/skipping_clearance.feature +13 -0
  11. data/features/step_definitions/gem_steps.rb +5 -0
  12. data/features/step_definitions/heroku_steps.rb +3 -0
  13. data/features/step_definitions/shell_steps.rb +55 -0
  14. data/features/support/bin/heroku +5 -0
  15. data/features/support/env.rb +15 -0
  16. data/features/support/fake_heroku.rb +21 -0
  17. data/laces-0.0.1.gem +0 -0
  18. data/laces.gemspec +35 -0
  19. data/lib/laces/actions.rb +35 -0
  20. data/lib/laces/app_builder.rb +237 -0
  21. data/lib/laces/generators/app_generator.rb +111 -0
  22. data/lib/laces/version.rb +3 -0
  23. data/templates/.DS_Store +0 -0
  24. data/templates/Gemfile_template +76 -0
  25. data/templates/HEROKU_README.md +66 -0
  26. data/templates/Procfile +1 -0
  27. data/templates/README.md +81 -0
  28. data/templates/app/assets/imgs/glyphicons-halflings-white.png +0 -0
  29. data/templates/app/assets/imgs/glyphicons-halflings.png +0 -0
  30. data/templates/app/assets/javascripts/admin.coffee +20 -0
  31. data/templates/app/assets/javascripts/application.coffee +21 -0
  32. data/templates/app/assets/javascripts/lib/actinology.coffee +47 -0
  33. data/templates/app/assets/javascripts/lib/analytics.js +11 -0
  34. data/templates/app/assets/javascripts/lib/auth_token_sync.js +17 -0
  35. data/templates/app/assets/javascripts/lib/backbone-ui.js +2455 -0
  36. data/templates/app/assets/javascripts/lib/backbone.coffee +27 -0
  37. data/templates/app/assets/javascripts/lib/backbone/collection.js +249 -0
  38. data/templates/app/assets/javascripts/lib/backbone/events.js +64 -0
  39. data/templates/app/assets/javascripts/lib/backbone/helpers.js +68 -0
  40. data/templates/app/assets/javascripts/lib/backbone/history.js +144 -0
  41. data/templates/app/assets/javascripts/lib/backbone/model.js +291 -0
  42. data/templates/app/assets/javascripts/lib/backbone/router.coffee +45 -0
  43. data/templates/app/assets/javascripts/lib/backbone/sync.coffee +38 -0
  44. data/templates/app/assets/javascripts/lib/backbone/view.js +150 -0
  45. data/templates/app/assets/javascripts/lib/backbone_extended.coffee +276 -0
  46. data/templates/app/assets/javascripts/lib/bootstrap.js +1836 -0
  47. data/templates/app/assets/javascripts/lib/inflection.js +658 -0
  48. data/templates/app/assets/javascripts/lib/jquery-ui.js +343 -0
  49. data/templates/app/assets/javascripts/lib/jquery.hotkeys.js +102 -0
  50. data/templates/app/assets/javascripts/lib/jquery.js +4 -0
  51. data/templates/app/assets/javascripts/lib/milk.js.coffee +265 -0
  52. data/templates/app/assets/javascripts/lib/raw.js +143 -0
  53. data/templates/app/assets/javascripts/lib/strftime.js +732 -0
  54. data/templates/app/assets/javascripts/lib/throttle-debounce.js +251 -0
  55. data/templates/app/assets/javascripts/lib/timeago.js +148 -0
  56. data/templates/app/assets/javascripts/lib/underscore.js +28 -0
  57. data/templates/app/assets/styles/application.sass +21 -0
  58. data/templates/app/assets/styles/layouts/default.sass +15 -0
  59. data/templates/app/assets/styles/layouts/footer.sass +0 -0
  60. data/templates/app/assets/styles/layouts/forms.sass +34 -0
  61. data/templates/app/assets/styles/layouts/header.sass +0 -0
  62. data/templates/app/assets/styles/layouts/navigation.sass +0 -0
  63. data/templates/app/assets/styles/lib/backbone-ui.css +580 -0
  64. data/templates/app/assets/styles/lib/bootstrap.sass +4248 -0
  65. data/templates/app/assets/styles/pages/home.sass +0 -0
  66. data/templates/app/assets/styles/sessions/new.sass +0 -0
  67. data/templates/app/assets/styles/users/activate.sass +0 -0
  68. data/templates/app/assets/styles/users/new.sass +0 -0
  69. data/templates/app/assets/styles/users/suspended.sass +0 -0
  70. data/templates/app/controllers/app_controller.rb +14 -0
  71. data/templates/app/controllers/pages_controller.rb +2 -0
  72. data/templates/app/controllers/sessions_controller.rb +2 -0
  73. data/templates/app/controllers/templating_controller.rb +31 -0
  74. data/templates/app/controllers/users_controller.rb +2 -0
  75. data/templates/app/helpers/app_helper.rb +94 -0
  76. data/templates/app/helpers/users_helper.rb +53 -0
  77. data/templates/app/models/user.rb +9 -0
  78. data/templates/app/views/devise/confirmations/new.haml +9 -0
  79. data/templates/app/views/devise/passwords/edit.haml +11 -0
  80. data/templates/app/views/devise/passwords/new.haml +9 -0
  81. data/templates/app/views/devise/registrations/edit.haml +13 -0
  82. data/templates/app/views/devise/registrations/new.haml +8 -0
  83. data/templates/app/views/devise/sessions/_form.haml +7 -0
  84. data/templates/app/views/devise/sessions/new.haml +5 -0
  85. data/templates/app/views/devise/unlocks/new.haml +7 -0
  86. data/templates/app/views/layouts/_ascii.haml +0 -0
  87. data/templates/app/views/layouts/_column.haml +0 -0
  88. data/templates/app/views/layouts/_content.haml +1 -0
  89. data/templates/app/views/layouts/_extra.haml +0 -0
  90. data/templates/app/views/layouts/_footer.haml +9 -0
  91. data/templates/app/views/layouts/_head.haml +13 -0
  92. data/templates/app/views/layouts/_header.haml +6 -0
  93. data/templates/app/views/layouts/application.html.haml +16 -0
  94. data/templates/app/views/pages/home.haml +1 -0
  95. data/templates/config/app.yml +29 -0
  96. data/templates/config/application.erb +28 -0
  97. data/templates/config/database.yml +32 -0
  98. data/templates/config/initializers/devise.rb +232 -0
  99. data/templates/config/initializers/rabl_init.rb +4 -0
  100. data/templates/config/initializers/setup_mail.rb +13 -0
  101. data/templates/config/initializers/wrap_parameters.rb +12 -0
  102. data/templates/db/migrate/user_migration.rb +36 -0
  103. data/templates/laces_gitignore +9 -0
  104. data/templates/lib/development_mail_interceptor.rb +7 -0
  105. data/templates/lib/templating.rb +40 -0
  106. metadata +225 -0
@@ -0,0 +1,4248 @@
1
+ /*!
2
+ * Bootstrap v2.0.4
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
+ .clearfix
11
+ *zoom: 1
12
+ &:before
13
+ display: table
14
+ content: ""
15
+ &:after
16
+ display: table
17
+ content: ""
18
+ clear: both
19
+
20
+ .hide-text
21
+ font: 0 / 0 a
22
+ color: transparent
23
+ text-shadow: none
24
+ background-color: transparent
25
+ border: 0
26
+
27
+ .input-block-level
28
+ display: block
29
+ width: 100%
30
+ min-height: 28px
31
+ -webkit-box-sizing: border-box
32
+ -moz-box-sizing: border-box
33
+ -ms-box-sizing: border-box
34
+ box-sizing: border-box
35
+
36
+ article, aside, details, figcaption, figure, footer, header, hgroup, nav, section
37
+ display: block
38
+
39
+ audio, canvas, video
40
+ display: inline-block
41
+ *display: inline
42
+ *zoom: 1
43
+
44
+ audio:not([controls])
45
+ display: none
46
+
47
+ html
48
+ font-size: 100%
49
+ -webkit-text-size-adjust: 100%
50
+ -ms-text-size-adjust: 100%
51
+
52
+ a
53
+ &:focus
54
+ outline: thin dotted #333
55
+ outline: 5px auto -webkit-focus-ring-color
56
+ outline-offset: -2px
57
+ &:hover, &:active
58
+ outline: 0
59
+
60
+ sub
61
+ position: relative
62
+ font-size: 75%
63
+ line-height: 0
64
+ vertical-align: baseline
65
+
66
+ sup
67
+ position: relative
68
+ font-size: 75%
69
+ line-height: 0
70
+ vertical-align: baseline
71
+ top: -0.5em
72
+
73
+ sub
74
+ bottom: -0.25em
75
+
76
+ img
77
+ max-width: 100%
78
+ vertical-align: middle
79
+ border: 0
80
+ -ms-interpolation-mode: bicubic
81
+
82
+ #map_canvas img
83
+ max-width: none
84
+
85
+ button, input, select, textarea
86
+ margin: 0
87
+ font-size: 100%
88
+ vertical-align: middle
89
+
90
+ button, input
91
+ *overflow: visible
92
+ line-height: normal
93
+
94
+ button::-moz-focus-inner, input::-moz-focus-inner
95
+ padding: 0
96
+ border: 0
97
+
98
+ button
99
+ cursor: pointer
100
+ -webkit-appearance: button
101
+
102
+ input
103
+ &[type="button"], &[type="reset"], &[type="submit"]
104
+ cursor: pointer
105
+ -webkit-appearance: button
106
+ &[type="search"]
107
+ -webkit-box-sizing: content-box
108
+ -moz-box-sizing: content-box
109
+ box-sizing: content-box
110
+ -webkit-appearance: textfield
111
+ &::-webkit-search-decoration, &::-webkit-search-cancel-button
112
+ -webkit-appearance: none
113
+
114
+ textarea
115
+ overflow: auto
116
+ vertical-align: top
117
+
118
+ body
119
+ margin: 0
120
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
121
+ font-size: 13px
122
+ line-height: 18px
123
+ color: #333333
124
+ background-color: #ffffff
125
+
126
+ a
127
+ color: #0088cc
128
+ text-decoration: none
129
+ &:hover
130
+ color: #005580
131
+ text-decoration: underline
132
+
133
+ .row
134
+ margin-left: -20px
135
+ *zoom: 1
136
+ &:before
137
+ display: table
138
+ content: ""
139
+ &:after
140
+ display: table
141
+ content: ""
142
+ clear: both
143
+
144
+ [class*="span"]
145
+ float: left
146
+ margin-left: 20px
147
+
148
+ .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12
149
+ width: 940px
150
+
151
+ .span11
152
+ width: 860px
153
+
154
+ .span10
155
+ width: 780px
156
+
157
+ .span9
158
+ width: 700px
159
+
160
+ .span8
161
+ width: 620px
162
+
163
+ .span7
164
+ width: 540px
165
+
166
+ .span6
167
+ width: 460px
168
+
169
+ .span5
170
+ width: 380px
171
+
172
+ .span4
173
+ width: 300px
174
+
175
+ .span3
176
+ width: 220px
177
+
178
+ .span2
179
+ width: 140px
180
+
181
+ .span1
182
+ width: 60px
183
+
184
+ .offset12
185
+ margin-left: 980px
186
+
187
+ .offset11
188
+ margin-left: 900px
189
+
190
+ .offset10
191
+ margin-left: 820px
192
+
193
+ .offset9
194
+ margin-left: 740px
195
+
196
+ .offset8
197
+ margin-left: 660px
198
+
199
+ .offset7
200
+ margin-left: 580px
201
+
202
+ .offset6
203
+ margin-left: 500px
204
+
205
+ .offset5
206
+ margin-left: 420px
207
+
208
+ .offset4
209
+ margin-left: 340px
210
+
211
+ .offset3
212
+ margin-left: 260px
213
+
214
+ .offset2
215
+ margin-left: 180px
216
+
217
+ .offset1
218
+ margin-left: 100px
219
+
220
+ .row-fluid
221
+ width: 100%
222
+ *zoom: 1
223
+ &:before
224
+ display: table
225
+ content: ""
226
+ &:after
227
+ display: table
228
+ content: ""
229
+ clear: both
230
+ [class*="span"]
231
+ display: block
232
+ width: 100%
233
+ min-height: 28px
234
+ -webkit-box-sizing: border-box
235
+ -moz-box-sizing: border-box
236
+ -ms-box-sizing: border-box
237
+ box-sizing: border-box
238
+ float: left
239
+ margin-left: 2.127659574%
240
+ *margin-left: 2.0744680846382977%
241
+ &:first-child
242
+ margin-left: 0
243
+ .span12
244
+ width: 99.99999998999999%
245
+ *width: 99.94680850063828%
246
+ .span11
247
+ width: 91.489361693%
248
+ *width: 91.4361702036383%
249
+ .span10
250
+ width: 82.97872339599999%
251
+ *width: 82.92553190663828%
252
+ .span9
253
+ width: 74.468085099%
254
+ *width: 74.4148936096383%
255
+ .span8
256
+ width: 65.95744680199999%
257
+ *width: 65.90425531263828%
258
+ .span7
259
+ width: 57.446808505%
260
+ *width: 57.3936170156383%
261
+ .span6
262
+ width: 48.93617020799999%
263
+ *width: 48.88297871863829%
264
+ .span5
265
+ width: 40.425531911%
266
+ *width: 40.3723404216383%
267
+ .span4
268
+ width: 31.914893614%
269
+ *width: 31.8617021246383%
270
+ .span3
271
+ width: 23.404255317%
272
+ *width: 23.3510638276383%
273
+ .span2
274
+ width: 14.89361702%
275
+ *width: 14.8404255306383%
276
+ .span1
277
+ width: 6.382978723%
278
+ *width: 6.329787233638298%
279
+
280
+ .container
281
+ margin-right: auto
282
+ margin-left: auto
283
+ *zoom: 1
284
+ &:before
285
+ display: table
286
+ content: ""
287
+ &:after
288
+ display: table
289
+ content: ""
290
+ clear: both
291
+
292
+ .container-fluid
293
+ padding-right: 20px
294
+ padding-left: 20px
295
+ *zoom: 1
296
+ &:before
297
+ display: table
298
+ content: ""
299
+ &:after
300
+ display: table
301
+ content: ""
302
+ clear: both
303
+
304
+ p
305
+ margin: 0 0 9px
306
+ small
307
+ font-size: 11px
308
+ color: #999999
309
+
310
+ .lead
311
+ margin-bottom: 18px
312
+ font-size: 20px
313
+ font-weight: 200
314
+ line-height: 27px
315
+
316
+ h1, h2, h3, h4, h5, h6
317
+ margin: 0
318
+ font-family: inherit
319
+ font-weight: bold
320
+ color: inherit
321
+ text-rendering: optimizelegibility
322
+
323
+ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small
324
+ font-weight: normal
325
+ color: #999999
326
+
327
+ h1
328
+ font-size: 30px
329
+ line-height: 36px
330
+ small
331
+ font-size: 18px
332
+
333
+ h2
334
+ font-size: 24px
335
+ line-height: 36px
336
+ small
337
+ font-size: 18px
338
+
339
+ h3
340
+ font-size: 18px
341
+ line-height: 27px
342
+ small
343
+ font-size: 14px
344
+
345
+ h4, h5, h6
346
+ line-height: 18px
347
+
348
+ h4
349
+ font-size: 14px
350
+ small
351
+ font-size: 12px
352
+
353
+ h5
354
+ font-size: 12px
355
+
356
+ h6
357
+ font-size: 11px
358
+ color: #999999
359
+ text-transform: uppercase
360
+
361
+ .page-header
362
+ padding-bottom: 17px
363
+ margin: 18px 0
364
+ border-bottom: 1px solid #eeeeee
365
+ h1
366
+ line-height: 1
367
+
368
+ ul, ol
369
+ padding: 0
370
+ margin: 0 0 9px 25px
371
+
372
+ ul
373
+ ul, ol
374
+ margin-bottom: 0
375
+
376
+ ol
377
+ ol, ul
378
+ margin-bottom: 0
379
+
380
+ ul
381
+ list-style: disc
382
+
383
+ ol
384
+ list-style: decimal
385
+
386
+ li
387
+ line-height: 18px
388
+
389
+ ul.unstyled, ol.unstyled
390
+ margin-left: 0
391
+ list-style: none
392
+
393
+ dl
394
+ margin-bottom: 18px
395
+
396
+ dt, dd
397
+ line-height: 18px
398
+
399
+ dt
400
+ font-weight: bold
401
+ line-height: 17px
402
+
403
+ dd
404
+ margin-left: 9px
405
+
406
+ .dl-horizontal
407
+ dt
408
+ float: left
409
+ width: 120px
410
+ clear: left
411
+ text-align: right
412
+ overflow: hidden
413
+ text-overflow: ellipsis
414
+ white-space: nowrap
415
+ dd
416
+ margin-left: 130px
417
+
418
+ hr
419
+ margin: 18px 0
420
+ border: 0
421
+ border-top: 1px solid #eeeeee
422
+ border-bottom: 1px solid #ffffff
423
+
424
+ strong
425
+ font-weight: bold
426
+
427
+ em
428
+ font-style: italic
429
+
430
+ .muted
431
+ color: #999999
432
+
433
+ abbr
434
+ &[title]
435
+ cursor: help
436
+ border-bottom: 1px dotted #999999
437
+ &.initialism
438
+ font-size: 90%
439
+ text-transform: uppercase
440
+
441
+ blockquote
442
+ padding: 0 0 0 15px
443
+ margin: 0 0 18px
444
+ border-left: 5px solid #eeeeee
445
+ p
446
+ margin-bottom: 0
447
+ font-size: 16px
448
+ font-weight: 300
449
+ line-height: 22.5px
450
+ small
451
+ display: block
452
+ line-height: 18px
453
+ color: #999999
454
+ &:before
455
+ content: '\2014 \00A0'
456
+ &.pull-right
457
+ float: right
458
+ padding-right: 15px
459
+ padding-left: 0
460
+ border-right: 5px solid #eeeeee
461
+ border-left: 0
462
+ p, small
463
+ text-align: right
464
+
465
+ q
466
+ &:before, &:after
467
+ content: ""
468
+
469
+ blockquote
470
+ &:before, &:after
471
+ content: ""
472
+
473
+ address
474
+ display: block
475
+ margin-bottom: 18px
476
+ font-style: normal
477
+ line-height: 18px
478
+
479
+ small
480
+ font-size: 100%
481
+
482
+ cite
483
+ font-style: normal
484
+
485
+ code, pre
486
+ padding: 0 3px 2px
487
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace
488
+ font-size: 12px
489
+ color: #333333
490
+ -webkit-border-radius: 3px
491
+ -moz-border-radius: 3px
492
+ border-radius: 3px
493
+
494
+ code
495
+ padding: 2px 4px
496
+ color: #d14
497
+ background-color: #f7f7f9
498
+ border: 1px solid #e1e1e8
499
+
500
+ pre
501
+ display: block
502
+ padding: 8.5px
503
+ margin: 0 0 9px
504
+ font-size: 12.025px
505
+ line-height: 18px
506
+ word-break: break-all
507
+ word-wrap: break-word
508
+ white-space: pre
509
+ white-space: pre-wrap
510
+ background-color: #f5f5f5
511
+ border: 1px solid #ccc
512
+ border: 1px solid rgba(0, 0, 0, 0.15)
513
+ -webkit-border-radius: 4px
514
+ -moz-border-radius: 4px
515
+ border-radius: 4px
516
+ &.prettyprint
517
+ margin-bottom: 18px
518
+ code
519
+ padding: 0
520
+ color: inherit
521
+ background-color: transparent
522
+ border: 0
523
+
524
+ .pre-scrollable
525
+ max-height: 340px
526
+ overflow-y: scroll
527
+
528
+ .label, .badge
529
+ font-size: 10.998px
530
+ font-weight: bold
531
+ line-height: 14px
532
+ color: #ffffff
533
+ vertical-align: baseline
534
+ white-space: nowrap
535
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
536
+ background-color: #999999
537
+
538
+ .label
539
+ padding: 1px 4px 2px
540
+ -webkit-border-radius: 3px
541
+ -moz-border-radius: 3px
542
+ border-radius: 3px
543
+
544
+ .badge
545
+ padding: 1px 9px 2px
546
+ -webkit-border-radius: 9px
547
+ -moz-border-radius: 9px
548
+ border-radius: 9px
549
+
550
+ a
551
+ &.label:hover, &.badge:hover
552
+ color: #ffffff
553
+ text-decoration: none
554
+ cursor: pointer
555
+
556
+ .label-important, .badge-important
557
+ background-color: #b94a48
558
+
559
+ .label-important[href], .badge-important[href]
560
+ background-color: #953b39
561
+
562
+ .label-warning, .badge-warning
563
+ background-color: #f89406
564
+
565
+ .label-warning[href], .badge-warning[href]
566
+ background-color: #c67605
567
+
568
+ .label-success, .badge-success
569
+ background-color: #468847
570
+
571
+ .label-success[href], .badge-success[href]
572
+ background-color: #356635
573
+
574
+ .label-info, .badge-info
575
+ background-color: #3a87ad
576
+
577
+ .label-info[href], .badge-info[href]
578
+ background-color: #2d6987
579
+
580
+ .label-inverse, .badge-inverse
581
+ background-color: #333333
582
+
583
+ .label-inverse[href], .badge-inverse[href]
584
+ background-color: #1a1a1a
585
+
586
+ table
587
+ max-width: 100%
588
+ background-color: transparent
589
+ border-collapse: collapse
590
+ border-spacing: 0
591
+
592
+ .table
593
+ width: 100%
594
+ margin-bottom: 18px
595
+ th, td
596
+ padding: 8px
597
+ line-height: 18px
598
+ text-align: left
599
+ vertical-align: top
600
+ border-top: 1px solid #dddddd
601
+ th
602
+ font-weight: bold
603
+ thead th
604
+ vertical-align: bottom
605
+ caption tr:first-child
606
+ th, td
607
+ border-top: 0
608
+ colgroup tr:first-child
609
+ th, td
610
+ border-top: 0
611
+ thead:first-child tr:first-child
612
+ th, td
613
+ border-top: 0
614
+ tbody tbody
615
+ border-top: 2px solid #dddddd
616
+
617
+ .table-condensed
618
+ th, td
619
+ padding: 4px 5px
620
+
621
+ .table-bordered
622
+ border: 1px solid #dddddd
623
+ border-collapse: separate
624
+ *border-collapse: collapsed
625
+ border-left: 0
626
+ -webkit-border-radius: 4px
627
+ -moz-border-radius: 4px
628
+ border-radius: 4px
629
+ th, td
630
+ border-left: 1px solid #dddddd
631
+ caption +
632
+ thead th
633
+ border-top: 0
634
+ tbody tr:first-child
635
+ th, td
636
+ border-top: 0
637
+ colgroup +
638
+ thead th
639
+ border-top: 0
640
+ tbody tr:first-child
641
+ th, td
642
+ border-top: 0
643
+ thead:first-child th
644
+ border-top: 0
645
+ tbody:first-child tr:first-child
646
+ th, td
647
+ border-top: 0
648
+ thead:first-child th:first-child, tbody:first-child td:first-child
649
+ -webkit-border-top-left-radius: 4px
650
+ border-top-left-radius: 4px
651
+ -moz-border-radius-topleft: 4px
652
+ thead:first-child th:last-child, tbody:first-child td:last-child
653
+ -webkit-border-top-right-radius: 4px
654
+ border-top-right-radius: 4px
655
+ -moz-border-radius-topright: 4px
656
+ thead:last-child th:first-child, tbody:last-child td:first-child
657
+ -webkit-border-radius: 0 0 0 4px
658
+ -moz-border-radius: 0 0 0 4px
659
+ border-radius: 0 0 0 4px
660
+ -webkit-border-bottom-left-radius: 4px
661
+ border-bottom-left-radius: 4px
662
+ -moz-border-radius-bottomleft: 4px
663
+ thead:last-child th:last-child, tbody:last-child td:last-child
664
+ -webkit-border-bottom-right-radius: 4px
665
+ border-bottom-right-radius: 4px
666
+ -moz-border-radius-bottomright: 4px
667
+
668
+ .table-striped tr:nth-child(odd)
669
+ td, th
670
+ background-color: #f9f9f9
671
+
672
+ .table tr:hover
673
+ td, th
674
+ background-color: #f5f5f5
675
+
676
+ table
677
+ .span1
678
+ float: none
679
+ width: 44px
680
+ margin-left: 0
681
+ .span2
682
+ float: none
683
+ width: 124px
684
+ margin-left: 0
685
+ .span3
686
+ float: none
687
+ width: 204px
688
+ margin-left: 0
689
+ .span4
690
+ float: none
691
+ width: 284px
692
+ margin-left: 0
693
+ .span5
694
+ float: none
695
+ width: 364px
696
+ margin-left: 0
697
+ .span6
698
+ float: none
699
+ width: 444px
700
+ margin-left: 0
701
+ .span7
702
+ float: none
703
+ width: 524px
704
+ margin-left: 0
705
+ .span8
706
+ float: none
707
+ width: 604px
708
+ margin-left: 0
709
+ .span9
710
+ float: none
711
+ width: 684px
712
+ margin-left: 0
713
+ .span10
714
+ float: none
715
+ width: 764px
716
+ margin-left: 0
717
+ .span11
718
+ float: none
719
+ width: 844px
720
+ margin-left: 0
721
+ .span12
722
+ float: none
723
+ width: 924px
724
+ margin-left: 0
725
+ .span13
726
+ float: none
727
+ width: 1004px
728
+ margin-left: 0
729
+ .span14
730
+ float: none
731
+ width: 1084px
732
+ margin-left: 0
733
+ .span15
734
+ float: none
735
+ width: 1164px
736
+ margin-left: 0
737
+ .span16
738
+ float: none
739
+ width: 1244px
740
+ margin-left: 0
741
+ .span17
742
+ float: none
743
+ width: 1324px
744
+ margin-left: 0
745
+ .span18
746
+ float: none
747
+ width: 1404px
748
+ margin-left: 0
749
+ .span19
750
+ float: none
751
+ width: 1484px
752
+ margin-left: 0
753
+ .span20
754
+ float: none
755
+ width: 1564px
756
+ margin-left: 0
757
+ .span21
758
+ float: none
759
+ width: 1644px
760
+ margin-left: 0
761
+ .span22
762
+ float: none
763
+ width: 1724px
764
+ margin-left: 0
765
+ .span23
766
+ float: none
767
+ width: 1804px
768
+ margin-left: 0
769
+ .span24
770
+ float: none
771
+ width: 1884px
772
+ margin-left: 0
773
+
774
+ form
775
+ margin: 0 0 18px
776
+
777
+ fieldset
778
+ padding: 0
779
+ margin: 0
780
+ border: 0
781
+
782
+ legend
783
+ display: block
784
+ width: 100%
785
+ padding: 0
786
+ margin-bottom: 27px
787
+ font-size: 19.5px
788
+ line-height: 36px
789
+ color: #333333
790
+ border: 0
791
+ border-bottom: 1px solid #e5e5e5
792
+ small
793
+ font-size: 13.5px
794
+ color: #999999
795
+
796
+ label, input, button, select, textarea
797
+ font-size: 13px
798
+ font-weight: normal
799
+ line-height: 18px
800
+
801
+ input, button, select, textarea
802
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
803
+
804
+ label
805
+ display: block
806
+ margin-bottom: 5px
807
+
808
+ select, textarea
809
+ display: inline-block
810
+ height: 18px
811
+ padding: 4px
812
+ margin-bottom: 9px
813
+ font-size: 13px
814
+ line-height: 18px
815
+ color: #555555
816
+
817
+ input
818
+ &[type="text"], &[type="password"], &[type="datetime"], &[type="datetime-local"], &[type="date"], &[type="month"], &[type="time"], &[type="week"], &[type="number"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"], &[type="color"]
819
+ display: inline-block
820
+ height: 18px
821
+ padding: 4px
822
+ margin-bottom: 9px
823
+ font-size: 13px
824
+ line-height: 18px
825
+ color: #555555
826
+
827
+ .uneditable-input
828
+ display: inline-block
829
+ height: 18px
830
+ padding: 4px
831
+ margin-bottom: 9px
832
+ font-size: 13px
833
+ line-height: 18px
834
+ color: #555555
835
+
836
+ input
837
+ width: 210px
838
+
839
+ textarea
840
+ width: 210px
841
+ height: auto
842
+ background-color: #ffffff
843
+ border: 1px solid #cccccc
844
+ -webkit-border-radius: 3px
845
+ -moz-border-radius: 3px
846
+ border-radius: 3px
847
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
848
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
849
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
850
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s
851
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s
852
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s
853
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s
854
+ transition: border linear 0.2s, box-shadow linear 0.2s
855
+
856
+ input
857
+ &[type="text"], &[type="password"], &[type="datetime"], &[type="datetime-local"], &[type="date"], &[type="month"], &[type="time"], &[type="week"], &[type="number"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"], &[type="color"]
858
+ background-color: #ffffff
859
+ border: 1px solid #cccccc
860
+ -webkit-border-radius: 3px
861
+ -moz-border-radius: 3px
862
+ border-radius: 3px
863
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
864
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
865
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
866
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s
867
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s
868
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s
869
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s
870
+ transition: border linear 0.2s, box-shadow linear 0.2s
871
+
872
+ .uneditable-input
873
+ background-color: #ffffff
874
+ border: 1px solid #cccccc
875
+ -webkit-border-radius: 3px
876
+ -moz-border-radius: 3px
877
+ border-radius: 3px
878
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
879
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
880
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
881
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s
882
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s
883
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s
884
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s
885
+ transition: border linear 0.2s, box-shadow linear 0.2s
886
+
887
+ textarea:focus
888
+ border-color: rgba(82, 168, 236, 0.8)
889
+ outline: 0
890
+ outline: thin dotted \9
891
+ /* IE6-9
892
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
893
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
894
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
895
+
896
+ input
897
+ &[type="text"]:focus, &[type="password"]:focus, &[type="datetime"]:focus, &[type="datetime-local"]:focus, &[type="date"]:focus, &[type="month"]:focus, &[type="time"]:focus, &[type="week"]:focus, &[type="number"]:focus, &[type="email"]:focus, &[type="url"]:focus, &[type="search"]:focus, &[type="tel"]:focus, &[type="color"]:focus
898
+ border-color: rgba(82, 168, 236, 0.8)
899
+ outline: 0
900
+ outline: thin dotted \9
901
+ /* IE6-9
902
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
903
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
904
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
905
+
906
+ .uneditable-input:focus
907
+ border-color: rgba(82, 168, 236, 0.8)
908
+ outline: 0
909
+ outline: thin dotted \9
910
+ /* IE6-9
911
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
912
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
913
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
914
+
915
+ input
916
+ &[type="radio"], &[type="checkbox"]
917
+ margin: 3px 0
918
+ *margin-top: 0
919
+ /* IE7
920
+ line-height: normal
921
+ cursor: pointer
922
+ &[type="submit"], &[type="reset"], &[type="button"], &[type="radio"], &[type="checkbox"]
923
+ width: auto
924
+
925
+ .uneditable-textarea
926
+ width: auto
927
+ height: auto
928
+
929
+ select, input[type="file"]
930
+ height: 28px
931
+ /* In IE7, the height of the select element cannot be changed by height, only font-size
932
+ *margin-top: 4px
933
+ /* For IE7, add top margin to align select with labels
934
+ line-height: 28px
935
+
936
+ select
937
+ width: 220px
938
+ border: 1px solid #bbb
939
+ &[multiple], &[size]
940
+ height: auto
941
+ &:focus
942
+ outline: thin dotted #333
943
+ outline: 5px auto -webkit-focus-ring-color
944
+ outline-offset: -2px
945
+
946
+ input
947
+ &[type="file"]:focus, &[type="radio"]:focus, &[type="checkbox"]:focus
948
+ outline: thin dotted #333
949
+ outline: 5px auto -webkit-focus-ring-color
950
+ outline-offset: -2px
951
+
952
+ .radio, .checkbox
953
+ min-height: 18px
954
+ padding-left: 18px
955
+
956
+ .radio input[type="radio"], .checkbox input[type="checkbox"]
957
+ float: left
958
+ margin-left: -18px
959
+
960
+ .controls >
961
+ .radio:first-child, .checkbox:first-child
962
+ padding-top: 5px
963
+
964
+ .radio.inline, .checkbox.inline
965
+ display: inline-block
966
+ padding-top: 5px
967
+ margin-bottom: 0
968
+ vertical-align: middle
969
+
970
+ .radio.inline .radio.inline, .checkbox.inline .checkbox.inline
971
+ margin-left: 10px
972
+
973
+ .input-mini
974
+ width: 60px
975
+
976
+ .input-small
977
+ width: 90px
978
+
979
+ .input-medium
980
+ width: 150px
981
+
982
+ .input-large
983
+ width: 210px
984
+
985
+ .input-xlarge
986
+ width: 270px
987
+
988
+ .input-xxlarge
989
+ width: 530px
990
+
991
+ input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"]
992
+ float: none
993
+ margin-left: 0
994
+
995
+ .row-fluid
996
+ input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"]
997
+ float: none
998
+ margin-left: 0
999
+
1000
+ .input-append
1001
+ input[class*="span"], .uneditable-input[class*="span"]
1002
+ display: inline-block
1003
+
1004
+ .input-prepend
1005
+ input[class*="span"], .uneditable-input[class*="span"]
1006
+ display: inline-block
1007
+
1008
+ .row-fluid
1009
+ .input-prepend [class*="span"], .input-append [class*="span"]
1010
+ display: inline-block
1011
+
1012
+ input, textarea, .uneditable-input
1013
+ margin-left: 0
1014
+
1015
+ input.span12, textarea.span12, .uneditable-input.span12
1016
+ width: 930px
1017
+
1018
+ input.span11, textarea.span11, .uneditable-input.span11
1019
+ width: 850px
1020
+
1021
+ input.span10, textarea.span10, .uneditable-input.span10
1022
+ width: 770px
1023
+
1024
+ input.span9, textarea.span9, .uneditable-input.span9
1025
+ width: 690px
1026
+
1027
+ input.span8, textarea.span8, .uneditable-input.span8
1028
+ width: 610px
1029
+
1030
+ input.span7, textarea.span7, .uneditable-input.span7
1031
+ width: 530px
1032
+
1033
+ input.span6, textarea.span6, .uneditable-input.span6
1034
+ width: 450px
1035
+
1036
+ input.span5, textarea.span5, .uneditable-input.span5
1037
+ width: 370px
1038
+
1039
+ input.span4, textarea.span4, .uneditable-input.span4
1040
+ width: 290px
1041
+
1042
+ input.span3, textarea.span3, .uneditable-input.span3
1043
+ width: 210px
1044
+
1045
+ input.span2, textarea.span2, .uneditable-input.span2
1046
+ width: 130px
1047
+
1048
+ input.span1, textarea.span1, .uneditable-input.span1
1049
+ width: 50px
1050
+
1051
+ input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly]
1052
+ cursor: not-allowed
1053
+ background-color: #eeeeee
1054
+ border-color: #ddd
1055
+
1056
+ input
1057
+ &[type="radio"][disabled], &[type="checkbox"][disabled], &[type="radio"][readonly], &[type="checkbox"][readonly]
1058
+ background-color: transparent
1059
+
1060
+ .control-group
1061
+ &.warning
1062
+ > label, .help-block, .help-inline
1063
+ color: #c09853
1064
+ .checkbox, .radio, input, select, textarea
1065
+ color: #c09853
1066
+ border-color: #c09853
1067
+ .checkbox:focus, .radio:focus, input:focus, select:focus, textarea:focus
1068
+ border-color: #a47e3c
1069
+ -webkit-box-shadow: 0 0 6px #dbc59e
1070
+ -moz-box-shadow: 0 0 6px #dbc59e
1071
+ box-shadow: 0 0 6px #dbc59e
1072
+ .input-prepend .add-on, .input-append .add-on
1073
+ color: #c09853
1074
+ background-color: #fcf8e3
1075
+ border-color: #c09853
1076
+ &.error
1077
+ > label, .help-block, .help-inline
1078
+ color: #b94a48
1079
+ .checkbox, .radio, input, select, textarea
1080
+ color: #b94a48
1081
+ border-color: #b94a48
1082
+ .checkbox:focus, .radio:focus, input:focus, select:focus, textarea:focus
1083
+ border-color: #953b39
1084
+ -webkit-box-shadow: 0 0 6px #d59392
1085
+ -moz-box-shadow: 0 0 6px #d59392
1086
+ box-shadow: 0 0 6px #d59392
1087
+ .input-prepend .add-on, .input-append .add-on
1088
+ color: #b94a48
1089
+ background-color: #f2dede
1090
+ border-color: #b94a48
1091
+ &.success
1092
+ > label, .help-block, .help-inline
1093
+ color: #468847
1094
+ .checkbox, .radio, input, select, textarea
1095
+ color: #468847
1096
+ border-color: #468847
1097
+ .checkbox:focus, .radio:focus, input:focus, select:focus, textarea:focus
1098
+ border-color: #356635
1099
+ -webkit-box-shadow: 0 0 6px #7aba7b
1100
+ -moz-box-shadow: 0 0 6px #7aba7b
1101
+ box-shadow: 0 0 6px #7aba7b
1102
+ .input-prepend .add-on, .input-append .add-on
1103
+ color: #468847
1104
+ background-color: #dff0d8
1105
+ border-color: #468847
1106
+
1107
+ input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid
1108
+ color: #b94a48
1109
+ border-color: #ee5f5b
1110
+
1111
+ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus
1112
+ border-color: #e9322d
1113
+ -webkit-box-shadow: 0 0 6px #f8b9b7
1114
+ -moz-box-shadow: 0 0 6px #f8b9b7
1115
+ box-shadow: 0 0 6px #f8b9b7
1116
+
1117
+ .form-actions
1118
+ padding: 17px 20px 18px
1119
+ margin-top: 18px
1120
+ margin-bottom: 18px
1121
+ background-color: #f5f5f5
1122
+ border-top: 1px solid #e5e5e5
1123
+ *zoom: 1
1124
+ &:before
1125
+ display: table
1126
+ content: ""
1127
+ &:after
1128
+ display: table
1129
+ content: ""
1130
+ clear: both
1131
+
1132
+ .uneditable-input
1133
+ overflow: hidden
1134
+ white-space: nowrap
1135
+ cursor: not-allowed
1136
+ background-color: #ffffff
1137
+ border-color: #eee
1138
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025)
1139
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025)
1140
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025)
1141
+
1142
+ \:-moz-placeholder, :-ms-input-placeholder, ::-webkit-input-placeholder
1143
+ color: #999999
1144
+
1145
+ .help-block, .help-inline
1146
+ color: #555555
1147
+
1148
+ .help-block
1149
+ display: block
1150
+ margin-bottom: 9px
1151
+
1152
+ .help-inline
1153
+ display: inline-block
1154
+ *display: inline
1155
+ /* IE7 inline-block hack
1156
+ *zoom: 1
1157
+ vertical-align: middle
1158
+ padding-left: 5px
1159
+
1160
+ .input-prepend, .input-append
1161
+ margin-bottom: 5px
1162
+
1163
+ .input-prepend input, .input-append input, .input-prepend select, .input-append select, .input-prepend .uneditable-input, .input-append .uneditable-input
1164
+ position: relative
1165
+ margin-bottom: 0
1166
+ *margin-left: 0
1167
+ vertical-align: middle
1168
+ -webkit-border-radius: 0 3px 3px 0
1169
+ -moz-border-radius: 0 3px 3px 0
1170
+ border-radius: 0 3px 3px 0
1171
+
1172
+ .input-prepend input:focus, .input-append input:focus, .input-prepend select:focus, .input-append select:focus, .input-prepend .uneditable-input:focus, .input-append .uneditable-input:focus
1173
+ z-index: 2
1174
+
1175
+ .input-prepend .uneditable-input, .input-append .uneditable-input
1176
+ border-left-color: #ccc
1177
+
1178
+ .input-prepend .add-on, .input-append .add-on
1179
+ display: inline-block
1180
+ width: auto
1181
+ height: 18px
1182
+ min-width: 16px
1183
+ padding: 4px 5px
1184
+ font-weight: normal
1185
+ line-height: 18px
1186
+ text-align: center
1187
+ text-shadow: 0 1px 0 #ffffff
1188
+ vertical-align: middle
1189
+ background-color: #eeeeee
1190
+ border: 1px solid #ccc
1191
+
1192
+ .input-prepend .add-on, .input-append .add-on, .input-prepend .btn, .input-append .btn
1193
+ margin-left: -1px
1194
+ -webkit-border-radius: 0
1195
+ -moz-border-radius: 0
1196
+ border-radius: 0
1197
+
1198
+ .input-prepend .active, .input-append .active
1199
+ background-color: #a9dba9
1200
+ border-color: #46a546
1201
+
1202
+ .input-prepend
1203
+ .add-on, .btn
1204
+ margin-right: -1px
1205
+ .add-on:first-child, .btn:first-child
1206
+ -webkit-border-radius: 3px 0 0 3px
1207
+ -moz-border-radius: 3px 0 0 3px
1208
+ border-radius: 3px 0 0 3px
1209
+
1210
+ .input-append
1211
+ input, select
1212
+ -webkit-border-radius: 3px 0 0 3px
1213
+ -moz-border-radius: 3px 0 0 3px
1214
+ border-radius: 3px 0 0 3px
1215
+ .uneditable-input
1216
+ -webkit-border-radius: 3px 0 0 3px
1217
+ -moz-border-radius: 3px 0 0 3px
1218
+ border-radius: 3px 0 0 3px
1219
+ border-right-color: #ccc
1220
+ border-left-color: #eee
1221
+ .add-on:last-child, .btn:last-child
1222
+ -webkit-border-radius: 0 3px 3px 0
1223
+ -moz-border-radius: 0 3px 3px 0
1224
+ border-radius: 0 3px 3px 0
1225
+
1226
+ .input-prepend.input-append
1227
+ input, select, .uneditable-input
1228
+ -webkit-border-radius: 0
1229
+ -moz-border-radius: 0
1230
+ border-radius: 0
1231
+ .add-on:first-child, .btn:first-child
1232
+ margin-right: -1px
1233
+ -webkit-border-radius: 3px 0 0 3px
1234
+ -moz-border-radius: 3px 0 0 3px
1235
+ border-radius: 3px 0 0 3px
1236
+ .add-on:last-child, .btn:last-child
1237
+ margin-left: -1px
1238
+ -webkit-border-radius: 0 3px 3px 0
1239
+ -moz-border-radius: 0 3px 3px 0
1240
+ border-radius: 0 3px 3px 0
1241
+
1242
+ .search-query
1243
+ padding-right: 14px
1244
+ padding-right: 4px \9
1245
+ padding-left: 14px
1246
+ padding-left: 4px \9
1247
+ /* IE7-8 doesn't have border-radius, so don't indent the padding
1248
+ margin-bottom: 0
1249
+ -webkit-border-radius: 14px
1250
+ -moz-border-radius: 14px
1251
+ border-radius: 14px
1252
+
1253
+ .form-search input, .form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append
1254
+ display: inline-block
1255
+ *display: inline
1256
+ /* IE7 inline-block hack
1257
+ *zoom: 1
1258
+ margin-bottom: 0
1259
+
1260
+ .form-search .hide, .form-inline .hide, .form-horizontal .hide
1261
+ display: none
1262
+
1263
+ .form-search label, .form-inline label
1264
+ display: inline-block
1265
+
1266
+ .form-search .input-append, .form-inline .input-append, .form-search .input-prepend, .form-inline .input-prepend
1267
+ margin-bottom: 0
1268
+
1269
+ .form-search
1270
+ .radio, .checkbox
1271
+ padding-left: 0
1272
+ margin-bottom: 0
1273
+ vertical-align: middle
1274
+
1275
+ .form-inline
1276
+ .radio, .checkbox
1277
+ padding-left: 0
1278
+ margin-bottom: 0
1279
+ vertical-align: middle
1280
+
1281
+ .form-search
1282
+ .radio input[type="radio"], .checkbox input[type="checkbox"]
1283
+ float: left
1284
+ margin-right: 3px
1285
+ margin-left: 0
1286
+
1287
+ .form-inline
1288
+ .radio input[type="radio"], .checkbox input[type="checkbox"]
1289
+ float: left
1290
+ margin-right: 3px
1291
+ margin-left: 0
1292
+
1293
+ .control-group
1294
+ margin-bottom: 9px
1295
+
1296
+ legend .control-group
1297
+ margin-top: 18px
1298
+ -webkit-margin-top-collapse: separate
1299
+
1300
+ .form-horizontal
1301
+ .control-group
1302
+ margin-bottom: 18px
1303
+ *zoom: 1
1304
+ &:before
1305
+ display: table
1306
+ content: ""
1307
+ &:after
1308
+ display: table
1309
+ content: ""
1310
+ clear: both
1311
+ .control-label
1312
+ float: left
1313
+ width: 140px
1314
+ padding-top: 5px
1315
+ text-align: right
1316
+ .controls
1317
+ *display: inline-block
1318
+ *padding-left: 20px
1319
+ margin-left: 160px
1320
+ *margin-left: 0
1321
+ &:first-child
1322
+ *padding-left: 160px
1323
+ .help-block
1324
+ margin-top: 9px
1325
+ margin-bottom: 0
1326
+ .form-actions
1327
+ padding-left: 160px
1328
+
1329
+ .btn
1330
+ display: inline-block
1331
+ *display: inline
1332
+ /* IE7 inline-block hack
1333
+ *zoom: 1
1334
+ padding: 4px 10px 4px
1335
+ margin-bottom: 0
1336
+ font-size: 13px
1337
+ line-height: 18px
1338
+ *line-height: 20px
1339
+ color: #333333
1340
+ text-align: center
1341
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75)
1342
+ vertical-align: middle
1343
+ cursor: pointer
1344
+ background-color: #f5f5f5
1345
+ background-image: -moz-linear-gradient(top, white, #e6e6e6)
1346
+ background-image: -ms-linear-gradient(top, white, #e6e6e6)
1347
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e6))
1348
+ background-image: -webkit-linear-gradient(top, white, #e6e6e6)
1349
+ background-image: -o-linear-gradient(top, white, #e6e6e6)
1350
+ background-image: linear-gradient(top, white, #e6e6e6)
1351
+ background-repeat: repeat-x
1352
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0)
1353
+ border-color: #e6e6e6 #e6e6e6 #bfbfbf
1354
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1355
+ *background-color: #e6e6e6
1356
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
1357
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
1358
+ border: 1px solid #cccccc
1359
+ *border: 0
1360
+ border-bottom-color: #b3b3b3
1361
+ -webkit-border-radius: 4px
1362
+ -moz-border-radius: 4px
1363
+ border-radius: 4px
1364
+ *margin-left: .3em
1365
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05)
1366
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05)
1367
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05)
1368
+ &:hover, &:active, &.active, &.disabled, &[disabled]
1369
+ background-color: #e6e6e6
1370
+ *background-color: #d9d9d9
1371
+ &:active, &.active
1372
+ background-color: #cccccc \9
1373
+ &:first-child
1374
+ *margin-left: 0
1375
+ &:hover
1376
+ color: #333333
1377
+ text-decoration: none
1378
+ background-color: #e6e6e6
1379
+ *background-color: #d9d9d9
1380
+ /* Buttons in IE7 don't get borders, so darken on hover
1381
+ background-position: 0 -15px
1382
+ -webkit-transition: background-position 0.1s linear
1383
+ -moz-transition: background-position 0.1s linear
1384
+ -ms-transition: background-position 0.1s linear
1385
+ -o-transition: background-position 0.1s linear
1386
+ transition: background-position 0.1s linear
1387
+ &:focus
1388
+ outline: thin dotted #333
1389
+ outline: 5px auto -webkit-focus-ring-color
1390
+ outline-offset: -2px
1391
+ &.active, &:active
1392
+ background-color: #e6e6e6
1393
+ background-color: #d9d9d9 \9
1394
+ background-image: none
1395
+ outline: 0
1396
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
1397
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
1398
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
1399
+ &.disabled, &[disabled]
1400
+ cursor: default
1401
+ background-color: #e6e6e6
1402
+ background-image: none
1403
+ opacity: 0.65
1404
+ filter: alpha(opacity = 65)
1405
+ -webkit-box-shadow: none
1406
+ -moz-box-shadow: none
1407
+ box-shadow: none
1408
+
1409
+ .btn-large
1410
+ padding: 9px 14px
1411
+ font-size: 15px
1412
+ line-height: normal
1413
+ -webkit-border-radius: 5px
1414
+ -moz-border-radius: 5px
1415
+ border-radius: 5px
1416
+ [class^="icon-"]
1417
+ margin-top: 1px
1418
+
1419
+ .btn-small
1420
+ padding: 5px 9px
1421
+ font-size: 11px
1422
+ line-height: 16px
1423
+ [class^="icon-"]
1424
+ margin-top: -1px
1425
+
1426
+ .btn-mini
1427
+ padding: 2px 6px
1428
+ font-size: 11px
1429
+ line-height: 14px
1430
+
1431
+ .btn-primary, .btn-warning, .btn-danger, .btn-success, .btn-info, .btn-inverse
1432
+ color: #ffffff
1433
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
1434
+ &:hover
1435
+ color: #ffffff
1436
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
1437
+
1438
+ .btn-primary.active, .btn-warning.active, .btn-danger.active, .btn-success.active, .btn-info.active, .btn-inverse.active
1439
+ color: rgba(255, 255, 255, 0.75)
1440
+
1441
+ .btn
1442
+ border-color: #ccc
1443
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1444
+
1445
+ .btn-primary
1446
+ background-color: #0074cc
1447
+ background-image: -moz-linear-gradient(top, #0088cc, #0055cc)
1448
+ background-image: -ms-linear-gradient(top, #0088cc, #0055cc)
1449
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc))
1450
+ background-image: -webkit-linear-gradient(top, #0088cc, #0055cc)
1451
+ background-image: -o-linear-gradient(top, #0088cc, #0055cc)
1452
+ background-image: linear-gradient(top, #0088cc, #0055cc)
1453
+ background-repeat: repeat-x
1454
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0)
1455
+ border-color: #0055cc #0055cc #003580
1456
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1457
+ *background-color: #0055cc
1458
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
1459
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
1460
+ &:hover, &:active, &.active, &.disabled, &[disabled]
1461
+ background-color: #0055cc
1462
+ *background-color: #004ab3
1463
+ &:active, &.active
1464
+ background-color: #004099 \9
1465
+
1466
+ .btn-warning
1467
+ background-color: #faa732
1468
+ background-image: -moz-linear-gradient(top, #fbb450, #f89406)
1469
+ background-image: -ms-linear-gradient(top, #fbb450, #f89406)
1470
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406))
1471
+ background-image: -webkit-linear-gradient(top, #fbb450, #f89406)
1472
+ background-image: -o-linear-gradient(top, #fbb450, #f89406)
1473
+ background-image: linear-gradient(top, #fbb450, #f89406)
1474
+ background-repeat: repeat-x
1475
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0)
1476
+ border-color: #f89406 #f89406 #ad6704
1477
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1478
+ *background-color: #f89406
1479
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
1480
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
1481
+ &:hover, &:active, &.active, &.disabled, &[disabled]
1482
+ background-color: #f89406
1483
+ *background-color: #df8505
1484
+ &:active, &.active
1485
+ background-color: #c67605 \9
1486
+
1487
+ .btn-danger
1488
+ background-color: #da4f49
1489
+ background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f)
1490
+ background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f)
1491
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f))
1492
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f)
1493
+ background-image: -o-linear-gradient(top, #ee5f5b, #bd362f)
1494
+ background-image: linear-gradient(top, #ee5f5b, #bd362f)
1495
+ background-repeat: repeat-x
1496
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0)
1497
+ border-color: #bd362f #bd362f #802420
1498
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1499
+ *background-color: #bd362f
1500
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
1501
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
1502
+ &:hover, &:active, &.active, &.disabled, &[disabled]
1503
+ background-color: #bd362f
1504
+ *background-color: #a9302a
1505
+ &:active, &.active
1506
+ background-color: #942a25 \9
1507
+
1508
+ .btn-success
1509
+ background-color: #5bb75b
1510
+ background-image: -moz-linear-gradient(top, #62c462, #51a351)
1511
+ background-image: -ms-linear-gradient(top, #62c462, #51a351)
1512
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351))
1513
+ background-image: -webkit-linear-gradient(top, #62c462, #51a351)
1514
+ background-image: -o-linear-gradient(top, #62c462, #51a351)
1515
+ background-image: linear-gradient(top, #62c462, #51a351)
1516
+ background-repeat: repeat-x
1517
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0)
1518
+ border-color: #51a351 #51a351 #387038
1519
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1520
+ *background-color: #51a351
1521
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
1522
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
1523
+ &:hover, &:active, &.active, &.disabled, &[disabled]
1524
+ background-color: #51a351
1525
+ *background-color: #499249
1526
+ &:active, &.active
1527
+ background-color: #408140 \9
1528
+
1529
+ .btn-info
1530
+ background-color: #49afcd
1531
+ background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4)
1532
+ background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4)
1533
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4))
1534
+ background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4)
1535
+ background-image: -o-linear-gradient(top, #5bc0de, #2f96b4)
1536
+ background-image: linear-gradient(top, #5bc0de, #2f96b4)
1537
+ background-repeat: repeat-x
1538
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0)
1539
+ border-color: #2f96b4 #2f96b4 #1f6377
1540
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1541
+ *background-color: #2f96b4
1542
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
1543
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
1544
+ &:hover, &:active, &.active, &.disabled, &[disabled]
1545
+ background-color: #2f96b4
1546
+ *background-color: #2a85a0
1547
+ &:active, &.active
1548
+ background-color: #24748c \9
1549
+
1550
+ .btn-inverse
1551
+ background-color: #414141
1552
+ background-image: -moz-linear-gradient(top, #555555, #222222)
1553
+ background-image: -ms-linear-gradient(top, #555555, #222222)
1554
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222))
1555
+ background-image: -webkit-linear-gradient(top, #555555, #222222)
1556
+ background-image: -o-linear-gradient(top, #555555, #222222)
1557
+ background-image: linear-gradient(top, #555555, #222222)
1558
+ background-repeat: repeat-x
1559
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0)
1560
+ border-color: #222222 #222222 #000000
1561
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
1562
+ *background-color: #222222
1563
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
1564
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
1565
+ &:hover, &:active, &.active, &.disabled, &[disabled]
1566
+ background-color: #222222
1567
+ *background-color: #151515
1568
+ &:active, &.active
1569
+ background-color: #080808 \9
1570
+
1571
+ button.btn, input[type="submit"].btn
1572
+ *padding-top: 2px
1573
+ *padding-bottom: 2px
1574
+
1575
+ button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner
1576
+ padding: 0
1577
+ border: 0
1578
+
1579
+ button.btn.btn-large, input[type="submit"].btn.btn-large
1580
+ *padding-top: 7px
1581
+ *padding-bottom: 7px
1582
+
1583
+ button.btn.btn-small, input[type="submit"].btn.btn-small
1584
+ *padding-top: 3px
1585
+ *padding-bottom: 3px
1586
+
1587
+ button.btn.btn-mini, input[type="submit"].btn.btn-mini
1588
+ *padding-top: 1px
1589
+ *padding-bottom: 1px
1590
+
1591
+ [class^="icon-"], [class*=" icon-"]
1592
+ display: inline-block
1593
+ width: 14px
1594
+ height: 14px
1595
+ *margin-right: .3em
1596
+ line-height: 14px
1597
+ vertical-align: text-top
1598
+ background-image: url("../img/glyphicons-halflings.png")
1599
+ background-position: 14px 14px
1600
+ background-repeat: no-repeat
1601
+
1602
+ [class^="icon-"]:last-child, [class*=" icon-"]:last-child
1603
+ *margin-left: 0
1604
+
1605
+ .icon-white
1606
+ background-image: url("../img/glyphicons-halflings-white.png")
1607
+
1608
+ .icon-glass
1609
+ background-position: 0 0
1610
+
1611
+ .icon-music
1612
+ background-position: -24px 0
1613
+
1614
+ .icon-search
1615
+ background-position: -48px 0
1616
+
1617
+ .icon-envelope
1618
+ background-position: -72px 0
1619
+
1620
+ .icon-heart
1621
+ background-position: -96px 0
1622
+
1623
+ .icon-star
1624
+ background-position: -120px 0
1625
+
1626
+ .icon-star-empty
1627
+ background-position: -144px 0
1628
+
1629
+ .icon-user
1630
+ background-position: -168px 0
1631
+
1632
+ .icon-film
1633
+ background-position: -192px 0
1634
+
1635
+ .icon-th-large
1636
+ background-position: -216px 0
1637
+
1638
+ .icon-th
1639
+ background-position: -240px 0
1640
+
1641
+ .icon-th-list
1642
+ background-position: -264px 0
1643
+
1644
+ .icon-ok
1645
+ background-position: -288px 0
1646
+
1647
+ .icon-remove
1648
+ background-position: -312px 0
1649
+
1650
+ .icon-zoom-in
1651
+ background-position: -336px 0
1652
+
1653
+ .icon-zoom-out
1654
+ background-position: -360px 0
1655
+
1656
+ .icon-off
1657
+ background-position: -384px 0
1658
+
1659
+ .icon-signal
1660
+ background-position: -408px 0
1661
+
1662
+ .icon-cog
1663
+ background-position: -432px 0
1664
+
1665
+ .icon-trash
1666
+ background-position: -456px 0
1667
+
1668
+ .icon-home
1669
+ background-position: 0 -24px
1670
+
1671
+ .icon-file
1672
+ background-position: -24px -24px
1673
+
1674
+ .icon-time
1675
+ background-position: -48px -24px
1676
+
1677
+ .icon-road
1678
+ background-position: -72px -24px
1679
+
1680
+ .icon-download-alt
1681
+ background-position: -96px -24px
1682
+
1683
+ .icon-download
1684
+ background-position: -120px -24px
1685
+
1686
+ .icon-upload
1687
+ background-position: -144px -24px
1688
+
1689
+ .icon-inbox
1690
+ background-position: -168px -24px
1691
+
1692
+ .icon-play-circle
1693
+ background-position: -192px -24px
1694
+
1695
+ .icon-repeat
1696
+ background-position: -216px -24px
1697
+
1698
+ .icon-refresh
1699
+ background-position: -240px -24px
1700
+
1701
+ .icon-list-alt
1702
+ background-position: -264px -24px
1703
+
1704
+ .icon-lock
1705
+ background-position: -287px -24px
1706
+
1707
+ .icon-flag
1708
+ background-position: -312px -24px
1709
+
1710
+ .icon-headphones
1711
+ background-position: -336px -24px
1712
+
1713
+ .icon-volume-off
1714
+ background-position: -360px -24px
1715
+
1716
+ .icon-volume-down
1717
+ background-position: -384px -24px
1718
+
1719
+ .icon-volume-up
1720
+ background-position: -408px -24px
1721
+
1722
+ .icon-qrcode
1723
+ background-position: -432px -24px
1724
+
1725
+ .icon-barcode
1726
+ background-position: -456px -24px
1727
+
1728
+ .icon-tag
1729
+ background-position: 0 -48px
1730
+
1731
+ .icon-tags
1732
+ background-position: -25px -48px
1733
+
1734
+ .icon-book
1735
+ background-position: -48px -48px
1736
+
1737
+ .icon-bookmark
1738
+ background-position: -72px -48px
1739
+
1740
+ .icon-print
1741
+ background-position: -96px -48px
1742
+
1743
+ .icon-camera
1744
+ background-position: -120px -48px
1745
+
1746
+ .icon-font
1747
+ background-position: -144px -48px
1748
+
1749
+ .icon-bold
1750
+ background-position: -167px -48px
1751
+
1752
+ .icon-italic
1753
+ background-position: -192px -48px
1754
+
1755
+ .icon-text-height
1756
+ background-position: -216px -48px
1757
+
1758
+ .icon-text-width
1759
+ background-position: -240px -48px
1760
+
1761
+ .icon-align-left
1762
+ background-position: -264px -48px
1763
+
1764
+ .icon-align-center
1765
+ background-position: -288px -48px
1766
+
1767
+ .icon-align-right
1768
+ background-position: -312px -48px
1769
+
1770
+ .icon-align-justify
1771
+ background-position: -336px -48px
1772
+
1773
+ .icon-list
1774
+ background-position: -360px -48px
1775
+
1776
+ .icon-indent-left
1777
+ background-position: -384px -48px
1778
+
1779
+ .icon-indent-right
1780
+ background-position: -408px -48px
1781
+
1782
+ .icon-facetime-video
1783
+ background-position: -432px -48px
1784
+
1785
+ .icon-picture
1786
+ background-position: -456px -48px
1787
+
1788
+ .icon-pencil
1789
+ background-position: 0 -72px
1790
+
1791
+ .icon-map-marker
1792
+ background-position: -24px -72px
1793
+
1794
+ .icon-adjust
1795
+ background-position: -48px -72px
1796
+
1797
+ .icon-tint
1798
+ background-position: -72px -72px
1799
+
1800
+ .icon-edit
1801
+ background-position: -96px -72px
1802
+
1803
+ .icon-share
1804
+ background-position: -120px -72px
1805
+
1806
+ .icon-check
1807
+ background-position: -144px -72px
1808
+
1809
+ .icon-move
1810
+ background-position: -168px -72px
1811
+
1812
+ .icon-step-backward
1813
+ background-position: -192px -72px
1814
+
1815
+ .icon-fast-backward
1816
+ background-position: -216px -72px
1817
+
1818
+ .icon-backward
1819
+ background-position: -240px -72px
1820
+
1821
+ .icon-play
1822
+ background-position: -264px -72px
1823
+
1824
+ .icon-pause
1825
+ background-position: -288px -72px
1826
+
1827
+ .icon-stop
1828
+ background-position: -312px -72px
1829
+
1830
+ .icon-forward
1831
+ background-position: -336px -72px
1832
+
1833
+ .icon-fast-forward
1834
+ background-position: -360px -72px
1835
+
1836
+ .icon-step-forward
1837
+ background-position: -384px -72px
1838
+
1839
+ .icon-eject
1840
+ background-position: -408px -72px
1841
+
1842
+ .icon-chevron-left
1843
+ background-position: -432px -72px
1844
+
1845
+ .icon-chevron-right
1846
+ background-position: -456px -72px
1847
+
1848
+ .icon-plus-sign
1849
+ background-position: 0 -96px
1850
+
1851
+ .icon-minus-sign
1852
+ background-position: -24px -96px
1853
+
1854
+ .icon-remove-sign
1855
+ background-position: -48px -96px
1856
+
1857
+ .icon-ok-sign
1858
+ background-position: -72px -96px
1859
+
1860
+ .icon-question-sign
1861
+ background-position: -96px -96px
1862
+
1863
+ .icon-info-sign
1864
+ background-position: -120px -96px
1865
+
1866
+ .icon-screenshot
1867
+ background-position: -144px -96px
1868
+
1869
+ .icon-remove-circle
1870
+ background-position: -168px -96px
1871
+
1872
+ .icon-ok-circle
1873
+ background-position: -192px -96px
1874
+
1875
+ .icon-ban-circle
1876
+ background-position: -216px -96px
1877
+
1878
+ .icon-arrow-left
1879
+ background-position: -240px -96px
1880
+
1881
+ .icon-arrow-right
1882
+ background-position: -264px -96px
1883
+
1884
+ .icon-arrow-up
1885
+ background-position: -289px -96px
1886
+
1887
+ .icon-arrow-down
1888
+ background-position: -312px -96px
1889
+
1890
+ .icon-share-alt
1891
+ background-position: -336px -96px
1892
+
1893
+ .icon-resize-full
1894
+ background-position: -360px -96px
1895
+
1896
+ .icon-resize-small
1897
+ background-position: -384px -96px
1898
+
1899
+ .icon-plus
1900
+ background-position: -408px -96px
1901
+
1902
+ .icon-minus
1903
+ background-position: -433px -96px
1904
+
1905
+ .icon-asterisk
1906
+ background-position: -456px -96px
1907
+
1908
+ .icon-exclamation-sign
1909
+ background-position: 0 -120px
1910
+
1911
+ .icon-gift
1912
+ background-position: -24px -120px
1913
+
1914
+ .icon-leaf
1915
+ background-position: -48px -120px
1916
+
1917
+ .icon-fire
1918
+ background-position: -72px -120px
1919
+
1920
+ .icon-eye-open
1921
+ background-position: -96px -120px
1922
+
1923
+ .icon-eye-close
1924
+ background-position: -120px -120px
1925
+
1926
+ .icon-warning-sign
1927
+ background-position: -144px -120px
1928
+
1929
+ .icon-plane
1930
+ background-position: -168px -120px
1931
+
1932
+ .icon-calendar
1933
+ background-position: -192px -120px
1934
+
1935
+ .icon-random
1936
+ background-position: -216px -120px
1937
+
1938
+ .icon-comment
1939
+ background-position: -240px -120px
1940
+
1941
+ .icon-magnet
1942
+ background-position: -264px -120px
1943
+
1944
+ .icon-chevron-up
1945
+ background-position: -288px -120px
1946
+
1947
+ .icon-chevron-down
1948
+ background-position: -313px -119px
1949
+
1950
+ .icon-retweet
1951
+ background-position: -336px -120px
1952
+
1953
+ .icon-shopping-cart
1954
+ background-position: -360px -120px
1955
+
1956
+ .icon-folder-close
1957
+ background-position: -384px -120px
1958
+
1959
+ .icon-folder-open
1960
+ background-position: -408px -120px
1961
+
1962
+ .icon-resize-vertical
1963
+ background-position: -432px -119px
1964
+
1965
+ .icon-resize-horizontal
1966
+ background-position: -456px -118px
1967
+
1968
+ .icon-hdd
1969
+ background-position: 0 -144px
1970
+
1971
+ .icon-bullhorn
1972
+ background-position: -24px -144px
1973
+
1974
+ .icon-bell
1975
+ background-position: -48px -144px
1976
+
1977
+ .icon-certificate
1978
+ background-position: -72px -144px
1979
+
1980
+ .icon-thumbs-up
1981
+ background-position: -96px -144px
1982
+
1983
+ .icon-thumbs-down
1984
+ background-position: -120px -144px
1985
+
1986
+ .icon-hand-right
1987
+ background-position: -144px -144px
1988
+
1989
+ .icon-hand-left
1990
+ background-position: -168px -144px
1991
+
1992
+ .icon-hand-up
1993
+ background-position: -192px -144px
1994
+
1995
+ .icon-hand-down
1996
+ background-position: -216px -144px
1997
+
1998
+ .icon-circle-arrow-right
1999
+ background-position: -240px -144px
2000
+
2001
+ .icon-circle-arrow-left
2002
+ background-position: -264px -144px
2003
+
2004
+ .icon-circle-arrow-up
2005
+ background-position: -288px -144px
2006
+
2007
+ .icon-circle-arrow-down
2008
+ background-position: -312px -144px
2009
+
2010
+ .icon-globe
2011
+ background-position: -336px -144px
2012
+
2013
+ .icon-wrench
2014
+ background-position: -360px -144px
2015
+
2016
+ .icon-tasks
2017
+ background-position: -384px -144px
2018
+
2019
+ .icon-filter
2020
+ background-position: -408px -144px
2021
+
2022
+ .icon-briefcase
2023
+ background-position: -432px -144px
2024
+
2025
+ .icon-fullscreen
2026
+ background-position: -456px -144px
2027
+
2028
+ .btn-group
2029
+ position: relative
2030
+ *zoom: 1
2031
+ *margin-left: .3em
2032
+ &:before
2033
+ display: table
2034
+ content: ""
2035
+ &:after
2036
+ display: table
2037
+ content: ""
2038
+ clear: both
2039
+ &:first-child
2040
+ *margin-left: 0
2041
+ + .btn-group
2042
+ margin-left: 5px
2043
+
2044
+ .btn-toolbar
2045
+ margin-top: 9px
2046
+ margin-bottom: 9px
2047
+ .btn-group
2048
+ display: inline-block
2049
+ *display: inline
2050
+ /* IE7 inline-block hack
2051
+ *zoom: 1
2052
+
2053
+ .btn-group
2054
+ >
2055
+ .btn
2056
+ position: relative
2057
+ float: left
2058
+ margin-left: -1px
2059
+ -webkit-border-radius: 0
2060
+ -moz-border-radius: 0
2061
+ border-radius: 0
2062
+ &:first-child
2063
+ margin-left: 0
2064
+ -webkit-border-top-left-radius: 4px
2065
+ -moz-border-radius-topleft: 4px
2066
+ border-top-left-radius: 4px
2067
+ -webkit-border-bottom-left-radius: 4px
2068
+ -moz-border-radius-bottomleft: 4px
2069
+ border-bottom-left-radius: 4px
2070
+ &:last-child
2071
+ -webkit-border-top-right-radius: 4px
2072
+ -moz-border-radius-topright: 4px
2073
+ border-top-right-radius: 4px
2074
+ -webkit-border-bottom-right-radius: 4px
2075
+ -moz-border-radius-bottomright: 4px
2076
+ border-bottom-right-radius: 4px
2077
+ .dropdown-toggle
2078
+ -webkit-border-top-right-radius: 4px
2079
+ -moz-border-radius-topright: 4px
2080
+ border-top-right-radius: 4px
2081
+ -webkit-border-bottom-right-radius: 4px
2082
+ -moz-border-radius-bottomright: 4px
2083
+ border-bottom-right-radius: 4px
2084
+ .btn.large
2085
+ &:first-child
2086
+ margin-left: 0
2087
+ -webkit-border-top-left-radius: 6px
2088
+ -moz-border-radius-topleft: 6px
2089
+ border-top-left-radius: 6px
2090
+ -webkit-border-bottom-left-radius: 6px
2091
+ -moz-border-radius-bottomleft: 6px
2092
+ border-bottom-left-radius: 6px
2093
+ &:last-child
2094
+ -webkit-border-top-right-radius: 6px
2095
+ -moz-border-radius-topright: 6px
2096
+ border-top-right-radius: 6px
2097
+ -webkit-border-bottom-right-radius: 6px
2098
+ -moz-border-radius-bottomright: 6px
2099
+ border-bottom-right-radius: 6px
2100
+ .large.dropdown-toggle
2101
+ -webkit-border-top-right-radius: 6px
2102
+ -moz-border-radius-topright: 6px
2103
+ border-top-right-radius: 6px
2104
+ -webkit-border-bottom-right-radius: 6px
2105
+ -moz-border-radius-bottomright: 6px
2106
+ border-bottom-right-radius: 6px
2107
+ .btn
2108
+ &:hover, &:focus, &:active, &.active
2109
+ z-index: 2
2110
+ .dropdown-toggle:active
2111
+ outline: 0
2112
+ &.open
2113
+ .dropdown-toggle
2114
+ outline: 0
2115
+ background-image: none
2116
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2117
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2118
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05)
2119
+ .btn.dropdown-toggle
2120
+ background-color: #e6e6e6
2121
+ .btn-primary.dropdown-toggle
2122
+ background-color: #0055cc
2123
+ .btn-warning.dropdown-toggle
2124
+ background-color: #f89406
2125
+ .btn-danger.dropdown-toggle
2126
+ background-color: #bd362f
2127
+ .btn-success.dropdown-toggle
2128
+ background-color: #51a351
2129
+ .btn-info.dropdown-toggle
2130
+ background-color: #2f96b4
2131
+ .btn-inverse.dropdown-toggle
2132
+ background-color: #222222
2133
+ >
2134
+ .dropdown-toggle
2135
+ padding-left: 8px
2136
+ padding-right: 8px
2137
+ -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)
2138
+ -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)
2139
+ 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)
2140
+ *padding-top: 4px
2141
+ *padding-bottom: 4px
2142
+ .btn-mini.dropdown-toggle
2143
+ padding-left: 5px
2144
+ padding-right: 5px
2145
+ .btn-small.dropdown-toggle
2146
+ *padding-top: 4px
2147
+ *padding-bottom: 4px
2148
+ .btn-large.dropdown-toggle
2149
+ padding-left: 12px
2150
+ padding-right: 12px
2151
+
2152
+ .btn
2153
+ .caret
2154
+ margin-top: 7px
2155
+ margin-left: 0
2156
+ &:hover .caret
2157
+ opacity: 1
2158
+ filter: alpha(opacity = 100)
2159
+
2160
+ .open.btn-group .caret
2161
+ opacity: 1
2162
+ filter: alpha(opacity = 100)
2163
+
2164
+ .btn-mini .caret
2165
+ margin-top: 5px
2166
+
2167
+ .btn-small .caret
2168
+ margin-top: 6px
2169
+
2170
+ .btn-large .caret
2171
+ margin-top: 6px
2172
+ border-left-width: 5px
2173
+ border-right-width: 5px
2174
+ border-top-width: 5px
2175
+
2176
+ .dropup .caret
2177
+ border-bottom: 5px solid #000000
2178
+ border-top: 0
2179
+
2180
+ .btn-primary .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret, .btn-success .caret, .btn-inverse .caret
2181
+ border-top-color: #ffffff
2182
+ border-bottom-color: #ffffff
2183
+ opacity: 0.75
2184
+ filter: alpha(opacity = 75)
2185
+
2186
+ .nav
2187
+ margin-left: 0
2188
+ margin-bottom: 18px
2189
+ list-style: none
2190
+ >
2191
+ li a
2192
+ display: block
2193
+ &:hover
2194
+ text-decoration: none
2195
+ background-color: #eeeeee
2196
+ .pull-right
2197
+ float: right
2198
+ .nav-header
2199
+ display: block
2200
+ padding: 3px 15px
2201
+ font-size: 11px
2202
+ font-weight: bold
2203
+ line-height: 18px
2204
+ color: #999999
2205
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5)
2206
+ text-transform: uppercase
2207
+ li .nav-header
2208
+ margin-top: 9px
2209
+
2210
+ .nav-list
2211
+ padding-left: 15px
2212
+ padding-right: 15px
2213
+ margin-bottom: 0
2214
+ > a, .nav-header
2215
+ margin-left: -15px
2216
+ margin-right: -15px
2217
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5)
2218
+ >
2219
+ li a
2220
+ padding: 3px 15px
2221
+ .active a
2222
+ color: #ffffff
2223
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2)
2224
+ background-color: #0088cc
2225
+ &:hover
2226
+ color: #ffffff
2227
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2)
2228
+ background-color: #0088cc
2229
+ [class^="icon-"]
2230
+ margin-right: 2px
2231
+ .divider
2232
+ *width: 100%
2233
+ height: 1px
2234
+ margin: 8px 1px
2235
+ *margin: -5px 0 5px
2236
+ overflow: hidden
2237
+ background-color: #e5e5e5
2238
+ border-bottom: 1px solid #ffffff
2239
+
2240
+ .nav-tabs, .nav-pills
2241
+ *zoom: 1
2242
+
2243
+ .nav-tabs:before, .nav-pills:before, .nav-tabs:after, .nav-pills:after
2244
+ display: table
2245
+ content: ""
2246
+
2247
+ .nav-tabs:after, .nav-pills:after
2248
+ clear: both
2249
+
2250
+ .nav-tabs li, .nav-pills li
2251
+ float: left
2252
+
2253
+ .nav-tabs a, .nav-pills a
2254
+ padding-right: 12px
2255
+ padding-left: 12px
2256
+ margin-right: 2px
2257
+ line-height: 14px
2258
+
2259
+ .nav-tabs
2260
+ border-bottom: 1px solid #ddd
2261
+ >
2262
+ li
2263
+ margin-bottom: -1px
2264
+ > a
2265
+ padding-top: 8px
2266
+ padding-bottom: 8px
2267
+ line-height: 18px
2268
+ border: 1px solid transparent
2269
+ -webkit-border-radius: 4px 4px 0 0
2270
+ -moz-border-radius: 4px 4px 0 0
2271
+ border-radius: 4px 4px 0 0
2272
+ &:hover
2273
+ border-color: #eeeeee #eeeeee #dddddd
2274
+ .active a
2275
+ color: #555555
2276
+ background-color: #ffffff
2277
+ border: 1px solid #ddd
2278
+ border-bottom-color: transparent
2279
+ cursor: default
2280
+ &:hover
2281
+ color: #555555
2282
+ background-color: #ffffff
2283
+ border: 1px solid #ddd
2284
+ border-bottom-color: transparent
2285
+ cursor: default
2286
+
2287
+ .nav-pills >
2288
+ li a
2289
+ padding-top: 8px
2290
+ padding-bottom: 8px
2291
+ margin-top: 2px
2292
+ margin-bottom: 2px
2293
+ -webkit-border-radius: 5px
2294
+ -moz-border-radius: 5px
2295
+ border-radius: 5px
2296
+ .active a
2297
+ color: #ffffff
2298
+ background-color: #0088cc
2299
+ &:hover
2300
+ color: #ffffff
2301
+ background-color: #0088cc
2302
+
2303
+ .nav-stacked li
2304
+ float: none
2305
+ > a
2306
+ margin-right: 0
2307
+
2308
+ .nav-tabs.nav-stacked
2309
+ border-bottom: 0
2310
+ > li
2311
+ > a
2312
+ border: 1px solid #ddd
2313
+ -webkit-border-radius: 0
2314
+ -moz-border-radius: 0
2315
+ border-radius: 0
2316
+ &:first-child a
2317
+ -webkit-border-radius: 4px 4px 0 0
2318
+ -moz-border-radius: 4px 4px 0 0
2319
+ border-radius: 4px 4px 0 0
2320
+ &:last-child a
2321
+ -webkit-border-radius: 0 0 4px 4px
2322
+ -moz-border-radius: 0 0 4px 4px
2323
+ border-radius: 0 0 4px 4px
2324
+ > a:hover
2325
+ border-color: #ddd
2326
+ z-index: 2
2327
+
2328
+ .nav-pills.nav-stacked li
2329
+ > a
2330
+ margin-bottom: 3px
2331
+ &:last-child a
2332
+ margin-bottom: 1px
2333
+
2334
+ .nav-tabs .dropdown-menu
2335
+ -webkit-border-radius: 0 0 5px 5px
2336
+ -moz-border-radius: 0 0 5px 5px
2337
+ border-radius: 0 0 5px 5px
2338
+
2339
+ .nav-pills .dropdown-menu
2340
+ -webkit-border-radius: 4px
2341
+ -moz-border-radius: 4px
2342
+ border-radius: 4px
2343
+
2344
+ .nav-tabs .caret, .nav-pills .caret
2345
+ border-top-color: #0088cc
2346
+ border-bottom-color: #0088cc
2347
+ margin-top: 6px
2348
+
2349
+ .nav-tabs .caret, .nav-pills .caret
2350
+ border-top-color: #005580
2351
+ border-bottom-color: #005580
2352
+
2353
+ .nav-tabs .caret, .nav-pills .caret
2354
+ border-top-color: #333333
2355
+ border-bottom-color: #333333
2356
+
2357
+ .nav a:hover
2358
+ color: #000000
2359
+ cursor: pointer
2360
+
2361
+ .nav-tabs .dropdown-toggle, .nav-pills .dropdown-toggle
2362
+ color: #ffffff
2363
+ background-color: #999999
2364
+ border-color: #999999
2365
+
2366
+ .nav
2367
+ > a:hover
2368
+ color: #ffffff
2369
+ background-color: #999999
2370
+ border-color: #999999
2371
+ li.dropdown.open
2372
+ .caret, &.active .caret, a:hover .caret
2373
+ border-top-color: #ffffff
2374
+ border-bottom-color: #ffffff
2375
+ opacity: 1
2376
+ filter: alpha(opacity = 100)
2377
+
2378
+ .tabs-stacked a:hover
2379
+ border-color: #999999
2380
+
2381
+ .tabbable
2382
+ *zoom: 1
2383
+ &:before
2384
+ display: table
2385
+ content: ""
2386
+ &:after
2387
+ display: table
2388
+ content: ""
2389
+ clear: both
2390
+
2391
+ .tab-content
2392
+ overflow: auto
2393
+
2394
+ .tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs
2395
+ border-bottom: 0
2396
+
2397
+ .tab-content .tab-pane, .pill-content .pill-pane
2398
+ display: none
2399
+
2400
+ .tab-content .active, .pill-content .active
2401
+ display: block
2402
+
2403
+ .tabs-below .nav-tabs
2404
+ border-top: 1px solid #ddd
2405
+ >
2406
+ li
2407
+ margin-top: -1px
2408
+ margin-bottom: 0
2409
+ > a
2410
+ -webkit-border-radius: 0 0 4px 4px
2411
+ -moz-border-radius: 0 0 4px 4px
2412
+ border-radius: 0 0 4px 4px
2413
+ &:hover
2414
+ border-bottom-color: transparent
2415
+ border-top-color: #ddd
2416
+ .active a
2417
+ border-color: transparent #ddd #ddd #ddd
2418
+ &:hover
2419
+ border-color: transparent #ddd #ddd #ddd
2420
+
2421
+ .tabs-left li, .tabs-right li
2422
+ float: none
2423
+
2424
+ .tabs-left a, .tabs-right a
2425
+ min-width: 74px
2426
+ margin-right: 0
2427
+ margin-bottom: 3px
2428
+
2429
+ .tabs-left .nav-tabs
2430
+ float: left
2431
+ margin-right: 19px
2432
+ border-right: 1px solid #ddd
2433
+ > a
2434
+ margin-right: -1px
2435
+ -webkit-border-radius: 4px 0 0 4px
2436
+ -moz-border-radius: 4px 0 0 4px
2437
+ border-radius: 4px 0 0 4px
2438
+ &:hover
2439
+ border-color: #eeeeee #dddddd #eeeeee #eeeeee
2440
+ .active a
2441
+ border-color: #ddd transparent #ddd #ddd
2442
+ *border-right-color: #ffffff
2443
+ &:hover
2444
+ border-color: #ddd transparent #ddd #ddd
2445
+ *border-right-color: #ffffff
2446
+
2447
+ .tabs-right .nav-tabs
2448
+ float: right
2449
+ margin-left: 19px
2450
+ border-left: 1px solid #ddd
2451
+ > a
2452
+ margin-left: -1px
2453
+ -webkit-border-radius: 0 4px 4px 0
2454
+ -moz-border-radius: 0 4px 4px 0
2455
+ border-radius: 0 4px 4px 0
2456
+ &:hover
2457
+ border-color: #eeeeee #eeeeee #eeeeee #dddddd
2458
+ .active a
2459
+ border-color: #ddd #ddd #ddd transparent
2460
+ *border-left-color: #ffffff
2461
+ &:hover
2462
+ border-color: #ddd #ddd #ddd transparent
2463
+ *border-left-color: #ffffff
2464
+
2465
+ .navbar
2466
+ *position: relative
2467
+ *z-index: 2
2468
+ overflow: visible
2469
+ margin-bottom: 18px
2470
+
2471
+ .navbar-inner
2472
+ min-height: 40px
2473
+ padding-left: 20px
2474
+ padding-right: 20px
2475
+ background-color: #2c2c2c
2476
+ background-image: -moz-linear-gradient(top, #333333, #222222)
2477
+ background-image: -ms-linear-gradient(top, #333333, #222222)
2478
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222))
2479
+ background-image: -webkit-linear-gradient(top, #333333, #222222)
2480
+ background-image: -o-linear-gradient(top, #333333, #222222)
2481
+ background-image: linear-gradient(top, #333333, #222222)
2482
+ background-repeat: repeat-x
2483
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0)
2484
+ -webkit-border-radius: 4px
2485
+ -moz-border-radius: 4px
2486
+ border-radius: 4px
2487
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1)
2488
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1)
2489
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1)
2490
+
2491
+ .navbar .container
2492
+ width: auto
2493
+
2494
+ .nav-collapse.collapse
2495
+ height: auto
2496
+
2497
+ .navbar
2498
+ color: #999999
2499
+ .brand
2500
+ &:hover
2501
+ text-decoration: none
2502
+ float: left
2503
+ display: block
2504
+ padding: 8px 20px 12px
2505
+ margin-left: -20px
2506
+ font-size: 20px
2507
+ font-weight: 200
2508
+ line-height: 1
2509
+ color: #999999
2510
+ .navbar-text
2511
+ margin-bottom: 0
2512
+ line-height: 40px
2513
+ .navbar-link
2514
+ color: #999999
2515
+ &:hover
2516
+ color: #ffffff
2517
+ .btn
2518
+ margin-top: 5px
2519
+ .btn-group
2520
+ margin-top: 5px
2521
+ .btn
2522
+ margin: 0
2523
+
2524
+ .navbar-form
2525
+ margin-bottom: 0
2526
+ *zoom: 1
2527
+ &:before
2528
+ display: table
2529
+ content: ""
2530
+ &:after
2531
+ display: table
2532
+ content: ""
2533
+ clear: both
2534
+ input, select, .radio, .checkbox
2535
+ margin-top: 5px
2536
+ input, select
2537
+ display: inline-block
2538
+ margin-bottom: 0
2539
+ input
2540
+ &[type="image"], &[type="checkbox"], &[type="radio"]
2541
+ margin-top: 3px
2542
+ .input-append, .input-prepend
2543
+ margin-top: 6px
2544
+ white-space: nowrap
2545
+ .input-append input, .input-prepend input
2546
+ margin-top: 0
2547
+
2548
+ .navbar-search
2549
+ position: relative
2550
+ float: left
2551
+ margin-top: 6px
2552
+ margin-bottom: 0
2553
+ .search-query
2554
+ padding: 4px 9px
2555
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
2556
+ font-size: 13px
2557
+ font-weight: normal
2558
+ line-height: 1
2559
+ color: #ffffff
2560
+ background-color: #626262
2561
+ border: 1px solid #151515
2562
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15)
2563
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15)
2564
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15)
2565
+ -webkit-transition: none
2566
+ -moz-transition: none
2567
+ -ms-transition: none
2568
+ -o-transition: none
2569
+ transition: none
2570
+ &:-moz-placeholder, &:-ms-input-placeholder, &::-webkit-input-placeholder
2571
+ color: #cccccc
2572
+ &:focus, &.focused
2573
+ padding: 5px 10px
2574
+ color: #333333
2575
+ text-shadow: 0 1px 0 #ffffff
2576
+ background-color: #ffffff
2577
+ border: 0
2578
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15)
2579
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15)
2580
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15)
2581
+ outline: 0
2582
+
2583
+ .navbar-fixed-top, .navbar-fixed-bottom
2584
+ position: fixed
2585
+ right: 0
2586
+ left: 0
2587
+ z-index: 1030
2588
+ margin-bottom: 0
2589
+
2590
+ .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner
2591
+ padding-left: 0
2592
+ padding-right: 0
2593
+ -webkit-border-radius: 0
2594
+ -moz-border-radius: 0
2595
+ border-radius: 0
2596
+
2597
+ .navbar-fixed-top .container, .navbar-fixed-bottom .container
2598
+ width: 940px
2599
+
2600
+ .navbar-fixed-top
2601
+ top: 0
2602
+
2603
+ .navbar-fixed-bottom
2604
+ bottom: 0
2605
+
2606
+ .navbar
2607
+ .nav
2608
+ position: relative
2609
+ left: 0
2610
+ display: block
2611
+ float: left
2612
+ margin: 0 10px 0 0
2613
+ &.pull-right
2614
+ float: right
2615
+ > li
2616
+ display: block
2617
+ float: left
2618
+ > a
2619
+ float: none
2620
+ padding: 9px 10px 11px
2621
+ line-height: 19px
2622
+ color: #999999
2623
+ text-decoration: none
2624
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
2625
+ .btn
2626
+ display: inline-block
2627
+ padding: 4px 10px 4px
2628
+ margin: 5px 5px 6px
2629
+ line-height: 18px
2630
+ .btn-group
2631
+ margin: 0
2632
+ padding: 5px 5px 6px
2633
+ .nav
2634
+ > a:hover
2635
+ background-color: transparent
2636
+ color: #ffffff
2637
+ text-decoration: none
2638
+ .active a
2639
+ color: #ffffff
2640
+ text-decoration: none
2641
+ background-color: #222222
2642
+ &:hover
2643
+ color: #ffffff
2644
+ text-decoration: none
2645
+ background-color: #222222
2646
+ .divider-vertical
2647
+ height: 40px
2648
+ width: 1px
2649
+ margin: 0 9px
2650
+ overflow: hidden
2651
+ background-color: #222222
2652
+ border-right: 1px solid #333333
2653
+ .nav.pull-right
2654
+ margin-left: 10px
2655
+ margin-right: 0
2656
+ .btn-navbar
2657
+ display: none
2658
+ float: right
2659
+ padding: 7px 10px
2660
+ margin-left: 5px
2661
+ margin-right: 5px
2662
+ background-color: #2c2c2c
2663
+ background-image: -moz-linear-gradient(top, #333333, #222222)
2664
+ background-image: -ms-linear-gradient(top, #333333, #222222)
2665
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222))
2666
+ background-image: -webkit-linear-gradient(top, #333333, #222222)
2667
+ background-image: -o-linear-gradient(top, #333333, #222222)
2668
+ background-image: linear-gradient(top, #333333, #222222)
2669
+ background-repeat: repeat-x
2670
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0)
2671
+ border-color: #222222 #222222 #000000
2672
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)
2673
+ *background-color: #222222
2674
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders
2675
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false)
2676
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075)
2677
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075)
2678
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075)
2679
+ &:hover, &:active, &.active, &.disabled, &[disabled]
2680
+ background-color: #222222
2681
+ *background-color: #151515
2682
+ &:active, &.active
2683
+ background-color: #080808 \9
2684
+ .icon-bar
2685
+ display: block
2686
+ width: 18px
2687
+ height: 2px
2688
+ background-color: #f5f5f5
2689
+ -webkit-border-radius: 1px
2690
+ -moz-border-radius: 1px
2691
+ border-radius: 1px
2692
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25)
2693
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25)
2694
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25)
2695
+
2696
+ .btn-navbar .icon-bar
2697
+ margin-top: 3px
2698
+
2699
+ .navbar .dropdown-menu
2700
+ &:before
2701
+ content: ''
2702
+ display: inline-block
2703
+ border-left: 7px solid transparent
2704
+ border-right: 7px solid transparent
2705
+ border-bottom: 7px solid #ccc
2706
+ border-bottom-color: rgba(0, 0, 0, 0.2)
2707
+ position: absolute
2708
+ top: -7px
2709
+ left: 9px
2710
+ &:after
2711
+ content: ''
2712
+ display: inline-block
2713
+ border-left: 6px solid transparent
2714
+ border-right: 6px solid transparent
2715
+ border-bottom: 6px solid #ffffff
2716
+ position: absolute
2717
+ top: -6px
2718
+ left: 10px
2719
+
2720
+ .navbar-fixed-bottom .dropdown-menu
2721
+ &:before
2722
+ border-top: 7px solid #ccc
2723
+ border-top-color: rgba(0, 0, 0, 0.2)
2724
+ border-bottom: 0
2725
+ bottom: -7px
2726
+ top: auto
2727
+ &:after
2728
+ border-top: 6px solid #ffffff
2729
+ border-bottom: 0
2730
+ bottom: -6px
2731
+ top: auto
2732
+
2733
+ .navbar
2734
+ .nav li.dropdown
2735
+ .dropdown-toggle .caret, &.open .caret
2736
+ border-top-color: #ffffff
2737
+ border-bottom-color: #ffffff
2738
+ &.active .caret
2739
+ opacity: 1
2740
+ filter: alpha(opacity = 100)
2741
+ &.open .dropdown-toggle, &.active .dropdown-toggle, &.open.active .dropdown-toggle
2742
+ background-color: transparent
2743
+ &.active .dropdown-toggle:hover
2744
+ color: #ffffff
2745
+ .pull-right .dropdown-menu, .dropdown-menu.pull-right
2746
+ left: auto
2747
+ right: 0
2748
+ .pull-right .dropdown-menu:before, .dropdown-menu.pull-right:before
2749
+ left: auto
2750
+ right: 12px
2751
+ .pull-right .dropdown-menu:after, .dropdown-menu.pull-right:after
2752
+ left: auto
2753
+ right: 13px
2754
+
2755
+ .breadcrumb
2756
+ padding: 7px 14px
2757
+ margin: 0 0 18px
2758
+ list-style: none
2759
+ background-color: #fbfbfb
2760
+ background-image: -moz-linear-gradient(top, white, #f5f5f5)
2761
+ background-image: -ms-linear-gradient(top, white, #f5f5f5)
2762
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#f5f5f5))
2763
+ background-image: -webkit-linear-gradient(top, white, #f5f5f5)
2764
+ background-image: -o-linear-gradient(top, white, #f5f5f5)
2765
+ background-image: linear-gradient(top, white, #f5f5f5)
2766
+ background-repeat: repeat-x
2767
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0)
2768
+ border: 1px solid #ddd
2769
+ -webkit-border-radius: 3px
2770
+ -moz-border-radius: 3px
2771
+ border-radius: 3px
2772
+ -webkit-box-shadow: inset 0 1px 0 #ffffff
2773
+ -moz-box-shadow: inset 0 1px 0 #ffffff
2774
+ box-shadow: inset 0 1px 0 #ffffff
2775
+ li
2776
+ display: inline-block
2777
+ *display: inline
2778
+ /* IE7 inline-block hack
2779
+ *zoom: 1
2780
+ text-shadow: 0 1px 0 #ffffff
2781
+ .divider
2782
+ padding: 0 5px
2783
+ color: #999999
2784
+ .active a
2785
+ color: #333333
2786
+
2787
+ .pagination
2788
+ height: 36px
2789
+ margin: 18px 0
2790
+ ul
2791
+ display: inline-block
2792
+ *display: inline
2793
+ /* IE7 inline-block hack
2794
+ *zoom: 1
2795
+ margin-left: 0
2796
+ margin-bottom: 0
2797
+ -webkit-border-radius: 3px
2798
+ -moz-border-radius: 3px
2799
+ border-radius: 3px
2800
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
2801
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
2802
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
2803
+ li
2804
+ display: inline
2805
+ a
2806
+ float: left
2807
+ padding: 0 14px
2808
+ line-height: 34px
2809
+ text-decoration: none
2810
+ border: 1px solid #ddd
2811
+ border-left-width: 0
2812
+ &:hover
2813
+ background-color: #f5f5f5
2814
+ .active a
2815
+ background-color: #f5f5f5
2816
+ color: #999999
2817
+ cursor: default
2818
+ .disabled
2819
+ span
2820
+ color: #999999
2821
+ background-color: transparent
2822
+ cursor: default
2823
+ a
2824
+ color: #999999
2825
+ background-color: transparent
2826
+ cursor: default
2827
+ &:hover
2828
+ color: #999999
2829
+ background-color: transparent
2830
+ cursor: default
2831
+ li
2832
+ &:first-child a
2833
+ border-left-width: 1px
2834
+ -webkit-border-radius: 3px 0 0 3px
2835
+ -moz-border-radius: 3px 0 0 3px
2836
+ border-radius: 3px 0 0 3px
2837
+ &:last-child a
2838
+ -webkit-border-radius: 0 3px 3px 0
2839
+ -moz-border-radius: 0 3px 3px 0
2840
+ border-radius: 0 3px 3px 0
2841
+
2842
+ .pagination-centered
2843
+ text-align: center
2844
+
2845
+ .pagination-right
2846
+ text-align: right
2847
+
2848
+ .pager
2849
+ margin-left: 0
2850
+ margin-bottom: 18px
2851
+ list-style: none
2852
+ text-align: center
2853
+ *zoom: 1
2854
+ &:before
2855
+ display: table
2856
+ content: ""
2857
+ &:after
2858
+ display: table
2859
+ content: ""
2860
+ clear: both
2861
+ li
2862
+ display: inline
2863
+ a
2864
+ display: inline-block
2865
+ padding: 5px 14px
2866
+ background-color: #fff
2867
+ border: 1px solid #ddd
2868
+ -webkit-border-radius: 15px
2869
+ -moz-border-radius: 15px
2870
+ border-radius: 15px
2871
+ &:hover
2872
+ text-decoration: none
2873
+ background-color: #f5f5f5
2874
+ .next a
2875
+ float: right
2876
+ .previous a
2877
+ float: left
2878
+ .disabled a
2879
+ color: #999999
2880
+ background-color: #fff
2881
+ cursor: default
2882
+ &:hover
2883
+ color: #999999
2884
+ background-color: #fff
2885
+ cursor: default
2886
+
2887
+ .thumbnails
2888
+ margin-left: -20px
2889
+ list-style: none
2890
+ *zoom: 1
2891
+ &:before
2892
+ display: table
2893
+ content: ""
2894
+ &:after
2895
+ display: table
2896
+ content: ""
2897
+ clear: both
2898
+
2899
+ .row-fluid .thumbnails
2900
+ margin-left: 0
2901
+
2902
+ .thumbnails li
2903
+ float: left
2904
+ margin-bottom: 18px
2905
+ margin-left: 20px
2906
+
2907
+ .thumbnail
2908
+ display: block
2909
+ padding: 4px
2910
+ line-height: 1
2911
+ border: 1px solid #ddd
2912
+ -webkit-border-radius: 4px
2913
+ -moz-border-radius: 4px
2914
+ border-radius: 4px
2915
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075)
2916
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075)
2917
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075)
2918
+
2919
+ a.thumbnail:hover
2920
+ border-color: #0088cc
2921
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
2922
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
2923
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25)
2924
+
2925
+ .thumbnail
2926
+ > img
2927
+ display: block
2928
+ max-width: 100%
2929
+ margin-left: auto
2930
+ margin-right: auto
2931
+ .caption
2932
+ padding: 9px
2933
+
2934
+ .alert
2935
+ padding: 8px 35px 8px 14px
2936
+ margin-bottom: 18px
2937
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5)
2938
+ background-color: #fcf8e3
2939
+ border: 1px solid #fbeed5
2940
+ -webkit-border-radius: 4px
2941
+ -moz-border-radius: 4px
2942
+ border-radius: 4px
2943
+ color: #c09853
2944
+
2945
+ .alert-heading
2946
+ color: inherit
2947
+
2948
+ .alert .close
2949
+ position: relative
2950
+ top: -2px
2951
+ right: -21px
2952
+ line-height: 18px
2953
+
2954
+ .alert-success
2955
+ background-color: #dff0d8
2956
+ border-color: #d6e9c6
2957
+ color: #468847
2958
+
2959
+ .alert-danger, .alert-error
2960
+ background-color: #f2dede
2961
+ border-color: #eed3d7
2962
+ color: #b94a48
2963
+
2964
+ .alert-info
2965
+ background-color: #d9edf7
2966
+ border-color: #bce8f1
2967
+ color: #3a87ad
2968
+
2969
+ .alert-block
2970
+ padding-top: 14px
2971
+ padding-bottom: 14px
2972
+ >
2973
+ p, ul
2974
+ margin-bottom: 0
2975
+ p p
2976
+ margin-top: 5px
2977
+
2978
+ @-webkit-keyframes progress-bar-stripes
2979
+ from
2980
+ background-position: 40px 0
2981
+ to
2982
+ background-position: 0 0
2983
+
2984
+
2985
+ @-moz-keyframes progress-bar-stripes
2986
+ from
2987
+ background-position: 40px 0
2988
+ to
2989
+ background-position: 0 0
2990
+
2991
+
2992
+ @-ms-keyframes progress-bar-stripes
2993
+ from
2994
+ background-position: 40px 0
2995
+ to
2996
+ background-position: 0 0
2997
+
2998
+
2999
+ @-o-keyframes progress-bar-stripes
3000
+ from
3001
+ background-position: 0 0
3002
+ to
3003
+ background-position: 40px 0
3004
+
3005
+
3006
+ @keyframes progress-bar-stripes
3007
+ from
3008
+ background-position: 40px 0
3009
+ to
3010
+ background-position: 0 0
3011
+
3012
+
3013
+ .progress
3014
+ overflow: hidden
3015
+ height: 18px
3016
+ margin-bottom: 18px
3017
+ background-color: #f7f7f7
3018
+ background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9)
3019
+ background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9)
3020
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9))
3021
+ background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9)
3022
+ background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9)
3023
+ background-image: linear-gradient(top, #f5f5f5, #f9f9f9)
3024
+ background-repeat: repeat-x
3025
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0)
3026
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
3027
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
3028
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
3029
+ -webkit-border-radius: 4px
3030
+ -moz-border-radius: 4px
3031
+ border-radius: 4px
3032
+ .bar
3033
+ width: 0%
3034
+ height: 18px
3035
+ color: #ffffff
3036
+ font-size: 12px
3037
+ text-align: center
3038
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
3039
+ background-color: #0e90d2
3040
+ background-image: -moz-linear-gradient(top, #149bdf, #0480be)
3041
+ background-image: -ms-linear-gradient(top, #149bdf, #0480be)
3042
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be))
3043
+ background-image: -webkit-linear-gradient(top, #149bdf, #0480be)
3044
+ background-image: -o-linear-gradient(top, #149bdf, #0480be)
3045
+ background-image: linear-gradient(top, #149bdf, #0480be)
3046
+ background-repeat: repeat-x
3047
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0)
3048
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15)
3049
+ -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15)
3050
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15)
3051
+ -webkit-box-sizing: border-box
3052
+ -moz-box-sizing: border-box
3053
+ -ms-box-sizing: border-box
3054
+ box-sizing: border-box
3055
+ -webkit-transition: width 0.6s ease
3056
+ -moz-transition: width 0.6s ease
3057
+ -ms-transition: width 0.6s ease
3058
+ -o-transition: width 0.6s ease
3059
+ transition: width 0.6s ease
3060
+
3061
+ .progress-striped .bar
3062
+ background-color: #149bdf
3063
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent))
3064
+ background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3065
+ background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3066
+ background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3067
+ background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3068
+ background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3069
+ -webkit-background-size: 40px 40px
3070
+ -moz-background-size: 40px 40px
3071
+ -o-background-size: 40px 40px
3072
+ background-size: 40px 40px
3073
+
3074
+ .progress.active .bar
3075
+ -webkit-animation: progress-bar-stripes 2s linear infinite
3076
+ -moz-animation: progress-bar-stripes 2s linear infinite
3077
+ -ms-animation: progress-bar-stripes 2s linear infinite
3078
+ -o-animation: progress-bar-stripes 2s linear infinite
3079
+ animation: progress-bar-stripes 2s linear infinite
3080
+
3081
+ .progress-danger
3082
+ .bar
3083
+ background-color: #dd514c
3084
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35)
3085
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35)
3086
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35))
3087
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35)
3088
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35)
3089
+ background-image: linear-gradient(top, #ee5f5b, #c43c35)
3090
+ background-repeat: repeat-x
3091
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0)
3092
+ &.progress-striped .bar
3093
+ background-color: #ee5f5b
3094
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent))
3095
+ background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3096
+ background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3097
+ background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3098
+ background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3099
+ background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3100
+
3101
+ .progress-success
3102
+ .bar
3103
+ background-color: #5eb95e
3104
+ background-image: -moz-linear-gradient(top, #62c462, #57a957)
3105
+ background-image: -ms-linear-gradient(top, #62c462, #57a957)
3106
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957))
3107
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957)
3108
+ background-image: -o-linear-gradient(top, #62c462, #57a957)
3109
+ background-image: linear-gradient(top, #62c462, #57a957)
3110
+ background-repeat: repeat-x
3111
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0)
3112
+ &.progress-striped .bar
3113
+ background-color: #62c462
3114
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent))
3115
+ background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3116
+ background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3117
+ background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3118
+ background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3119
+ background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3120
+
3121
+ .progress-info
3122
+ .bar
3123
+ background-color: #4bb1cf
3124
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9)
3125
+ background-image: -ms-linear-gradient(top, #5bc0de, #339bb9)
3126
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9))
3127
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9)
3128
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9)
3129
+ background-image: linear-gradient(top, #5bc0de, #339bb9)
3130
+ background-repeat: repeat-x
3131
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0)
3132
+ &.progress-striped .bar
3133
+ background-color: #5bc0de
3134
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent))
3135
+ background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3136
+ background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3137
+ background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3138
+ background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3139
+ background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3140
+
3141
+ .progress-warning
3142
+ .bar
3143
+ background-color: #faa732
3144
+ background-image: -moz-linear-gradient(top, #fbb450, #f89406)
3145
+ background-image: -ms-linear-gradient(top, #fbb450, #f89406)
3146
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406))
3147
+ background-image: -webkit-linear-gradient(top, #fbb450, #f89406)
3148
+ background-image: -o-linear-gradient(top, #fbb450, #f89406)
3149
+ background-image: linear-gradient(top, #fbb450, #f89406)
3150
+ background-repeat: repeat-x
3151
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0)
3152
+ &.progress-striped .bar
3153
+ background-color: #fbb450
3154
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent))
3155
+ background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3156
+ background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3157
+ background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3158
+ background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3159
+ background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
3160
+
3161
+ .hero-unit
3162
+ padding: 60px
3163
+ margin-bottom: 30px
3164
+ background-color: #eeeeee
3165
+ -webkit-border-radius: 6px
3166
+ -moz-border-radius: 6px
3167
+ border-radius: 6px
3168
+ h1
3169
+ margin-bottom: 0
3170
+ font-size: 60px
3171
+ line-height: 1
3172
+ color: inherit
3173
+ letter-spacing: -1px
3174
+ p
3175
+ font-size: 18px
3176
+ font-weight: 200
3177
+ line-height: 27px
3178
+ color: inherit
3179
+
3180
+ .tooltip
3181
+ position: absolute
3182
+ z-index: 1020
3183
+ display: block
3184
+ visibility: visible
3185
+ padding: 5px
3186
+ font-size: 11px
3187
+ opacity: 0
3188
+ filter: alpha(opacity = 0)
3189
+ &.in
3190
+ opacity: 0.8
3191
+ filter: alpha(opacity = 80)
3192
+ &.top
3193
+ margin-top: -2px
3194
+ &.right
3195
+ margin-left: 2px
3196
+ &.bottom
3197
+ margin-top: 2px
3198
+ &.left
3199
+ margin-left: -2px
3200
+ &.top .tooltip-arrow
3201
+ bottom: 0
3202
+ left: 50%
3203
+ margin-left: -5px
3204
+ border-left: 5px solid transparent
3205
+ border-right: 5px solid transparent
3206
+ border-top: 5px solid #000000
3207
+ &.left .tooltip-arrow
3208
+ top: 50%
3209
+ right: 0
3210
+ margin-top: -5px
3211
+ border-top: 5px solid transparent
3212
+ border-bottom: 5px solid transparent
3213
+ border-left: 5px solid #000000
3214
+ &.bottom .tooltip-arrow
3215
+ top: 0
3216
+ left: 50%
3217
+ margin-left: -5px
3218
+ border-left: 5px solid transparent
3219
+ border-right: 5px solid transparent
3220
+ border-bottom: 5px solid #000000
3221
+ &.right .tooltip-arrow
3222
+ top: 50%
3223
+ left: 0
3224
+ margin-top: -5px
3225
+ border-top: 5px solid transparent
3226
+ border-bottom: 5px solid transparent
3227
+ border-right: 5px solid #000000
3228
+
3229
+ .tooltip-inner
3230
+ max-width: 200px
3231
+ padding: 3px 8px
3232
+ color: #ffffff
3233
+ text-align: center
3234
+ text-decoration: none
3235
+ background-color: #000000
3236
+ -webkit-border-radius: 4px
3237
+ -moz-border-radius: 4px
3238
+ border-radius: 4px
3239
+
3240
+ .tooltip-arrow
3241
+ position: absolute
3242
+ width: 0
3243
+ height: 0
3244
+
3245
+ .popover
3246
+ position: absolute
3247
+ top: 0
3248
+ left: 0
3249
+ z-index: 1010
3250
+ display: none
3251
+ padding: 5px
3252
+ &.top
3253
+ margin-top: -5px
3254
+ &.right
3255
+ margin-left: 5px
3256
+ &.bottom
3257
+ margin-top: 5px
3258
+ &.left
3259
+ margin-left: -5px
3260
+ &.top .arrow
3261
+ bottom: 0
3262
+ left: 50%
3263
+ margin-left: -5px
3264
+ border-left: 5px solid transparent
3265
+ border-right: 5px solid transparent
3266
+ border-top: 5px solid #000000
3267
+ &.right .arrow
3268
+ top: 50%
3269
+ left: 0
3270
+ margin-top: -5px
3271
+ border-top: 5px solid transparent
3272
+ border-bottom: 5px solid transparent
3273
+ border-right: 5px solid #000000
3274
+ &.bottom .arrow
3275
+ top: 0
3276
+ left: 50%
3277
+ margin-left: -5px
3278
+ border-left: 5px solid transparent
3279
+ border-right: 5px solid transparent
3280
+ border-bottom: 5px solid #000000
3281
+ &.left .arrow
3282
+ top: 50%
3283
+ right: 0
3284
+ margin-top: -5px
3285
+ border-top: 5px solid transparent
3286
+ border-bottom: 5px solid transparent
3287
+ border-left: 5px solid #000000
3288
+ .arrow
3289
+ position: absolute
3290
+ width: 0
3291
+ height: 0
3292
+
3293
+ .popover-inner
3294
+ padding: 3px
3295
+ width: 280px
3296
+ overflow: hidden
3297
+ background: #000000
3298
+ background: rgba(0, 0, 0, 0.8)
3299
+ -webkit-border-radius: 6px
3300
+ -moz-border-radius: 6px
3301
+ border-radius: 6px
3302
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3303
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3304
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3305
+
3306
+ .popover-title
3307
+ padding: 9px 15px
3308
+ line-height: 1
3309
+ background-color: #f5f5f5
3310
+ border-bottom: 1px solid #eee
3311
+ -webkit-border-radius: 3px 3px 0 0
3312
+ -moz-border-radius: 3px 3px 0 0
3313
+ border-radius: 3px 3px 0 0
3314
+
3315
+ .popover-content
3316
+ padding: 14px
3317
+ background-color: #ffffff
3318
+ -webkit-border-radius: 0 0 3px 3px
3319
+ -moz-border-radius: 0 0 3px 3px
3320
+ border-radius: 0 0 3px 3px
3321
+ -webkit-background-clip: padding-box
3322
+ -moz-background-clip: padding-box
3323
+ background-clip: padding-box
3324
+ p, ul, ol
3325
+ margin-bottom: 0
3326
+
3327
+ .modal-open
3328
+ .dropdown-menu
3329
+ z-index: 2050
3330
+ .dropdown.open
3331
+ *z-index: 2050
3332
+ .popover
3333
+ z-index: 2060
3334
+ .tooltip
3335
+ z-index: 2070
3336
+
3337
+ .modal-backdrop
3338
+ position: fixed
3339
+ top: 0
3340
+ right: 0
3341
+ bottom: 0
3342
+ left: 0
3343
+ z-index: 1040
3344
+ background-color: #000000
3345
+ &.fade
3346
+ opacity: 0
3347
+ &.in
3348
+ opacity: 0.8
3349
+ filter: alpha(opacity = 80)
3350
+ opacity: 0.8
3351
+ filter: alpha(opacity = 80)
3352
+
3353
+ .modal
3354
+ position: fixed
3355
+ top: 50%
3356
+ left: 50%
3357
+ z-index: 1050
3358
+ overflow: auto
3359
+ width: 560px
3360
+ margin: -250px 0 0 -280px
3361
+ background-color: #ffffff
3362
+ border: 1px solid #999
3363
+ border: 1px solid rgba(0, 0, 0, 0.3)
3364
+ *border: 1px solid #999
3365
+ /* IE6-7
3366
+ -webkit-border-radius: 6px
3367
+ -moz-border-radius: 6px
3368
+ border-radius: 6px
3369
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3370
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3371
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3)
3372
+ -webkit-background-clip: padding-box
3373
+ -moz-background-clip: padding-box
3374
+ background-clip: padding-box
3375
+ &.fade
3376
+ -webkit-transition: opacity .3s linear, top .3s ease-out
3377
+ -moz-transition: opacity .3s linear, top .3s ease-out
3378
+ -ms-transition: opacity .3s linear, top .3s ease-out
3379
+ -o-transition: opacity .3s linear, top .3s ease-out
3380
+ transition: opacity .3s linear, top .3s ease-out
3381
+ top: -25%
3382
+ &.in
3383
+ top: 50%
3384
+
3385
+ .modal-header
3386
+ padding: 9px 15px
3387
+ border-bottom: 1px solid #eee
3388
+ .close
3389
+ margin-top: 2px
3390
+
3391
+ .modal-body
3392
+ overflow-y: auto
3393
+ max-height: 400px
3394
+ padding: 15px
3395
+
3396
+ .modal-form
3397
+ margin-bottom: 0
3398
+
3399
+ .modal-footer
3400
+ padding: 14px 15px 15px
3401
+ margin-bottom: 0
3402
+ text-align: right
3403
+ background-color: #f5f5f5
3404
+ border-top: 1px solid #ddd
3405
+ -webkit-border-radius: 0 0 6px 6px
3406
+ -moz-border-radius: 0 0 6px 6px
3407
+ border-radius: 0 0 6px 6px
3408
+ -webkit-box-shadow: inset 0 1px 0 #ffffff
3409
+ -moz-box-shadow: inset 0 1px 0 #ffffff
3410
+ box-shadow: inset 0 1px 0 #ffffff
3411
+ *zoom: 1
3412
+ &:before
3413
+ display: table
3414
+ content: ""
3415
+ &:after
3416
+ display: table
3417
+ content: ""
3418
+ clear: both
3419
+ .btn .btn
3420
+ margin-left: 5px
3421
+ margin-bottom: 0
3422
+ .btn-group .btn
3423
+ margin-left: -1px
3424
+
3425
+ .dropup, .dropdown
3426
+ position: relative
3427
+
3428
+ .dropdown-toggle
3429
+ *margin-bottom: -3px
3430
+ &:active
3431
+ outline: 0
3432
+
3433
+ .open .dropdown-toggle
3434
+ outline: 0
3435
+
3436
+ .caret
3437
+ display: inline-block
3438
+ width: 0
3439
+ height: 0
3440
+ vertical-align: top
3441
+ border-top: 4px solid #000000
3442
+ border-right: 4px solid transparent
3443
+ border-left: 4px solid transparent
3444
+ content: ""
3445
+ opacity: 0.3
3446
+ filter: alpha(opacity = 30)
3447
+
3448
+ .dropdown
3449
+ .caret
3450
+ margin-top: 8px
3451
+ margin-left: 2px
3452
+ &:hover .caret
3453
+ opacity: 1
3454
+ filter: alpha(opacity = 100)
3455
+
3456
+ .open .caret
3457
+ opacity: 1
3458
+ filter: alpha(opacity = 100)
3459
+
3460
+ .dropdown-menu
3461
+ position: absolute
3462
+ top: 100%
3463
+ left: 0
3464
+ z-index: 1000
3465
+ display: none
3466
+ float: left
3467
+ min-width: 160px
3468
+ padding: 4px 0
3469
+ margin: 1px 0 0
3470
+ list-style: none
3471
+ background-color: #ffffff
3472
+ border: 1px solid #ccc
3473
+ border: 1px solid rgba(0, 0, 0, 0.2)
3474
+ *border-right-width: 2px
3475
+ *border-bottom-width: 2px
3476
+ -webkit-border-radius: 5px
3477
+ -moz-border-radius: 5px
3478
+ border-radius: 5px
3479
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
3480
+ -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
3481
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
3482
+ -webkit-background-clip: padding-box
3483
+ -moz-background-clip: padding
3484
+ background-clip: padding-box
3485
+ &.pull-right
3486
+ right: 0
3487
+ left: auto
3488
+ .divider
3489
+ *width: 100%
3490
+ height: 1px
3491
+ margin: 8px 1px
3492
+ *margin: -5px 0 5px
3493
+ overflow: hidden
3494
+ background-color: #e5e5e5
3495
+ border-bottom: 1px solid #ffffff
3496
+ a
3497
+ display: block
3498
+ padding: 3px 15px
3499
+ clear: both
3500
+ font-weight: normal
3501
+ line-height: 18px
3502
+ color: #333333
3503
+ white-space: nowrap
3504
+ li a:hover
3505
+ color: #ffffff
3506
+ text-decoration: none
3507
+ background-color: #0088cc
3508
+ .active a
3509
+ color: #ffffff
3510
+ text-decoration: none
3511
+ background-color: #0088cc
3512
+ &:hover
3513
+ color: #ffffff
3514
+ text-decoration: none
3515
+ background-color: #0088cc
3516
+
3517
+ .open
3518
+ *z-index: 1000
3519
+ > .dropdown-menu
3520
+ display: block
3521
+
3522
+ .pull-right .dropdown-menu
3523
+ right: 0
3524
+ left: auto
3525
+
3526
+ .dropup .caret, .navbar-fixed-bottom .caret
3527
+ border-top: 0
3528
+ border-bottom: 4px solid #000000
3529
+ content: "\2191"
3530
+
3531
+ .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown-menu
3532
+ top: auto
3533
+ bottom: 100%
3534
+ margin-bottom: 1px
3535
+
3536
+ .typeahead
3537
+ margin-top: 2px
3538
+ -webkit-border-radius: 4px
3539
+ -moz-border-radius: 4px
3540
+ border-radius: 4px
3541
+
3542
+ .accordion
3543
+ margin-bottom: 18px
3544
+
3545
+ .accordion-group
3546
+ margin-bottom: 2px
3547
+ border: 1px solid #e5e5e5
3548
+ -webkit-border-radius: 4px
3549
+ -moz-border-radius: 4px
3550
+ border-radius: 4px
3551
+
3552
+ .accordion-heading
3553
+ border-bottom: 0
3554
+ .accordion-toggle
3555
+ display: block
3556
+ padding: 8px 15px
3557
+
3558
+ .accordion-toggle
3559
+ cursor: pointer
3560
+
3561
+ .accordion-inner
3562
+ padding: 9px 15px
3563
+ border-top: 1px solid #e5e5e5
3564
+
3565
+ .carousel
3566
+ position: relative
3567
+ margin-bottom: 18px
3568
+ line-height: 1
3569
+
3570
+ .carousel-inner
3571
+ overflow: hidden
3572
+ width: 100%
3573
+ position: relative
3574
+
3575
+ .carousel
3576
+ .item
3577
+ display: none
3578
+ position: relative
3579
+ -webkit-transition: 0.6s ease-in-out left
3580
+ -moz-transition: 0.6s ease-in-out left
3581
+ -ms-transition: 0.6s ease-in-out left
3582
+ -o-transition: 0.6s ease-in-out left
3583
+ transition: 0.6s ease-in-out left
3584
+ > img
3585
+ display: block
3586
+ line-height: 1
3587
+ .active, .next, .prev
3588
+ display: block
3589
+ .active
3590
+ left: 0
3591
+ .next, .prev
3592
+ position: absolute
3593
+ top: 0
3594
+ width: 100%
3595
+ .next
3596
+ left: 100%
3597
+ .prev
3598
+ left: -100%
3599
+ .next.left, .prev.right
3600
+ left: 0
3601
+ .active
3602
+ &.left
3603
+ left: -100%
3604
+ &.right
3605
+ left: 100%
3606
+
3607
+ .carousel-control
3608
+ position: absolute
3609
+ top: 40%
3610
+ left: 15px
3611
+ width: 40px
3612
+ height: 40px
3613
+ margin-top: -20px
3614
+ font-size: 60px
3615
+ font-weight: 100
3616
+ line-height: 30px
3617
+ color: #ffffff
3618
+ text-align: center
3619
+ background: #222222
3620
+ border: 3px solid #ffffff
3621
+ -webkit-border-radius: 23px
3622
+ -moz-border-radius: 23px
3623
+ border-radius: 23px
3624
+ opacity: 0.5
3625
+ filter: alpha(opacity = 50)
3626
+ &.right
3627
+ left: auto
3628
+ right: 15px
3629
+ &:hover
3630
+ color: #ffffff
3631
+ text-decoration: none
3632
+ opacity: 0.9
3633
+ filter: alpha(opacity = 90)
3634
+
3635
+ .carousel-caption
3636
+ position: absolute
3637
+ left: 0
3638
+ right: 0
3639
+ bottom: 0
3640
+ padding: 10px 15px 5px
3641
+ background: #333333
3642
+ background: rgba(0, 0, 0, 0.75)
3643
+ h4, p
3644
+ color: #ffffff
3645
+
3646
+ .well
3647
+ min-height: 20px
3648
+ padding: 19px
3649
+ margin-bottom: 20px
3650
+ background-color: #f5f5f5
3651
+ border: 1px solid #eee
3652
+ border: 1px solid rgba(0, 0, 0, 0.05)
3653
+ -webkit-border-radius: 4px
3654
+ -moz-border-radius: 4px
3655
+ border-radius: 4px
3656
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
3657
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
3658
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
3659
+ blockquote
3660
+ border-color: #ddd
3661
+ border-color: rgba(0, 0, 0, 0.15)
3662
+
3663
+ .well-large
3664
+ padding: 24px
3665
+ -webkit-border-radius: 6px
3666
+ -moz-border-radius: 6px
3667
+ border-radius: 6px
3668
+
3669
+ .well-small
3670
+ padding: 9px
3671
+ -webkit-border-radius: 3px
3672
+ -moz-border-radius: 3px
3673
+ border-radius: 3px
3674
+
3675
+ .close
3676
+ float: right
3677
+ font-size: 20px
3678
+ font-weight: bold
3679
+ line-height: 18px
3680
+ color: #000000
3681
+ text-shadow: 0 1px 0 #ffffff
3682
+ opacity: 0.2
3683
+ filter: alpha(opacity = 20)
3684
+ &:hover
3685
+ color: #000000
3686
+ text-decoration: none
3687
+ cursor: pointer
3688
+ opacity: 0.4
3689
+ filter: alpha(opacity = 40)
3690
+
3691
+ button.close
3692
+ padding: 0
3693
+ cursor: pointer
3694
+ background: transparent
3695
+ border: 0
3696
+ -webkit-appearance: none
3697
+
3698
+ .pull-right
3699
+ float: right
3700
+
3701
+ .pull-left
3702
+ float: left
3703
+
3704
+ .hide
3705
+ display: none
3706
+
3707
+ .show
3708
+ display: block
3709
+
3710
+ .invisible
3711
+ visibility: hidden
3712
+
3713
+ .fade
3714
+ opacity: 0
3715
+ -webkit-transition: opacity 0.15s linear
3716
+ -moz-transition: opacity 0.15s linear
3717
+ -ms-transition: opacity 0.15s linear
3718
+ -o-transition: opacity 0.15s linear
3719
+ transition: opacity 0.15s linear
3720
+ &.in
3721
+ opacity: 1
3722
+
3723
+ .collapse
3724
+ position: relative
3725
+ height: 0
3726
+ overflow: hidden
3727
+ -webkit-transition: height 0.35s ease
3728
+ -moz-transition: height 0.35s ease
3729
+ -ms-transition: height 0.35s ease
3730
+ -o-transition: height 0.35s ease
3731
+ transition: height 0.35s ease
3732
+ &.in
3733
+ height: auto
3734
+
3735
+ .hidden
3736
+ display: none
3737
+ visibility: hidden
3738
+
3739
+ .visible-phone, .visible-tablet, .hidden-desktop
3740
+ display: none !important
3741
+
3742
+ @media (max-width: 767px)
3743
+ .visible-phone
3744
+ display: inherit !important
3745
+ .hidden-phone
3746
+ display: none !important
3747
+ .hidden-desktop
3748
+ display: inherit !important
3749
+ .visible-desktop
3750
+ display: none !important
3751
+
3752
+ @media (min-width: 768px) and (max-width: 979px)
3753
+ .visible-tablet
3754
+ display: inherit !important
3755
+ .hidden-tablet
3756
+ display: none !important
3757
+ .hidden-desktop
3758
+ display: inherit !important
3759
+ .visible-desktop
3760
+ display: none !important
3761
+
3762
+ @media (max-width: 480px)
3763
+ .nav-collapse
3764
+ -webkit-transform: translate3d(0, 0, 0)
3765
+ .page-header small
3766
+ display: block
3767
+ line-height: 18px
3768
+ input
3769
+ &[type="checkbox"], &[type="radio"]
3770
+ border: 1px solid #ccc
3771
+ .form-horizontal
3772
+ .control-group label
3773
+ float: none
3774
+ width: auto
3775
+ padding-top: 0
3776
+ text-align: left
3777
+ .controls
3778
+ margin-left: 0
3779
+ .control-list
3780
+ padding-top: 0
3781
+ .form-actions
3782
+ padding-left: 10px
3783
+ padding-right: 10px
3784
+ .modal
3785
+ position: absolute
3786
+ top: 10px
3787
+ left: 10px
3788
+ right: 10px
3789
+ width: auto
3790
+ margin: 0
3791
+ &.fade.in
3792
+ top: auto
3793
+ .modal-header .close
3794
+ padding: 10px
3795
+ margin: -10px
3796
+ .carousel-caption
3797
+ position: static
3798
+
3799
+ @media (max-width: 767px)
3800
+ body
3801
+ padding-left: 20px
3802
+ padding-right: 20px
3803
+ .navbar-fixed-top, .navbar-fixed-bottom
3804
+ margin-left: -20px
3805
+ margin-right: -20px
3806
+ .container-fluid
3807
+ padding: 0
3808
+ .dl-horizontal
3809
+ dt
3810
+ float: none
3811
+ clear: none
3812
+ width: auto
3813
+ text-align: left
3814
+ dd
3815
+ margin-left: 0
3816
+ .container
3817
+ width: auto
3818
+ .row-fluid
3819
+ width: 100%
3820
+ .row, .thumbnails
3821
+ margin-left: 0
3822
+ [class*="span"], .row-fluid [class*="span"]
3823
+ float: none
3824
+ display: block
3825
+ width: auto
3826
+ margin-left: 0
3827
+ .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input
3828
+ display: block
3829
+ width: 100%
3830
+ min-height: 28px
3831
+ -webkit-box-sizing: border-box
3832
+ -moz-box-sizing: border-box
3833
+ -ms-box-sizing: border-box
3834
+ box-sizing: border-box
3835
+ .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"]
3836
+ display: inline-block
3837
+ width: auto
3838
+
3839
+ @media (min-width: 768px) and (max-width: 979px)
3840
+ .row
3841
+ margin-left: -20px
3842
+ *zoom: 1
3843
+ &:before
3844
+ display: table
3845
+ content: ""
3846
+ &:after
3847
+ display: table
3848
+ content: ""
3849
+ clear: both
3850
+ [class*="span"]
3851
+ float: left
3852
+ margin-left: 20px
3853
+ .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12
3854
+ width: 724px
3855
+ .span11
3856
+ width: 662px
3857
+ .span10
3858
+ width: 600px
3859
+ .span9
3860
+ width: 538px
3861
+ .span8
3862
+ width: 476px
3863
+ .span7
3864
+ width: 414px
3865
+ .span6
3866
+ width: 352px
3867
+ .span5
3868
+ width: 290px
3869
+ .span4
3870
+ width: 228px
3871
+ .span3
3872
+ width: 166px
3873
+ .span2
3874
+ width: 104px
3875
+ .span1
3876
+ width: 42px
3877
+ .offset12
3878
+ margin-left: 764px
3879
+ .offset11
3880
+ margin-left: 702px
3881
+ .offset10
3882
+ margin-left: 640px
3883
+ .offset9
3884
+ margin-left: 578px
3885
+ .offset8
3886
+ margin-left: 516px
3887
+ .offset7
3888
+ margin-left: 454px
3889
+ .offset6
3890
+ margin-left: 392px
3891
+ .offset5
3892
+ margin-left: 330px
3893
+ .offset4
3894
+ margin-left: 268px
3895
+ .offset3
3896
+ margin-left: 206px
3897
+ .offset2
3898
+ margin-left: 144px
3899
+ .offset1
3900
+ margin-left: 82px
3901
+ .row-fluid
3902
+ width: 100%
3903
+ *zoom: 1
3904
+ &:before
3905
+ display: table
3906
+ content: ""
3907
+ &:after
3908
+ display: table
3909
+ content: ""
3910
+ clear: both
3911
+ [class*="span"]
3912
+ display: block
3913
+ width: 100%
3914
+ min-height: 28px
3915
+ -webkit-box-sizing: border-box
3916
+ -moz-box-sizing: border-box
3917
+ -ms-box-sizing: border-box
3918
+ box-sizing: border-box
3919
+ float: left
3920
+ margin-left: 2.762430939%
3921
+ *margin-left: 2.709239449638298%
3922
+ &:first-child
3923
+ margin-left: 0
3924
+ .span12
3925
+ width: 99.999999993%
3926
+ *width: 99.9468085036383%
3927
+ .span11
3928
+ width: 91.436464082%
3929
+ *width: 91.38327259263829%
3930
+ .span10
3931
+ width: 82.87292817100001%
3932
+ *width: 82.8197366816383%
3933
+ .span9
3934
+ width: 74.30939226%
3935
+ *width: 74.25620077063829%
3936
+ .span8
3937
+ width: 65.74585634900001%
3938
+ *width: 65.6926648596383%
3939
+ .span7
3940
+ width: 57.182320438000005%
3941
+ *width: 57.129128948638304%
3942
+ .span6
3943
+ width: 48.618784527%
3944
+ *width: 48.5655930376383%
3945
+ .span5
3946
+ width: 40.055248616%
3947
+ *width: 40.0020571266383%
3948
+ .span4
3949
+ width: 31.491712705%
3950
+ *width: 31.4385212156383%
3951
+ .span3
3952
+ width: 22.928176794%
3953
+ *width: 22.874985304638297%
3954
+ .span2
3955
+ width: 14.364640883%
3956
+ *width: 14.311449393638298%
3957
+ .span1
3958
+ width: 5.801104972%
3959
+ *width: 5.747913482638298%
3960
+ input, textarea, .uneditable-input
3961
+ margin-left: 0
3962
+ input.span12, textarea.span12, .uneditable-input.span12
3963
+ width: 714px
3964
+ input.span11, textarea.span11, .uneditable-input.span11
3965
+ width: 652px
3966
+ input.span10, textarea.span10, .uneditable-input.span10
3967
+ width: 590px
3968
+ input.span9, textarea.span9, .uneditable-input.span9
3969
+ width: 528px
3970
+ input.span8, textarea.span8, .uneditable-input.span8
3971
+ width: 466px
3972
+ input.span7, textarea.span7, .uneditable-input.span7
3973
+ width: 404px
3974
+ input.span6, textarea.span6, .uneditable-input.span6
3975
+ width: 342px
3976
+ input.span5, textarea.span5, .uneditable-input.span5
3977
+ width: 280px
3978
+ input.span4, textarea.span4, .uneditable-input.span4
3979
+ width: 218px
3980
+ input.span3, textarea.span3, .uneditable-input.span3
3981
+ width: 156px
3982
+ input.span2, textarea.span2, .uneditable-input.span2
3983
+ width: 94px
3984
+ input.span1, textarea.span1, .uneditable-input.span1
3985
+ width: 32px
3986
+
3987
+ @media (min-width: 1200px)
3988
+ .row
3989
+ margin-left: -30px
3990
+ *zoom: 1
3991
+ &:before
3992
+ display: table
3993
+ content: ""
3994
+ &:after
3995
+ display: table
3996
+ content: ""
3997
+ clear: both
3998
+ [class*="span"]
3999
+ float: left
4000
+ margin-left: 30px
4001
+ .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container, .span12
4002
+ width: 1170px
4003
+ .span11
4004
+ width: 1070px
4005
+ .span10
4006
+ width: 970px
4007
+ .span9
4008
+ width: 870px
4009
+ .span8
4010
+ width: 770px
4011
+ .span7
4012
+ width: 670px
4013
+ .span6
4014
+ width: 570px
4015
+ .span5
4016
+ width: 470px
4017
+ .span4
4018
+ width: 370px
4019
+ .span3
4020
+ width: 270px
4021
+ .span2
4022
+ width: 170px
4023
+ .span1
4024
+ width: 70px
4025
+ .offset12
4026
+ margin-left: 1230px
4027
+ .offset11
4028
+ margin-left: 1130px
4029
+ .offset10
4030
+ margin-left: 1030px
4031
+ .offset9
4032
+ margin-left: 930px
4033
+ .offset8
4034
+ margin-left: 830px
4035
+ .offset7
4036
+ margin-left: 730px
4037
+ .offset6
4038
+ margin-left: 630px
4039
+ .offset5
4040
+ margin-left: 530px
4041
+ .offset4
4042
+ margin-left: 430px
4043
+ .offset3
4044
+ margin-left: 330px
4045
+ .offset2
4046
+ margin-left: 230px
4047
+ .offset1
4048
+ margin-left: 130px
4049
+ .row-fluid
4050
+ width: 100%
4051
+ *zoom: 1
4052
+ &:before
4053
+ display: table
4054
+ content: ""
4055
+ &:after
4056
+ display: table
4057
+ content: ""
4058
+ clear: both
4059
+ [class*="span"]
4060
+ display: block
4061
+ width: 100%
4062
+ min-height: 28px
4063
+ -webkit-box-sizing: border-box
4064
+ -moz-box-sizing: border-box
4065
+ -ms-box-sizing: border-box
4066
+ box-sizing: border-box
4067
+ float: left
4068
+ margin-left: 2.564102564%
4069
+ *margin-left: 2.510911074638298%
4070
+ &:first-child
4071
+ margin-left: 0
4072
+ .span12
4073
+ width: 100%
4074
+ *width: 99.94680851063829%
4075
+ .span11
4076
+ width: 91.45299145300001%
4077
+ *width: 91.3997999636383%
4078
+ .span10
4079
+ width: 82.905982906%
4080
+ *width: 82.8527914166383%
4081
+ .span9
4082
+ width: 74.358974359%
4083
+ *width: 74.30578286963829%
4084
+ .span8
4085
+ width: 65.81196581200001%
4086
+ *width: 65.7587743226383%
4087
+ .span7
4088
+ width: 57.264957265%
4089
+ *width: 57.2117657756383%
4090
+ .span6
4091
+ width: 48.717948718%
4092
+ *width: 48.6647572286383%
4093
+ .span5
4094
+ width: 40.170940171000005%
4095
+ *width: 40.117748681638304%
4096
+ .span4
4097
+ width: 31.623931624%
4098
+ *width: 31.5707401346383%
4099
+ .span3
4100
+ width: 23.076923077%
4101
+ *width: 23.0237315876383%
4102
+ .span2
4103
+ width: 14.529914530000001%
4104
+ *width: 14.4767230406383%
4105
+ .span1
4106
+ width: 5.982905983%
4107
+ *width: 5.929714493638298%
4108
+ input, textarea, .uneditable-input
4109
+ margin-left: 0
4110
+ input.span12, textarea.span12, .uneditable-input.span12
4111
+ width: 1160px
4112
+ input.span11, textarea.span11, .uneditable-input.span11
4113
+ width: 1060px
4114
+ input.span10, textarea.span10, .uneditable-input.span10
4115
+ width: 960px
4116
+ input.span9, textarea.span9, .uneditable-input.span9
4117
+ width: 860px
4118
+ input.span8, textarea.span8, .uneditable-input.span8
4119
+ width: 760px
4120
+ input.span7, textarea.span7, .uneditable-input.span7
4121
+ width: 660px
4122
+ input.span6, textarea.span6, .uneditable-input.span6
4123
+ width: 560px
4124
+ input.span5, textarea.span5, .uneditable-input.span5
4125
+ width: 460px
4126
+ input.span4, textarea.span4, .uneditable-input.span4
4127
+ width: 360px
4128
+ input.span3, textarea.span3, .uneditable-input.span3
4129
+ width: 260px
4130
+ input.span2, textarea.span2, .uneditable-input.span2
4131
+ width: 160px
4132
+ input.span1, textarea.span1, .uneditable-input.span1
4133
+ width: 60px
4134
+ .thumbnails
4135
+ margin-left: -30px
4136
+ > li
4137
+ margin-left: 30px
4138
+ .row-fluid .thumbnails
4139
+ margin-left: 0
4140
+
4141
+ @media (max-width: 979px)
4142
+ body
4143
+ padding-top: 0
4144
+ .navbar-fixed-top, .navbar-fixed-bottom
4145
+ position: static
4146
+ .navbar-fixed-top
4147
+ margin-bottom: 18px
4148
+ .navbar-fixed-bottom
4149
+ margin-top: 18px
4150
+ .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner
4151
+ padding: 5px
4152
+ .navbar
4153
+ .container
4154
+ width: auto
4155
+ padding: 0
4156
+ .brand
4157
+ padding-left: 10px
4158
+ padding-right: 10px
4159
+ margin: 0 0 0 -5px
4160
+ .nav-collapse
4161
+ clear: both
4162
+ .nav
4163
+ float: none
4164
+ margin: 0 0 9px
4165
+ >
4166
+ li
4167
+ float: none
4168
+ > a
4169
+ margin-bottom: 2px
4170
+ .divider-vertical
4171
+ display: none
4172
+ .nav-header
4173
+ color: #999999
4174
+ text-shadow: none
4175
+ > a
4176
+ padding: 6px 15px
4177
+ font-weight: bold
4178
+ color: #999999
4179
+ -webkit-border-radius: 3px
4180
+ -moz-border-radius: 3px
4181
+ border-radius: 3px
4182
+ .dropdown-menu a
4183
+ padding: 6px 15px
4184
+ font-weight: bold
4185
+ color: #999999
4186
+ -webkit-border-radius: 3px
4187
+ -moz-border-radius: 3px
4188
+ border-radius: 3px
4189
+ .btn
4190
+ padding: 4px 10px 4px
4191
+ font-weight: normal
4192
+ -webkit-border-radius: 4px
4193
+ -moz-border-radius: 4px
4194
+ border-radius: 4px
4195
+ .dropdown-menu a
4196
+ margin-bottom: 2px
4197
+ .nav a:hover, .dropdown-menu a:hover
4198
+ background-color: #222222
4199
+ &.in .btn-group
4200
+ margin-top: 5px
4201
+ padding: 0
4202
+ .dropdown-menu
4203
+ position: static
4204
+ top: auto
4205
+ left: auto
4206
+ float: none
4207
+ display: block
4208
+ max-width: none
4209
+ margin: 0 15px
4210
+ padding: 0
4211
+ background-color: transparent
4212
+ border: none
4213
+ -webkit-border-radius: 0
4214
+ -moz-border-radius: 0
4215
+ border-radius: 0
4216
+ -webkit-box-shadow: none
4217
+ -moz-box-shadow: none
4218
+ box-shadow: none
4219
+ &:before, &:after, .divider
4220
+ display: none
4221
+ .navbar-form, .navbar-search
4222
+ float: none
4223
+ padding: 9px 15px
4224
+ margin: 9px 0
4225
+ border-top: 1px solid #222222
4226
+ border-bottom: 1px solid #222222
4227
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1)
4228
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1)
4229
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1)
4230
+ .navbar .nav.pull-right
4231
+ float: none
4232
+ margin-left: 0
4233
+ .nav-collapse
4234
+ overflow: hidden
4235
+ height: 0
4236
+ &.collapse
4237
+ overflow: hidden
4238
+ height: 0
4239
+ .navbar .btn-navbar
4240
+ display: block
4241
+ .navbar-static .navbar-inner
4242
+ padding-left: 10px
4243
+ padding-right: 10px
4244
+
4245
+ @media (min-width: 980px)
4246
+ .nav-collapse.collapse
4247
+ height: auto !important
4248
+ overflow: visible !important