bootstrap.css 121 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
/*!
Mark Otto's avatar
Mark Otto committed
2
 * Bootstrap v3.0.2 by @fat and @mdo
Chris Rebert's avatar
Chris Rebert committed
3
4
 * Copyright 2013 Twitter, Inc.
 * Licensed under http://www.apache.org/licenses/LICENSE-2.0
Mark Otto's avatar
Mark Otto committed
5
6
7
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 */
8

XhmikosR's avatar
XhmikosR committed
9
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
Mark Otto's avatar
Mark Otto committed
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

XhmikosR's avatar
XhmikosR committed
37
38
[hidden],
template {
Mark Otto's avatar
Mark Otto committed
39
40
41
42
43
44
45
46
47
48
49
50
51
  display: none;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

XhmikosR's avatar
XhmikosR committed
52
53
54
55
a {
  background: transparent;
}

Mark Otto's avatar
Mark Otto committed
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

hr {
  height: 0;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

mark {
  color: #000;
  background: #ff0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  box-sizing: border-box;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
@media print {
  * {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
Mark Otto's avatar
Mark Otto committed
256
    margin: 2cm .5cm;
257
258
259
260
261
262
263
264
265
266
267
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
Zlatan Vasović's avatar
Zlatan Vasović committed
268
269
270
  select {
    background: #fff !important;
  }
Mark Otto's avatar
Mark Otto committed
271
  .navbar {
272
273
    display: none;
  }
274
275
276
277
278
279
280
281
282
283
284
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
Mark Otto's avatar
Mark Otto committed
285
286
287
288
289
290
291
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
292
293
}

294
295
296
*,
*:before,
*:after {
Mark Otto's avatar
Mark Otto committed
297
298
299
300
301
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

Mark Otto's avatar
Mark Otto committed
302
303
304
305
306
307
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
Mark Otto's avatar
Mark Otto committed
308
309
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
310
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
311
312
313
314
315
316
317
318
  color: #333333;
  background-color: #ffffff;
}

input,
button,
select,
textarea {
Mark Otto's avatar
Mark Otto committed
319
320
321
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
Mark Otto's avatar
Mark Otto committed
322
323
324
325
326
327
328
329
330
331
332
333
334
335
}

a {
  color: #428bca;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}

a:focus {
Mark Otto's avatar
Mark Otto committed
336
  outline: thin dotted;
Mark Otto's avatar
Mark Otto committed
337
338
339
340
341
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

img {
Mark Otto's avatar
Mark Otto committed
342
343
344
  vertical-align: middle;
}

345
346
347
348
349
350
.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

Mark Otto's avatar
Mark Otto committed
351
352
353
354
.img-rounded {
  border-radius: 6px;
}

355
356
357
358
359
360
361
362
363
364
365
366
367
.img-thumbnail {
  display: inline-block;
  height: auto;
  max-width: 100%;
  padding: 4px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

Mark Otto's avatar
Mark Otto committed
368
.img-circle {
Jacob Thornton's avatar
Jacob Thornton committed
369
  border-radius: 50%;
Mark Otto's avatar
Mark Otto committed
370
371
}

372
373
374
375
376
377
378
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

379
380
381
382
383
384
385
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
386
  clip: rect(0, 0, 0, 0);
387
388
389
  border: 0;
}

Mark Otto's avatar
Mark Otto committed
390
p {
Mark Otto's avatar
Mark Otto committed
391
  margin: 0 0 10px;
Mark Otto's avatar
Mark Otto committed
392
393
394
}

.lead {
Mark Otto's avatar
Mark Otto committed
395
  margin-bottom: 20px;
396
  font-size: 16px;
Mark Otto's avatar
Mark Otto committed
397
  font-weight: 200;
398
  line-height: 1.4;
Mark Otto's avatar
Mark Otto committed
399
400
}

401
402
403
404
405
406
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

407
408
small,
.small {
Mark Otto's avatar
Mark Otto committed
409
410
411
412
413
414
415
  font-size: 85%;
}

cite {
  font-style: normal;
}

416
.text-muted {
Mark Otto's avatar
Mark Otto committed
417
418
419
  color: #999999;
}

420
421
.text-primary {
  color: #428bca;
Mark Otto's avatar
Mark Otto committed
422
423
}

424
425
426
427
.text-primary:hover {
  color: #3071a9;
}

Mark Otto's avatar
Mark Otto committed
428
429
430
431
.text-warning {
  color: #c09853;
}

432
433
434
435
.text-warning:hover {
  color: #a47e3c;
}

436
.text-danger {
Mark Otto's avatar
Mark Otto committed
437
438
439
  color: #b94a48;
}

440
441
442
443
.text-danger:hover {
  color: #953b39;
}

Mark Otto's avatar
Mark Otto committed
444
445
446
447
.text-success {
  color: #468847;
}

448
449
450
451
.text-success:hover {
  color: #356635;
}

452
453
.text-info {
  color: #3a87ad;
Mark Otto's avatar
Mark Otto committed
454
455
}

456
457
458
459
.text-info:hover {
  color: #2d6987;
}

Mark Otto's avatar
Mark Otto committed
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
477
478
479
480
481
482
483
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
Mark Otto's avatar
Mark Otto committed
484
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
Mark Otto's avatar
Mark Otto committed
485
  font-weight: 500;
Mark Otto's avatar
Mark Otto committed
486
  line-height: 1.1;
487
  color: inherit;
Mark Otto's avatar
Mark Otto committed
488
489
490
491
492
493
494
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
495
496
497
498
499
500
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
Mark Otto's avatar
Mark Otto committed
501
502
503
504
505
506
507
508
509
510
511
512
513
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
Mark Otto's avatar
Mark Otto committed
514
515
516
517
518
519
520
521
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
h2,
h3 {
Mark Otto's avatar
Mark Otto committed
522
523
  margin-top: 20px;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
524
525
}

526
527
h1 small,
h2 small,
Mark Otto's avatar
Mark Otto committed
528
529
530
531
h3 small,
h1 .small,
h2 .small,
h3 .small {
532
533
534
  font-size: 65%;
}

Mark Otto's avatar
Mark Otto committed
535
536
537
h4,
h5,
h6 {
Mark Otto's avatar
Mark Otto committed
538
539
  margin-top: 10px;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
540
541
}

542
543
h4 small,
h5 small,
Mark Otto's avatar
Mark Otto committed
544
545
546
547
h6 small,
h4 .small,
h5 .small,
h6 .small {
548
549
550
  font-size: 75%;
}

551
552
h1,
.h1 {
Mark Otto's avatar
Mark Otto committed
553
  font-size: 36px;
Mark Otto's avatar
Mark Otto committed
554
555
}

556
557
h2,
.h2 {
Mark Otto's avatar
Mark Otto committed
558
  font-size: 30px;
Mark Otto's avatar
Mark Otto committed
559
560
}

561
562
h3,
.h3 {
Mark Otto's avatar
Mark Otto committed
563
  font-size: 24px;
Mark Otto's avatar
Mark Otto committed
564
565
}

566
567
h4,
.h4 {
Mark Otto's avatar
Mark Otto committed
568
  font-size: 18px;
Mark Otto's avatar
Mark Otto committed
569
570
}

571
572
h5,
.h5 {
Mark Otto's avatar
Mark Otto committed
573
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
574
575
}

576
577
h6,
.h6 {
Mark Otto's avatar
Mark Otto committed
578
  font-size: 12px;
Mark Otto's avatar
Mark Otto committed
579
580
581
}

.page-header {
Mark Otto's avatar
Mark Otto committed
582
583
  padding-bottom: 9px;
  margin: 40px 0 20px;
Mark Otto's avatar
Mark Otto committed
584
585
586
587
588
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
Mark Otto's avatar
Mark Otto committed
589
590
  margin-top: 0;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
591
592
593
}

ul ul,
liuyl's avatar
liuyl committed
594
ol ul,
Mark Otto's avatar
Mark Otto committed
595
ul ol,
liuyl's avatar
liuyl committed
596
ol ol {
Mark Otto's avatar
Mark Otto committed
597
598
599
  margin-bottom: 0;
}

600
.list-unstyled {
601
  padding-left: 0;
602
603
604
  list-style: none;
}

Mark Otto's avatar
Mark Otto committed
605
.list-inline {
606
  padding-left: 0;
Mark Otto's avatar
Mark Otto committed
607
608
609
610
611
612
613
614
615
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

616
617
618
619
.list-inline > li:first-child {
  padding-left: 0;
}

Mark Otto's avatar
Mark Otto committed
620
dl {
Mark Otto's avatar
Mark Otto committed
621
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
622
623
624
625
}

dt,
dd {
626
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
627
628
629
630
631
632
633
}

dt {
  font-weight: bold;
}

dd {
634
  margin-left: 0;
Mark Otto's avatar
Mark Otto committed
635
636
}

637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    display: table;
    content: " ";
  }
  .dl-horizontal dd:after {
    clear: both;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    display: table;
    content: " ";
  }
  .dl-horizontal dd:after {
    clear: both;
  }
Mark Otto's avatar
Mark Otto committed
666
667
668
669
670
671
672
673
674
675
676
677
678
679
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}

abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
Mark Otto's avatar
Mark Otto committed
680
681
  padding: 10px 20px;
  margin: 0 0 20px;
Mark Otto's avatar
Mark Otto committed
682
683
684
685
  border-left: 5px solid #eeeeee;
}

blockquote p {
Mark Otto's avatar
Mark Otto committed
686
  font-size: 17.5px;
Mark Otto's avatar
Mark Otto committed
687
688
689
690
  font-weight: 300;
  line-height: 1.25;
}

691
692
693
694
blockquote p:last-child {
  margin-bottom: 0;
}

Mark Otto's avatar
Mark Otto committed
695
696
blockquote small {
  display: block;
697
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
  color: #999999;
}

blockquote small:before {
  content: '\2014 \00A0';
}

blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}

blockquote.pull-right p,
Mark Otto's avatar
Mark Otto committed
713
714
blockquote.pull-right small,
blockquote.pull-right .small {
Mark Otto's avatar
Mark Otto committed
715
716
717
  text-align: right;
}

Mark Otto's avatar
Mark Otto committed
718
719
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
Mark Otto's avatar
Mark Otto committed
720
721
722
  content: '';
}

Mark Otto's avatar
Mark Otto committed
723
724
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
Mark Otto's avatar
Mark Otto committed
725
726
727
728
729
730
731
732
733
  content: '\00A0 \2014';
}

blockquote:before,
blockquote:after {
  content: "";
}

address {
Mark Otto's avatar
Mark Otto committed
734
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
735
  font-style: normal;
736
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
737
738
739
}

code,
740
kbd,
741
742
pre,
samp {
743
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
Mark Otto's avatar
Mark Otto committed
744
745
746
747
748
749
750
751
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  white-space: nowrap;
  background-color: #f9f2f4;
752
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
753
754
755
756
}

pre {
  display: block;
Mark Otto's avatar
Mark Otto committed
757
758
  padding: 9.5px;
  margin: 0 0 10px;
Mark Otto's avatar
Mark Otto committed
759
  font-size: 13px;
760
  line-height: 1.428571429;
761
  color: #333333;
Mark Otto's avatar
Mark Otto committed
762
763
764
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
765
  border: 1px solid #cccccc;
Mark Otto's avatar
Mark Otto committed
766
767
768
769
770
  border-radius: 4px;
}

pre code {
  padding: 0;
771
  font-size: inherit;
Mark Otto's avatar
Mark Otto committed
772
773
774
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
Mark Otto's avatar
Mark Otto committed
775
  border-radius: 0;
Mark Otto's avatar
Mark Otto committed
776
777
778
779
780
781
782
783
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
784
785
  padding-right: 15px;
  padding-left: 15px;
Mark Otto's avatar
Mark Otto committed
786
787
788
789
790
791
792
793
794
795
796
797
798
799
  margin-right: auto;
  margin-left: auto;
}

.container:before,
.container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

800
801
802
803
804
805
806
807
808
809
.container:before,
.container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

828
829
830
831
832
.row {
  margin-right: -15px;
  margin-left: -15px;
}

Mark Otto's avatar
Mark Otto committed
833
834
835
836
837
838
839
840
841
842
.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

843
844
845
846
847
848
849
850
851
852
.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

853
.col-xs-1,
Mark Otto's avatar
Mark Otto committed
854
.col-sm-1,
855
.col-md-1,
Mark Otto's avatar
Mark Otto committed
856
.col-lg-1,
857
858
859
.col-xs-2,
.col-sm-2,
.col-md-2,
Mark Otto's avatar
Mark Otto committed
860
.col-lg-2,
861
862
863
.col-xs-3,
.col-sm-3,
.col-md-3,
Mark Otto's avatar
Mark Otto committed
864
.col-lg-3,
865
866
867
.col-xs-4,
.col-sm-4,
.col-md-4,
Mark Otto's avatar
Mark Otto committed
868
.col-lg-4,
869
870
871
.col-xs-5,
.col-sm-5,
.col-md-5,
Mark Otto's avatar
Mark Otto committed
872
.col-lg-5,
873
874
875
.col-xs-6,
.col-sm-6,
.col-md-6,
Mark Otto's avatar
Mark Otto committed
876
.col-lg-6,
877
878
879
.col-xs-7,
.col-sm-7,
.col-md-7,
Mark Otto's avatar
Mark Otto committed
880
.col-lg-7,
881
882
883
.col-xs-8,
.col-sm-8,
.col-md-8,
Mark Otto's avatar
Mark Otto committed
884
.col-lg-8,
885
886
887
.col-xs-9,
.col-sm-9,
.col-md-9,
Mark Otto's avatar
Mark Otto committed
888
.col-lg-9,
889
890
891
.col-xs-10,
.col-sm-10,
.col-md-10,
Mark Otto's avatar
Mark Otto committed
892
.col-lg-10,
893
894
895
.col-xs-11,
.col-sm-11,
.col-md-11,
Mark Otto's avatar
Mark Otto committed
896
.col-lg-11,
897
898
899
.col-xs-12,
.col-sm-12,
.col-md-12,
Mark Otto's avatar
Mark Otto committed
900
.col-lg-12 {
901
  position: relative;
Mark Otto's avatar
Mark Otto committed
902
  min-height: 1px;
903
904
  padding-right: 15px;
  padding-left: 15px;
Mark Otto's avatar
Mark Otto committed
905
906
}

907
908
909
910
911
912
913
914
915
916
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
917
.col-xs-11 {
Mark Otto's avatar
Mark Otto committed
918
919
920
  float: left;
}

921
922
.col-xs-12 {
  width: 100%;
923
924
}

925
926
.col-xs-11 {
  width: 91.66666666666666%;
927
928
}

929
930
.col-xs-10 {
  width: 83.33333333333334%;
931
932
}

933
934
.col-xs-9 {
  width: 75%;
935
936
}

937
938
939
940
941
942
.col-xs-8 {
  width: 66.66666666666666%;
}

.col-xs-7 {
  width: 58.333333333333336%;
943
944
}

945
.col-xs-6 {
946
  width: 50%;
947
948
}

949
950
.col-xs-5 {
  width: 41.66666666666667%;
951
952
}

953
954
.col-xs-4 {
  width: 33.33333333333333%;
955
956
}

957
958
.col-xs-3 {
  width: 25%;
959
960
}

961
962
.col-xs-2 {
  width: 16.666666666666664%;
963
964
}

965
966
.col-xs-1 {
  width: 8.333333333333332%;
967
968
}

969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666666666666%;
}

.col-xs-pull-10 {
  right: 83.33333333333334%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666666666666%;
}

.col-xs-pull-7 {
  right: 58.333333333333336%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666666666667%;
}

.col-xs-pull-4 {
  right: 33.33333333333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.666666666666664%;
}

.col-xs-pull-1 {
  right: 8.333333333333332%;
}

1017
1018
1019
1020
.col-xs-pull-0 {
  right: 0;
}

1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666666666666%;
}

.col-xs-push-10 {
  left: 83.33333333333334%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666666666666%;
}

.col-xs-push-7 {
  left: 58.333333333333336%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666666666667%;
}

.col-xs-push-4 {
  left: 33.33333333333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.666666666666664%;
}

.col-xs-push-1 {
  left: 8.333333333333332%;
}

1069
1070
1071
1072
.col-xs-push-0 {
  left: 0;
}

1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666666666666%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333333334%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666666666666%;
}

.col-xs-offset-7 {
  margin-left: 58.333333333333336%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666666666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.666666666666664%;
}

.col-xs-offset-1 {
  margin-left: 8.333333333333332%;
Mark Otto's avatar
Mark Otto committed
1119
1120
}

1121
1122
1123
1124
.col-xs-offset-0 {
  margin-left: 0;
}

1125
@media (min-width: 768px) {
Mark Otto's avatar
Mark Otto committed
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
1136
  .col-sm-11 {
Mark Otto's avatar
Mark Otto committed
1137
1138
    float: left;
  }
1139
1140
  .col-sm-12 {
    width: 100%;
Mark Otto's avatar
Mark Otto committed
1141
  }
1142
1143
  .col-sm-11 {
    width: 91.66666666666666%;
Mark Otto's avatar
Mark Otto committed
1144
  }
1145
1146
  .col-sm-10 {
    width: 83.33333333333334%;
Mark Otto's avatar
Mark Otto committed
1147
  }
1148
1149
  .col-sm-9 {
    width: 75%;
Mark Otto's avatar
Mark Otto committed
1150
  }
1151
1152
  .col-sm-8 {
    width: 66.66666666666666%;
Mark Otto's avatar
Mark Otto committed
1153
  }
Mark Otto's avatar
Mark Otto committed
1154
  .col-sm-7 {
1155
    width: 58.333333333333336%;
Mark Otto's avatar
Mark Otto committed
1156
  }
Mark Otto's avatar
Mark Otto committed
1157
  .col-sm-6 {
1158
    width: 50%;
Mark Otto's avatar
Mark Otto committed
1159
  }
1160
1161
  .col-sm-5 {
    width: 41.66666666666667%;
Mark Otto's avatar
Mark Otto committed
1162
  }
1163
1164
  .col-sm-4 {
    width: 33.33333333333333%;
Mark Otto's avatar
Mark Otto committed
1165
  }
1166
1167
  .col-sm-3 {
    width: 25%;
Mark Otto's avatar
Mark Otto committed
1168
  }
1169
1170
  .col-sm-2 {
    width: 16.666666666666664%;
Mark Otto's avatar
Mark Otto committed
1171
  }
1172
1173
  .col-sm-1 {
    width: 8.333333333333332%;
1174
  }
1175
1176
  .col-sm-pull-12 {
    right: 100%;
1177
  }
1178
1179
  .col-sm-pull-11 {
    right: 91.66666666666666%;
1180
  }
1181
1182
  .col-sm-pull-10 {
    right: 83.33333333333334%;
1183
  }
1184
1185
  .col-sm-pull-9 {
    right: 75%;
1186
  }
1187
1188
  .col-sm-pull-8 {
    right: 66.66666666666666%;
1189
  }
1190
1191
  .col-sm-pull-7 {
    right: 58.333333333333336%;
1192
  }
1193
1194
  .col-sm-pull-6 {
    right: 50%;
1195
  }
1196
1197
  .col-sm-pull-5 {
    right: 41.66666666666667%;
1198
  }
1199
1200
  .col-sm-pull-4 {
    right: 33.33333333333333%;
1201
  }
1202
1203
  .col-sm-pull-3 {
    right: 25%;
1204
  }
1205
  .col-sm-pull-2 {
Mark Otto's avatar
Mark Otto committed
1206
1207
    right: 16.666666666666664%;
  }
1208
1209
  .col-sm-pull-1 {
    right: 8.333333333333332%;
1210
  }
1211
1212
1213
  .col-sm-pull-0 {
    right: 0;
  }
1214
1215
  .col-sm-push-12 {
    left: 100%;
1216
  }
1217
  .col-sm-push-11 {
Mark Otto's avatar
Mark Otto committed
1218
    left: 91.66666666666666%;
1219
  }
1220
1221
  .col-sm-push-10 {
    left: 83.33333333333334%;
1222
  }
1223
1224
  .col-sm-push-9 {
    left: 75%;
Mark Otto's avatar
Mark Otto committed
1225
  }
1226
1227
  .col-sm-push-8 {
    left: 66.66666666666666%;
Mark Otto's avatar
Mark Otto committed
1228
  }
1229
1230
  .col-sm-push-7 {
    left: 58.333333333333336%;
Mark Otto's avatar
Mark Otto committed
1231
  }
1232
1233
  .col-sm-push-6 {
    left: 50%;
Mark Otto's avatar
Mark Otto committed
1234
  }
1235
1236
  .col-sm-push-5 {
    left: 41.66666666666667%;
1237
  }
1238
1239
  .col-sm-push-4 {
    left: 33.33333333333333%;
1240
  }
1241
1242
  .col-sm-push-3 {
    left: 25%;
1243
  }
1244
1245
  .col-sm-push-2 {
    left: 16.666666666666664%;
1246
  }
1247
1248
  .col-sm-push-1 {
    left: 8.333333333333332%;
1249
  }
1250
1251
1252
  .col-sm-push-0 {
    left: 0;
  }
1253
1254
  .col-sm-offset-12 {
    margin-left: 100%;
1255
  }
1256
1257
  .col-sm-offset-11 {
    margin-left: 91.66666666666666%;
1258
  }
1259
1260
  .col-sm-offset-10 {
    margin-left: 83.33333333333334%;
1261
  }
1262
1263
  .col-sm-offset-9 {
    margin-left: 75%;
1264
1265
1266
1267
  }
  .col-sm-offset-8 {
    margin-left: 66.66666666666666%;
  }
1268
1269
  .col-sm-offset-7 {
    margin-left: 58.333333333333336%;
1270
1271
1272
1273
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
1274
1275
  .col-sm-offset-5 {
    margin-left: 41.66666666666667%;
1276
  }
1277
1278
  .col-sm-offset-4 {
    margin-left: 33.33333333333333%;
1279
  }
1280
1281
  .col-sm-offset-3 {
    margin-left: 25%;
1282
  }
1283
1284
  .col-sm-offset-2 {
    margin-left: 16.666666666666664%;
1285
  }
1286
1287
  .col-sm-offset-1 {
    margin-left: 8.333333333333332%;
1288
  }
1289
1290
1291
  .col-sm-offset-0 {
    margin-left: 0;
  }
Mark Otto's avatar
Mark Otto committed
1292
1293
}

1294
@media (min-width: 992px) {
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
1305
  .col-md-11 {
1306
1307
    float: left;
  }
1308
1309
  .col-md-12 {
    width: 100%;
1310
  }
1311
1312
  .col-md-11 {
    width: 91.66666666666666%;
1313
  }
1314
1315
  .col-md-10 {
    width: 83.33333333333334%;
1316
  }
1317
1318
  .col-md-9 {
    width: 75%;
1319
  }
1320
1321
  .col-md-8 {
    width: 66.66666666666666%;
1322
1323
1324
1325
  }
  .col-md-7 {
    width: 58.333333333333336%;
  }
1326
1327
  .col-md-6 {
    width: 50%;
1328
  }
1329
1330
  .col-md-5 {
    width: 41.66666666666667%;
1331
  }
1332
1333
  .col-md-4 {
    width: 33.33333333333333%;
1334
  }
1335
1336
  .col-md-3 {
    width: 25%;
1337
  }
1338
1339
  .col-md-2 {
    width: 16.666666666666664%;
1340
  }
1341
1342
  .col-md-1 {
    width: 8.333333333333332%;
1343
  }
1344
1345
  .col-md-pull-12 {
    right: 100%;
1346
  }
1347
1348
  .col-md-pull-11 {
    right: 91.66666666666666%;
1349
  }
1350
1351
  .col-md-pull-10 {
    right: 83.33333333333334%;
1352
  }
1353
1354
  .col-md-pull-9 {
    right: 75%;
1355
  }
1356
1357
  .col-md-pull-8 {
    right: 66.66666666666666%;
1358
  }
1359
1360
  .col-md-pull-7 {
    right: 58.333333333333336%;
1361
  }
1362
1363
  .col-md-pull-6 {
    right: 50%;
1364
  }
1365
1366
  .col-md-pull-5 {
    right: 41.66666666666667%;
1367
  }
1368
1369
  .col-md-pull-4 {
    right: 33.33333333333333%;
1370
  }
1371
1372
  .col-md-pull-3 {
    right: 25%;
1373
  }
1374
1375
  .col-md-pull-2 {
    right: 16.666666666666664%;
1376
  }
1377
1378
1379
  .col-md-pull-1 {
    right: 8.333333333333332%;
  }
1380
1381
1382
  .col-md-pull-0 {
    right: 0;
  }
1383
1384
  .col-md-push-12 {
    left: 100%;
1385
  }
1386
1387
  .col-md-push-11 {
    left: 91.66666666666666%;
1388
  }
1389
1390
  .col-md-push-10 {
    left: 83.33333333333334%;
1391
  }
1392
1393
  .col-md-push-9 {
    left: 75%;
1394
  }
1395
1396
  .col-md-push-8 {
    left: 66.66666666666666%;
1397
  }
1398
1399
  .col-md-push-7 {
    left: 58.333333333333336%;
1400
  }
1401
1402
  .col-md-push-6 {
    left: 50%;
1403
  }
1404
1405
  .col-md-push-5 {
    left: 41.66666666666667%;
1406
  }
1407
1408
  .col-md-push-4 {
    left: 33.33333333333333%;
1409
  }
1410
1411
  .col-md-push-3 {
    left: 25%;
1412
  }
1413
1414
  .col-md-push-2 {
    left: 16.666666666666664%;
1415
  }
1416
1417
  .col-md-push-1 {
    left: 8.333333333333332%;
1418
  }
1419
1420
1421
  .col-md-push-0 {
    left: 0;
  }
1422
1423
  .col-md-offset-12 {
    margin-left: 100%;
1424
  }
1425
1426
  .col-md-offset-11 {
    margin-left: 91.66666666666666%;
1427
  }
1428
1429
  .col-md-offset-10 {
    margin-left: 83.33333333333334%;
1430
  }
1431
1432
  .col-md-offset-9 {
    margin-left: 75%;
1433
  }
1434
1435
  .col-md-offset-8 {
    margin-left: 66.66666666666666%;
1436
1437
1438
1439
  }
  .col-md-offset-7 {
    margin-left: 58.333333333333336%;
  }
1440
1441
  .col-md-offset-6 {
    margin-left: 50%;
1442
  }
1443
1444
  .col-md-offset-5 {
    margin-left: 41.66666666666667%;
1445
  }
1446
1447
  .col-md-offset-4 {
    margin-left: 33.33333333333333%;
1448
  }
1449
1450
1451
1452
1453
1454
1455
1456
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-md-offset-1 {
    margin-left: 8.333333333333332%;
1457
  }
1458
1459
1460
  .col-md-offset-0 {
    margin-left: 0;
  }
1461
1462
1463
}

@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
1474
  .col-lg-11 {
Mark Otto's avatar
Mark Otto committed
1475
1476
    float: left;
  }
1477
1478
  .col-lg-12 {
    width: 100%;
1479
  }
1480
1481
  .col-lg-11 {
    width: 91.66666666666666%;
1482
  }
1483
1484
  .col-lg-10 {
    width: 83.33333333333334%;
1485
  }
1486
1487
  .col-lg-9 {
    width: 75%;
1488
  }
1489
1490
  .col-lg-8 {
    width: 66.66666666666666%;
1491
1492
1493
1494
  }
  .col-lg-7 {
    width: 58.333333333333336%;
  }
1495
1496
  .col-lg-6 {
    width: 50%;
1497
  }
1498
1499
  .col-lg-5 {
    width: 41.66666666666667%;
1500
  }
1501
1502
  .col-lg-4 {
    width: 33.33333333333333%;
1503
  }
1504
1505
  .col-lg-3 {
    width: 25%;
Mark Otto's avatar
Mark Otto committed
1506
  }
1507
1508
  .col-lg-2 {
    width: 16.666666666666664%;
1509
  }
1510
1511
  .col-lg-1 {
    width: 8.333333333333332%;
1512
  }
1513
1514
  .col-lg-pull-12 {
    right: 100%;
1515
  }
1516
1517
  .col-lg-pull-11 {
    right: 91.66666666666666%;
1518
  }
1519
1520
  .col-lg-pull-10 {
    right: 83.33333333333334%;
1521
  }
1522
1523
  .col-lg-pull-9 {
    right: 75%;
1524
  }
1525
1526
  .col-lg-pull-8 {
    right: 66.66666666666666%;
1527
  }
1528
1529
  .col-lg-pull-7 {
    right: 58.333333333333336%;
1530
  }
1531
1532
  .col-lg-pull-6 {
    right: 50%;
1533
  }
1534
1535
  .col-lg-pull-5 {
    right: 41.66666666666667%;
1536
  }
1537
1538
  .col-lg-pull-4 {
    right: 33.33333333333333%;
1539
  }
1540
1541
  .col-lg-pull-3 {
    right: 25%;
1542
  }
1543
1544
  .col-lg-pull-2 {
    right: 16.666666666666664%;
1545
  }
1546
1547
1548
  .col-lg-pull-1 {
    right: 8.333333333333332%;
  }
1549
1550
1551
  .col-lg-pull-0 {
    right: 0;
  }
1552
1553
  .col-lg-push-12 {
    left: 100%;
1554
  }
1555
1556
  .col-lg-push-11 {
    left: 91.66666666666666%;
1557
  }
1558
1559
  .col-lg-push-10 {
    left: 83.33333333333334%;
1560
  }
1561
1562
  .col-lg-push-9 {
    left: 75%;
1563
  }
1564
1565
  .col-lg-push-8 {
    left: 66.66666666666666%;
1566
  }
1567
1568
  .col-lg-push-7 {
    left: 58.333333333333336%;
1569
  }
1570
1571
  .col-lg-push-6 {
    left: 50%;
1572
  }
1573
1574
  .col-lg-push-5 {
    left: 41.66666666666667%;
1575
  }
1576
1577
  .col-lg-push-4 {
    left: 33.33333333333333%;
1578
  }
1579
1580
  .col-lg-push-3 {
    left: 25%;
1581
  }
1582
1583
  .col-lg-push-2 {
    left: 16.666666666666664%;
1584
  }
1585
1586
  .col-lg-push-1 {
    left: 8.333333333333332%;
1587
  }
1588
1589
1590
  .col-lg-push-0 {
    left: 0;
  }
1591
1592
  .col-lg-offset-12 {
    margin-left: 100%;
1593
  }
1594
1595
  .col-lg-offset-11 {
    margin-left: 91.66666666666666%;
1596
  }
1597
1598
  .col-lg-offset-10 {
    margin-left: 83.33333333333334%;
1599
  }
1600
1601
  .col-lg-offset-9 {
    margin-left: 75%;
1602
  }
1603
1604
  .col-lg-offset-8 {
    margin-left: 66.66666666666666%;
1605
  }
1606
  .col-lg-offset-7 {
1607
1608
    margin-left: 58.333333333333336%;
  }
1609
  .col-lg-offset-6 {
1610
1611
    margin-left: 50%;
  }
1612
1613
  .col-lg-offset-5 {
    margin-left: 41.66666666666667%;
1614
  }
1615
1616
  .col-lg-offset-4 {
    margin-left: 33.33333333333333%;
1617
  }
1618
1619
  .col-lg-offset-3 {
    margin-left: 25%;
1620
  }
1621
1622
  .col-lg-offset-2 {
    margin-left: 16.666666666666664%;
1623
  }
1624
1625
  .col-lg-offset-1 {
    margin-left: 8.333333333333332%;
1626
  }
1627
1628
1629
  .col-lg-offset-0 {
    margin-left: 0;
  }
1630
1631
}

Mark Otto's avatar
Mark Otto committed
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
table {
  max-width: 100%;
  background-color: transparent;
}

th {
  text-align: left;
}

.table {
  width: 100%;
Mark Otto's avatar
Mark Otto committed
1643
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
1644
1645
}

1646
1647
1648
1649
1650
1651
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
Mark Otto's avatar
Mark Otto committed
1652
  padding: 8px;
1653
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
1654
1655
1656
1657
  vertical-align: top;
  border-top: 1px solid #dddddd;
}

1658
.table > thead > tr > th {
Mark Otto's avatar
Mark Otto committed
1659
  vertical-align: bottom;
1660
  border-bottom: 2px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
1661
1662
}

1663
1664
1665
1666
1667
1668
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
Mark Otto's avatar
Mark Otto committed
1669
1670
1671
  border-top: 0;
}

1672
.table > tbody + tbody {
Mark Otto's avatar
Mark Otto committed
1673
1674
1675
1676
1677
1678
1679
  border-top: 2px solid #dddddd;
}

.table .table {
  background-color: #ffffff;
}

1680
1681
1682
1683
1684
1685
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
1686
  padding: 5px;
Mark Otto's avatar
Mark Otto committed
1687
1688
1689
1690
1691
1692
}

.table-bordered {
  border: 1px solid #dddddd;
}

1693
1694
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
1695
.table-bordered > tfoot > tr > th,
1696
.table-bordered > thead > tr > td,
1697
1698
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
1699
  border: 1px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
1700
1701
}

1702
1703
1704
1705
1706
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

1707
1708
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
Mark Otto's avatar
Mark Otto committed
1709
1710
1711
  background-color: #f9f9f9;
}

1712
1713
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
Mark Otto's avatar
Mark Otto committed
1714
1715
1716
  background-color: #f5f5f5;
}

Mark Otto's avatar
Mark Otto committed
1717
table col[class*="col-"] {
1718
1719
1720
1721
  display: table-column;
  float: none;
}

Mark Otto's avatar
Mark Otto committed
1722
1723
table td[class*="col-"],
table th[class*="col-"] {
Mark Otto's avatar
Mark Otto committed
1724
1725
1726
1727
  display: table-cell;
  float: none;
}

1728
.table > thead > tr > td.active,
1729
.table > tbody > tr > td.active,
1730
1731
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
1732
.table > tbody > tr > th.active,
1733
1734
1735
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
1736
1737
1738
1739
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
1740
1741
1742
  background-color: #f5f5f5;
}

1743
.table > thead > tr > td.success,
1744
.table > tbody > tr > td.success,
1745
1746
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
1747
.table > tbody > tr > th.success,
1748
1749
1750
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
1751
1752
1753
1754
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
Mark Otto's avatar
Mark Otto committed
1755
1756
1757
  background-color: #dff0d8;
}

1758
1759
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
James Lawrence's avatar
James Lawrence committed
1760
1761
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
1762
1763
1764
  background-color: #d0e9c6;
}

1765
.table > thead > tr > td.danger,
1766
.table > tbody > tr > td.danger,
1767
1768
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
1769
.table > tbody > tr > th.danger,
1770
1771
1772
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
1773
1774
1775
1776
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
Mark Otto's avatar
Mark Otto committed
1777
1778
1779
  background-color: #f2dede;
}

1780
1781
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
James Lawrence's avatar
James Lawrence committed
1782
1783
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
1784
1785
1786
  background-color: #ebcccc;
}

1787
.table > thead > tr > td.warning,
1788
.table > tbody > tr > td.warning,
1789
1790
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
1791
.table > tbody > tr > th.warning,
1792
1793
1794
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
1795
1796
1797
1798
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
Mark Otto's avatar
Mark Otto committed
1799
1800
1801
  background-color: #fcf8e3;
}

1802
1803
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
James Lawrence's avatar
James Lawrence committed
1804
1805
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
Mark Otto's avatar
Mark Otto committed
1806
1807
1808
  background-color: #faf2cc;
}

1809
@media (max-width: 767px) {
1810
1811
1812
1813
1814
1815
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    border: 1px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
1816
    -ms-overflow-style: -ms-autohiding-scrollbar;
1817
    -webkit-overflow-scrolling: touch;
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

Mark Otto's avatar
Mark Otto committed
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
Mark Otto's avatar
Mark Otto committed
1867
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
1868
  font-size: 21px;
1869
  line-height: inherit;
Mark Otto's avatar
Mark Otto committed
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

1881
1882
1883
1884
1885
1886
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

Mark Otto's avatar
Mark Otto committed
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */

  line-height: normal;
}

input[type="file"] {
1897
  display: block;
Mark Otto's avatar
Mark Otto committed
1898
1899
1900
1901
1902
1903
1904
}

select[multiple],
select[size] {
  height: auto;
}

1905
1906
1907
1908
1909
1910
select optgroup {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
}

Mark Otto's avatar
Mark Otto committed
1911
1912
1913
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
Mark Otto's avatar
Mark Otto committed
1914
  outline: thin dotted;
Mark Otto's avatar
Mark Otto committed
1915
1916
1917
1918
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

1919
1920
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
1921
1922
1923
  height: auto;
}

1924
1925
1926
1927
1928
1929
1930
1931
1932
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
}

Mark Otto's avatar
Mark Otto committed
1933
1934
1935
.form-control {
  display: block;
  width: 100%;
1936
1937
  height: 34px;
  padding: 6px 12px;
Mark Otto's avatar
Mark Otto committed
1938
1939
1940
1941
1942
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
1943
  background-image: none;
Mark Otto's avatar
Mark Otto committed
1944
1945
1946
1947
1948
1949
1950
1951
1952
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
1953
  border-color: #66afe9;
Mark Otto's avatar
Mark Otto committed
1954
  outline: 0;
1955
1956
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
Mark Otto's avatar
Mark Otto committed
1957
1958
}

1959
1960
1961
1962
1963
1964
.form-control:-moz-placeholder {
  color: #999999;
}

.form-control::-moz-placeholder {
  color: #999999;
Jesse Mandel's avatar
Jesse Mandel committed
1965
  opacity: 1;
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
}

.form-control:-ms-input-placeholder {
  color: #999999;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
}

Mark Otto's avatar
Mark Otto committed
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 15px;
}

Mark Otto's avatar
Mark Otto committed
1991
1992
1993
.radio,
.checkbox {
  display: block;
Mark Otto's avatar
Mark Otto committed
1994
  min-height: 20px;
Mark Otto's avatar
Mark Otto committed
1995
  padding-left: 20px;
Mark Otto's avatar
Mark Otto committed
1996
  margin-top: 10px;
Mark Otto's avatar
Mark Otto committed
1997
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
1998
  vertical-align: middle;
Mark Otto's avatar
Mark Otto committed
1999
2000
2001
2002
2003
2004
2005
}

.radio label,
.checkbox label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
2006
  cursor: pointer;
Mark Otto's avatar
Mark Otto committed
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
2029
  cursor: pointer;
Mark Otto's avatar
Mark Otto committed
2030
2031
2032
2033
2034
2035
2036
2037
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

2038
2039
input[type="radio"][disabled],
input[type="checkbox"][disabled],
2040
2041
2042
2043
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
2044
2045
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
2046
2047
2048
2049
2050
2051
2052
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

2053
.input-sm {
Mark Otto's avatar
Mark Otto committed
2054
2055
2056
2057
2058
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
Mark Otto's avatar
Mark Otto committed
2059
2060
}

2061
select.input-sm {
Mark Otto's avatar
Mark Otto committed
2062
2063
  height: 30px;
  line-height: 30px;
2064
2065
2066
2067
2068
2069
2070
}

textarea.input-sm {
  height: auto;
}

.input-lg {
Mark Otto's avatar
Mark Otto committed
2071
2072
2073
2074
2075
  height: 45px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
Mark Otto's avatar
Mark Otto committed
2076
2077
}

2078
select.input-lg {
Mark Otto's avatar
Mark Otto committed
2079
2080
  height: 45px;
  line-height: 45px;
2081
2082
}

2083
textarea.input-lg {
2084
2085
2086
  height: auto;
}

2087
.has-warning .help-block,
2088
2089
2090
2091
2092
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
Mark Otto's avatar
Mark Otto committed
2093
2094
2095
  color: #c09853;
}

Mark Otto's avatar
Mark Otto committed
2096
.has-warning .form-control {
Mark Otto's avatar
Mark Otto committed
2097
2098
2099
2100
2101
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

Mark Otto's avatar
Mark Otto committed
2102
.has-warning .form-control:focus {
Mark Otto's avatar
Mark Otto committed
2103
2104
2105
2106
2107
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}

2108
2109
2110
2111
2112
2113
.has-warning .input-group-addon {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}

2114
.has-error .help-block,
2115
2116
2117
2118
2119
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
Mark Otto's avatar
Mark Otto committed
2120
2121
2122
  color: #b94a48;
}

Mark Otto's avatar
Mark Otto committed
2123
.has-error .form-control {
Mark Otto's avatar
Mark Otto committed
2124
2125
2126
2127
2128
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

Mark Otto's avatar
Mark Otto committed
2129
.has-error .form-control:focus {
Mark Otto's avatar
Mark Otto committed
2130
2131
2132
2133
2134
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}

2135
2136
2137
2138
2139
2140
.has-error .input-group-addon {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}

2141
.has-success .help-block,
2142
2143
2144
2145
2146
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
Mark Otto's avatar
Mark Otto committed
2147
2148
2149
  color: #468847;
}

Mark Otto's avatar
Mark Otto committed
2150
.has-success .form-control {
Mark Otto's avatar
Mark Otto committed
2151
2152
2153
2154
2155
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

Mark Otto's avatar
Mark Otto committed
2156
.has-success .form-control:focus {
Mark Otto's avatar
Mark Otto committed
2157
2158
2159
2160
2161
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}

2162
2163
2164
2165
2166
2167
.has-success .input-group-addon {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}

2168
.form-control-static {
2169
  margin-bottom: 0;
2170
2171
}

Mark Otto's avatar
Mark Otto committed
2172
2173
.help-block {
  display: block;
Mark Otto's avatar
Mark Otto committed
2174
  margin-top: 5px;
Mark Otto's avatar
Mark Otto committed
2175
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
2176
  color: #737373;
Mark Otto's avatar
Mark Otto committed
2177
2178
}

2179
2180
2181
2182
2183
2184
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
2185
2186
2187
  .form-inline .form-control {
    display: inline-block;
  }
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
2200
2201
}

2202
.form-horizontal .control-label,
2203
2204
.form-horizontal .radio,
.form-horizontal .checkbox,
2205
2206
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
2207
  padding-top: 7px;
2208
2209
  margin-top: 0;
  margin-bottom: 0;
2210
2211
}

2212
2213
2214
2215
2216
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  display: table;
  content: " ";
}

.form-horizontal .form-group:after {
  clear: both;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  display: table;
  content: " ";
}

.form-horizontal .form-group:after {
  clear: both;
}

2237
2238
2239
.form-horizontal .form-control-static {
  padding-top: 7px;
}
2240
2241
2242
2243
2244
2245
2246

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}

Mark Otto's avatar
Mark Otto committed
2247
2248
.btn {
  display: inline-block;
2249
  padding: 6px 12px;
Mark Otto's avatar
Mark Otto committed
2250
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
2251
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
2252
  font-weight: normal;
2253
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
2254
  text-align: center;
2255
  white-space: nowrap;
Mark Otto's avatar
Mark Otto committed
2256
2257
  vertical-align: middle;
  cursor: pointer;
2258
  background-image: none;
2259
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
2260
  border-radius: 4px;
liuyl's avatar
buttons    
liuyl committed
2261
2262
2263
2264
2265
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
Mark Otto's avatar
Mark Otto committed
2266
2267
2268
}

.btn:focus {
Mark Otto's avatar
Mark Otto committed
2269
  outline: thin dotted;
Mark Otto's avatar
Mark Otto committed
2270
2271
2272
2273
2274
2275
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus {
2276
  color: #333333;
Mark Otto's avatar
Mark Otto committed
2277
2278
2279
2280
2281
  text-decoration: none;
}

.btn:active,
.btn.active {
2282
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2283
2284
2285
2286
2287
2288
2289
2290
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
2291
  pointer-events: none;
2292
  cursor: not-allowed;
Mark Otto's avatar
Mark Otto committed
2293
2294
2295
2296
2297
2298
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
}

2299
.btn-default {
2300
2301
2302
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
Mark Otto's avatar
Mark Otto committed
2303
2304
}

2305
2306
2307
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
2308
2309
.btn-default.active,
.open .dropdown-toggle.btn-default {
2310
2311
2312
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
Mark Otto's avatar
Mark Otto committed
2313
2314
}

2315
2316
2317
2318
2319
2320
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}

Mark Otto's avatar
Mark Otto committed
2321
2322
2323
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
2336
2337
  background-color: #ffffff;
  border-color: #cccccc;
Mark Otto's avatar
Mark Otto committed
2338
2339
2340
}

.btn-primary {
2341
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
2342
  background-color: #428bca;
Mark Otto's avatar
Mark Otto committed
2343
  border-color: #357ebd;
Mark Otto's avatar
Mark Otto committed
2344
2345
2346
2347
}

.btn-primary:hover,
.btn-primary:focus,
2348
.btn-primary:active,
2349
2350
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
2351
  color: #ffffff;
2352
  background-color: #3276b1;
Mark Otto's avatar
Mark Otto committed
2353
  border-color: #285e8e;
Mark Otto's avatar
Mark Otto committed
2354
2355
}

2356
2357
2358
2359
2360
2361
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

Mark Otto's avatar
Mark Otto committed
2362
2363
2364
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
Mark Otto's avatar
Mark Otto committed
2365
2366
2367
2368
2369
2370
2371
2372
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
2373
2374
2375
2376
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
Mark Otto's avatar
Mark Otto committed
2377
  background-color: #428bca;
Mark Otto's avatar
Mark Otto committed
2378
  border-color: #357ebd;
Mark Otto's avatar
Mark Otto committed
2379
2380
2381
}

.btn-warning {
2382
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
2383
  background-color: #f0ad4e;
Mark Otto's avatar
Mark Otto committed
2384
  border-color: #eea236;
Mark Otto's avatar
Mark Otto committed
2385
2386
2387
2388
}

.btn-warning:hover,
.btn-warning:focus,
2389
.btn-warning:active,
2390
2391
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
2392
  color: #ffffff;
2393
  background-color: #ed9c28;
Mark Otto's avatar
Mark Otto committed
2394
  border-color: #d58512;
Mark Otto's avatar
Mark Otto committed
2395
2396
}

2397
2398
2399
2400
2401
2402
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}

Mark Otto's avatar
Mark Otto committed
2403
2404
2405
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
Mark Otto's avatar
Mark Otto committed
2406
2407
2408
2409
2410
2411
2412
2413
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
2414
2415
2416
2417
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
Mark Otto's avatar
Mark Otto committed
2418
  background-color: #f0ad4e;
Mark Otto's avatar
Mark Otto committed
2419
  border-color: #eea236;
Mark Otto's avatar
Mark Otto committed
2420
2421
2422
}

.btn-danger {
2423
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
2424
  background-color: #d9534f;
Mark Otto's avatar
Mark Otto committed
2425
  border-color: #d43f3a;
Mark Otto's avatar
Mark Otto committed
2426
2427
2428
2429
}

.btn-danger:hover,
.btn-danger:focus,
2430
.btn-danger:active,
2431
2432
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
2433
  color: #ffffff;
2434
  background-color: #d2322d;
Mark Otto's avatar
Mark Otto committed
2435
  border-color: #ac2925;
Mark Otto's avatar
Mark Otto committed
2436
2437
}

2438
2439
2440
2441
2442
2443
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}

Mark Otto's avatar
Mark Otto committed
2444
2445
2446
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
Mark Otto's avatar
Mark Otto committed
2447
2448
2449
2450
2451
2452
2453
2454
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
2455
2456
2457
2458
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
Mark Otto's avatar
Mark Otto committed
2459
  background-color: #d9534f;
Mark Otto's avatar
Mark Otto committed
2460
  border-color: #d43f3a;
Mark Otto's avatar
Mark Otto committed
2461
2462
2463
}

.btn-success {
2464
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
2465
  background-color: #5cb85c;
Mark Otto's avatar
Mark Otto committed
2466
  border-color: #4cae4c;
Mark Otto's avatar
Mark Otto committed
2467
2468
2469
2470
}

.btn-success:hover,
.btn-success:focus,
2471
.btn-success:active,
2472
2473
.btn-success.active,
.open .dropdown-toggle.btn-success {
2474
  color: #ffffff;
2475
  background-color: #47a447;
Mark Otto's avatar
Mark Otto committed
2476
  border-color: #398439;
Mark Otto's avatar
Mark Otto committed
2477
2478
}

2479
2480
2481
2482
2483
2484
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}

Mark Otto's avatar
Mark Otto committed
2485
2486
2487
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
Mark Otto's avatar
Mark Otto committed
2488
2489
2490
2491
2492
2493
2494
2495
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
2496
2497
2498
2499
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
Mark Otto's avatar
Mark Otto committed
2500
  background-color: #5cb85c;
Mark Otto's avatar
Mark Otto committed
2501
  border-color: #4cae4c;
Mark Otto's avatar
Mark Otto committed
2502
2503
2504
}

.btn-info {
2505
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
2506
  background-color: #5bc0de;
Mark Otto's avatar
Mark Otto committed
2507
  border-color: #46b8da;
Mark Otto's avatar
Mark Otto committed
2508
2509
2510
2511
}

.btn-info:hover,
.btn-info:focus,
2512
.btn-info:active,
2513
2514
.btn-info.active,
.open .dropdown-toggle.btn-info {
2515
  color: #ffffff;
2516
  background-color: #39b3d7;
Mark Otto's avatar
Mark Otto committed
2517
  border-color: #269abc;
Mark Otto's avatar
Mark Otto committed
2518
2519
}

2520
2521
2522
2523
2524
2525
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}

Mark Otto's avatar
Mark Otto committed
2526
2527
2528
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
Mark Otto's avatar
Mark Otto committed
2529
2530
2531
2532
2533
2534
2535
2536
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
2537
2538
2539
2540
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
Mark Otto's avatar
Mark Otto committed
2541
  background-color: #5bc0de;
Mark Otto's avatar
Mark Otto committed
2542
  border-color: #46b8da;
Mark Otto's avatar
Mark Otto committed
2543
2544
}

Chris Rebert's avatar
Chris Rebert committed
2545
2546
2547
2548
2549
2550
2551
.btn-link {
  font-weight: normal;
  color: #428bca;
  cursor: pointer;
  border-radius: 0;
}

Mark Otto's avatar
Mark Otto committed
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
2579
  color: #999999;
Mark Otto's avatar
Mark Otto committed
2580
2581
2582
  text-decoration: none;
}

2583
.btn-lg {
2584
  padding: 10px 16px;
Mark Otto's avatar
Mark Otto committed
2585
  font-size: 18px;
2586
  line-height: 1.33;
2587
2588
2589
  border-radius: 6px;
}

2590
2591
.btn-sm,
.btn-xs {
2592
  padding: 5px 10px;
Mark Otto's avatar
Mark Otto committed
2593
  font-size: 12px;
2594
  line-height: 1.5;
2595
2596
2597
  border-radius: 3px;
}

2598
.btn-xs {
Mark Otto's avatar
Mark Otto committed
2599
  padding: 1px 5px;
Mark Otto's avatar
Mark Otto committed
2600
2601
}

2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

Mark Otto's avatar
Mark Otto committed
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
          transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
2630
2631
2632
2633
2634
2635
2636
2637
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
Mark Otto's avatar
Mark Otto committed
2638
2639
2640
2641
2642
2643
2644
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
          transition: height 0.35s ease;
}

Mark Otto's avatar
Mark Otto committed
2645
2646
@font-face {
  font-family: 'Glyphicons Halflings';
Mark Otto's avatar
Mark Otto committed
2647
  src: url('../fonts/glyphicons-halflings-regular.eot');
Chris Rebert's avatar
Chris Rebert committed
2648
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
Mark Otto's avatar
Mark Otto committed
2649
2650
2651
}

.glyphicon {
2652
  position: relative;
2653
  top: 1px;
2654
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
2655
2656
2657
2658
2659
  font-family: 'Glyphicons Halflings';
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
Zlatan Vasović's avatar
Zlatan Vasović committed
2660
  -moz-osx-font-smoothing: grayscale;
Mark Otto's avatar
Mark Otto committed
2661
2662
}

2663
2664
2665
2666
.glyphicon:empty {
  width: 1em;
}

Chris Rebert's avatar
Chris Rebert committed
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
.glyphicon-asterisk:before {
  content: "\2a";
}

.glyphicon-plus:before {
  content: "\2b";
}

.glyphicon-euro:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

Mark Otto's avatar
Mark Otto committed
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

Chris Rebert's avatar
Chris Rebert committed
2819
2820
2821
2822
.glyphicon-lock:before {
  content: "\e033";
}

Mark Otto's avatar
Mark Otto committed
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

Chris Rebert's avatar
Chris Rebert committed
2863
2864
2865
2866
.glyphicon-bookmark:before {
  content: "\e044";
}

Mark Otto's avatar
Mark Otto committed
2867
2868
2869
2870
.glyphicon-print:before {
  content: "\e045";
}

Chris Rebert's avatar
Chris Rebert committed
2871
2872
2873
2874
.glyphicon-camera:before {
  content: "\e046";
}

Mark Otto's avatar
Mark Otto committed
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

Chris Rebert's avatar
Chris Rebert committed
3087
3088
3089
3090
.glyphicon-fire:before {
  content: "\e104";
}

Mark Otto's avatar
Mark Otto committed
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

Chris Rebert's avatar
Chris Rebert committed
3107
3108
3109
3110
.glyphicon-calendar:before {
  content: "\e109";
}

Mark Otto's avatar
Mark Otto committed
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

Chris Rebert's avatar
Chris Rebert committed
3163
3164
3165
3166
.glyphicon-bell:before {
  content: "\e123";
}

Mark Otto's avatar
Mark Otto committed
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

Chris Rebert's avatar
Chris Rebert committed
3215
3216
3217
3218
.glyphicon-wrench:before {
  content: "\e136";
}

Mark Otto's avatar
Mark Otto committed
3219
3220
3221
3222
3223
3224
3225
3226
.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

Chris Rebert's avatar
Chris Rebert committed
3227
3228
3229
3230
.glyphicon-briefcase:before {
  content: "\e139";
}

Mark Otto's avatar
Mark Otto committed
3231
3232
3233
3234
3235
3236
3237
3238
.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

Chris Rebert's avatar
Chris Rebert committed
3239
3240
3241
3242
.glyphicon-paperclip:before {
  content: "\e142";
}

Mark Otto's avatar
Mark Otto committed
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

Chris Rebert's avatar
Chris Rebert committed
3255
3256
3257
3258
.glyphicon-pushpin:before {
  content: "\e146";
}

Mark Otto's avatar
Mark Otto committed
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

Chris Rebert's avatar
Chris Rebert committed
3303
.glyphicon-collapse-down:before {
Mark Otto's avatar
Mark Otto committed
3304
3305
3306
  content: "\e159";
}

Chris Rebert's avatar
Chris Rebert committed
3307
.glyphicon-collapse-up:before {
Mark Otto's avatar
Mark Otto committed
3308
3309
3310
  content: "\e160";
}

Mark Otto's avatar
Mark Otto committed
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

Mark Otto's avatar
Mark Otto committed
3467
3468
3469
3470
.caret {
  display: inline-block;
  width: 0;
  height: 0;
3471
3472
  margin-left: 2px;
  vertical-align: middle;
Tobias Lindig's avatar
Tobias Lindig committed
3473
  border-top: 4px solid;
Mark Otto's avatar
Mark Otto committed
3474
3475
3476
3477
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

Mark Otto's avatar
Mark Otto committed
3478
3479
3480
3481
.dropdown {
  position: relative;
}

Mark Otto's avatar
Mark Otto committed
3482
3483
3484
3485
.dropdown-toggle:focus {
  outline: 0;
}

Mark Otto's avatar
Mark Otto committed
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
3496
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
3497
3498
  list-style: none;
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
3499
  border: 1px solid #cccccc;
Mark Otto's avatar
Mark Otto committed
3500
3501
3502
3503
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3504
  background-clip: padding-box;
Mark Otto's avatar
Mark Otto committed
3505
3506
3507
3508
3509
3510
3511
3512
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
Mark Otto's avatar
Mark Otto committed
3513
  height: 1px;
Mark Otto's avatar
Mark Otto committed
3514
  margin: 9px 0;
Mark Otto's avatar
Mark Otto committed
3515
3516
3517
3518
3519
3520
3521
3522
3523
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
3524
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
3525
  color: #333333;
3526
  white-space: nowrap;
Mark Otto's avatar
Mark Otto committed
3527
3528
}

Mark Otto's avatar
Mark Otto committed
3529
.dropdown-menu > li > a:hover,
3530
.dropdown-menu > li > a:focus {
3531
  color: #262626;
Mark Otto's avatar
Mark Otto committed
3532
  text-decoration: none;
3533
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
3534
3535
3536
3537
3538
3539
3540
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
3541
  background-color: #428bca;
Mark Otto's avatar
Mark Otto committed
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
  outline: 0;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
3554
  cursor: not-allowed;
Mark Otto's avatar
Mark Otto committed
3555
3556
3557
3558
3559
3560
3561
3562
3563
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.open > .dropdown-menu {
  display: block;
}

3564
3565
3566
3567
.open > a {
  outline: 0;
}

3568
3569
3570
3571
3572
3573
3574
3575
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999999;
}

3576
3577
3578
3579
3580
3581
3582
3583
3584
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

Mark Otto's avatar
Mark Otto committed
3585
3586
3587
3588
3589
3590
3591
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
3592
  border-top: 0;
Tobias Lindig's avatar
Tobias Lindig committed
3593
  border-bottom: 4px solid;
Mark Otto's avatar
Mark Otto committed
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
  content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

3604
3605
3606
3607
3608
3609
3610
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
}

3611
3612
3613
3614
3615
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
3616
3617
}

3618
3619
3620
3621
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
Mark Otto's avatar
Mark Otto committed
3622
3623
}

3624
3625
3626
3627
3628
3629
3630
3631
3632
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
Mark Otto's avatar
Mark Otto committed
3633
3634
}

3635
3636
3637
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
Mark Otto's avatar
Mark Otto committed
3638
3639
}

3640
3641
3642
3643
3644
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
Mark Otto's avatar
Mark Otto committed
3645
3646
}

3647
3648
3649
3650
.btn-toolbar:before,
.btn-toolbar:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
3651
3652
}

3653
3654
.btn-toolbar:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
3655
3656
}

3657
3658
3659
3660
.btn-toolbar:before,
.btn-toolbar:after {
  display: table;
  content: " ";
3661
3662
}

3663
3664
.btn-toolbar:after {
  clear: both;
3665
3666
}

3667
3668
.btn-toolbar .btn-group {
  float: left;
3669
3670
}

3671
3672
3673
3674
3675
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn-group {
  margin-left: 5px;
3676
3677
}

3678
3679
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
Mark Otto's avatar
Mark Otto committed
3680
3681
}

3682
3683
.btn-group > .btn:first-child {
  margin-left: 0;
3684
3685
}

3686
3687
3688
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
3689
3690
}

3691
3692
3693
3694
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
3695
3696
}

3697
3698
.btn-group > .btn-group {
  float: left;
3699
3700
}

3701
3702
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
3703
3704
}

3705
3706
3707
3708
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
3709
3710
}

3711
3712
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
3713
3714
3715
  border-top-left-radius: 0;
}

3716
3717
3718
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
3719
3720
}

3721
3722
3723
3724
3725
3726
.btn-group-xs > .btn {
  padding: 5px 10px;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
3727
3728
}

3729
3730
3731
3732
3733
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
3734
3735
}

3736
3737
3738
3739
3740
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
3741
3742
}

3743
3744
3745
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
3746
3747
}

3748
3749
3750
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
Mark Otto's avatar
Mark Otto committed
3751
3752
}

3753
3754
3755
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
Mark Otto's avatar
Mark Otto committed
3756
3757
}

3758
3759
3760
3761
3762
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}

3763
3764
.btn .caret {
  margin-left: 0;
Mark Otto's avatar
Mark Otto committed
3765
3766
}

3767
.btn-lg .caret {
3768
  border-width: 5px 5px 0;
liuyl's avatar
liuyl committed
3769
  border-bottom-width: 0;
Mark Otto's avatar
Mark Otto committed
3770
3771
}

3772
.dropup .btn-lg .caret {
3773
  border-width: 0 5px 5px;
Mark Otto's avatar
Mark Otto committed
3774
3775
}

3776
3777
3778
3779
3780
3781
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
Mark Otto's avatar
Mark Otto committed
3782
3783
}

3784
3785
3786
3787
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
3788
3789
}

3790
3791
.btn-group-vertical > .btn-group:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
3792
3793
}

3794
3795
3796
3797
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
3798
3799
}

3800
3801
.btn-group-vertical > .btn-group:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
3802
3803
}

3804
3805
.btn-group-vertical > .btn-group > .btn {
  float: none;
Mark Otto's avatar
Mark Otto committed
3806
3807
}

3808
3809
3810
3811
3812
3813
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
3814
3815
}

3816
3817
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
3818
3819
}

3820
3821
3822
3823
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
3824
3825
}

3826
3827
3828
3829
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
3830
3831
}

3832
3833
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
3834
3835
}

3836
3837
3838
3839
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
3840
3841
}

3842
3843
3844
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
3845
3846
}

3847
3848
3849
3850
3851
.btn-group-justified {
  display: table;
  width: 100%;
  border-collapse: separate;
  table-layout: fixed;
Mark Otto's avatar
Mark Otto committed
3852
3853
}

3854
3855
3856
3857
.btn-group-justified .btn {
  display: table-cell;
  float: none;
  width: 1%;
3858
3859
}

3860
3861
3862
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
3863
3864
}

3865
3866
3867
3868
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
Mark Otto's avatar
Mark Otto committed
3869
3870
}

3871
3872
3873
3874
.input-group.col {
  float: none;
  padding-right: 0;
  padding-left: 0;
Mark Otto's avatar
Mark Otto committed
3875
3876
}

3877
3878
3879
.input-group .form-control {
  width: 100%;
  margin-bottom: 0;
3880
3881
}

3882
3883
3884
3885
3886
3887
3888
3889
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
3890
3891
}

3892
3893
3894
3895
3896
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  line-height: 45px;
Mark Otto's avatar
Mark Otto committed
3897
3898
}

3899
3900
3901
3902
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
Mark Otto's avatar
Mark Otto committed
3903
3904
}

3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
3952
  color: #555555;
3953
3954
3955
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
Mark Otto's avatar
Mark Otto committed
3956
3957
3958
  border-radius: 4px;
}

3959
3960
3961
3962
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
Mark Otto's avatar
Mark Otto committed
3963
3964
}

3965
3966
3967
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
Mark Otto's avatar
Mark Otto committed
3968
3969
3970
  border-radius: 6px;
}

3971
3972
3973
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
Mark Otto's avatar
Mark Otto committed
3974
3975
}

3976
3977
3978
3979
3980
3981
3982
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
Mark Otto's avatar
Mark Otto committed
3983
3984
}

3985
3986
.input-group-addon:first-child {
  border-right: 0;
Mark Otto's avatar
Mark Otto committed
3987
3988
}

3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  white-space: nowrap;
}

4007
4008
4009
4010
4011
4012
4013
4014
.input-group-btn:first-child > .btn {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn {
  margin-left: -1px;
}

4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -4px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
  z-index: 2;
Mark Otto's avatar
Mark Otto committed
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav:before,
.nav:after {
  display: table;
  content: " ";
}

.nav:after {
  clear: both;
}

4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
.nav:before,
.nav:after {
  display: table;
  content: " ";
}

.nav:after {
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
4054
.nav > li {
4055
  position: relative;
Mark Otto's avatar
Mark Otto committed
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4071
4072
4073
4074
4075
4076
4077
4078
.nav > li.disabled > a {
  color: #999999;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999999;
  text-decoration: none;
4079
  cursor: not-allowed;
Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4080
4081
4082
  background-color: transparent;
}

4083
4084
4085
4086
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
4087
4088
4089
  border-color: #428bca;
}

Mark Otto's avatar
Mark Otto committed
4090
.nav .nav-divider {
Mark Otto's avatar
Mark Otto committed
4091
  height: 1px;
Mark Otto's avatar
Mark Otto committed
4092
  margin: 9px 0;
Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4093
4094
4095
4096
  overflow: hidden;
  background-color: #e5e5e5;
}

4097
4098
4099
4100
.nav > li > a > img {
  max-width: none;
}

Mark Otto's avatar
Mark Otto committed
4101
.nav-tabs {
Mark Otto's avatar
Mark Otto committed
4102
  border-bottom: 1px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
4103
4104
4105
4106
4107
4108
4109
4110
4111
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
4112
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
4113
4114
4115
4116
4117
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
4118
  border-color: #eeeeee #eeeeee #dddddd;
Mark Otto's avatar
Mark Otto committed
4119
4120
}

Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4121
4122
4123
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
Mark Otto's avatar
Mark Otto committed
4124
4125
4126
  color: #555555;
  cursor: default;
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
4127
  border: 1px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
4128
4129
4130
  border-bottom-color: transparent;
}

Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4131
4132
4133
4134
4135
4136
4137
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
4138
4139
4140
}

.nav-tabs.nav-justified > li > a {
Mark Otto's avatar
Mark Otto committed
4141
  margin-bottom: 5px;
Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4142
4143
4144
  text-align: center;
}

4145
4146
4147
4148
4149
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

4150
4151
4152
4153
4154
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
Mark Otto's avatar
Mark Otto committed
4155
4156
4157
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
4158
4159
}

Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4160
4161
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
Mark Otto's avatar
Mark Otto committed
4162
  border-radius: 4px;
Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4163
4164
}

Mark Otto's avatar
Mark Otto committed
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4181
4182
}

Mark Otto's avatar
Mark Otto committed
4183
4184
4185
4186
4187
.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
4188
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
4189
4190
}

4191
.nav-pills > li + li {
Mark Otto's avatar
Mark Otto committed
4192
4193
4194
  margin-left: 2px;
}

Artur Kwiatkowski's avatar
Artur Kwiatkowski committed
4195
4196
4197
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
Mark Otto's avatar
Mark Otto committed
4198
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
4199
4200
4201
4202
4203
4204
4205
  background-color: #428bca;
}

.nav-stacked > li {
  float: none;
}

4206
.nav-stacked > li + li {
Mark Otto's avatar
Mark Otto committed
4207
4208
4209
4210
  margin-top: 2px;
  margin-left: 0;
}

4211
4212
4213
4214
4215
4216
4217
4218
4219
.nav-justified {
  width: 100%;
}

.nav-justified > li {
  float: none;
}

.nav-justified > li > a {
Mark Otto's avatar
Mark Otto committed
4220
  margin-bottom: 5px;
4221
4222
4223
  text-align: center;
}

4224
4225
4226
4227
4228
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

4229
4230
4231
4232
4233
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
Mark Otto's avatar
Mark Otto committed
4234
4235
4236
  .nav-justified > li > a {
    margin-bottom: 0;
  }
4237
4238
}

4239
4240
4241
4242
4243
4244
.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a {
  margin-right: 0;
Mark Otto's avatar
Mark Otto committed
4245
  border-radius: 4px;
4246
4247
}

Mark Otto's avatar
Mark Otto committed
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
4264
4265
}

4266
.tab-content > .tab-pane {
4267
4268
4269
  display: none;
}

4270
.tab-content > .active {
4271
4272
4273
  display: block;
}

Mark Otto's avatar
Mark Otto committed
4274
.nav-tabs .dropdown-menu {
4275
4276
4277
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
4278
4279
4280
}

.navbar {
Mark Otto's avatar
Mark Otto committed
4281
  position: relative;
4282
  min-height: 50px;
Mark Otto's avatar
Mark Otto committed
4283
  margin-bottom: 20px;
4284
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
}

.navbar:before,
.navbar:after {
  display: table;
  content: " ";
}

.navbar:after {
  clear: both;
}

4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
.navbar:before,
.navbar:after {
  display: table;
  content: " ";
}

.navbar:after {
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
4307
4308
4309
4310
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
Mark Otto's avatar
Mark Otto committed
4311
4312
}

Mark Otto's avatar
Mark Otto committed
4313
4314
4315
4316
.navbar-header:before,
.navbar-header:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
4317
4318
}

Mark Otto's avatar
Mark Otto committed
4319
4320
.navbar-header:after {
  clear: both;
4321
4322
}

Mark Otto's avatar
Mark Otto committed
4323
4324
4325
4326
.navbar-header:before,
.navbar-header:after {
  display: table;
  content: " ";
4327
4328
}

Mark Otto's avatar
Mark Otto committed
4329
4330
.navbar-header:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
4331
4332
}

Mark Otto's avatar
Mark Otto committed
4333
4334
4335
4336
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
Mark Otto's avatar
Mark Otto committed
4337
4338
}

Mark Otto's avatar
Mark Otto committed
4339
.navbar-collapse {
4340
  max-height: 340px;
4341
4342
  padding-right: 15px;
  padding-left: 15px;
Mark Otto's avatar
Mark Otto committed
4343
  overflow-x: visible;
4344
  border-top: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4345
4346
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
4347
4348
}

Mark Otto's avatar
Mark Otto committed
4349
4350
4351
4352
.navbar-collapse:before,
.navbar-collapse:after {
  display: table;
  content: " ";
4353
4354
}

Mark Otto's avatar
Mark Otto committed
4355
.navbar-collapse:after {
4356
  clear: both;
4357
4358
}

Mark Otto's avatar
Mark Otto committed
4359
4360
.navbar-collapse:before,
.navbar-collapse:after {
4361
4362
4363
4364
  display: table;
  content: " ";
}

Mark Otto's avatar
Mark Otto committed
4365
.navbar-collapse:after {
4366
4367
4368
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
4369
4370
4371
4372
.navbar-collapse.in {
  overflow-y: auto;
}

Mark Otto's avatar
Mark Otto committed
4373
4374
4375
4376
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
4377
    box-shadow: none;
Mark Otto's avatar
Mark Otto committed
4378
  }
4379
4380
4381
4382
4383
4384
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
4385
  .navbar-collapse.in {
4386
    overflow-y: auto;
4387
  }
4388
4389
4390
  .navbar-collapse .navbar-nav.navbar-left:first-child {
    margin-left: -15px;
  }
4391
4392
4393
  .navbar-collapse .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
4394
4395
4396
  .navbar-collapse .navbar-text:last-child {
    margin-right: 0;
  }
4397
4398
}

Mark Otto's avatar
Mark Otto committed
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
.container > .navbar-header,
.container > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

Mark Otto's avatar
Mark Otto committed
4413
.navbar-static-top {
4414
  z-index: 1000;
Mark Otto's avatar
Mark Otto committed
4415
4416
4417
  border-width: 0 0 1px;
}

Mark Otto's avatar
Mark Otto committed
4418
4419
4420
4421
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
4422
4423
}

Mark Otto's avatar
Mark Otto committed
4424
4425
4426
4427
4428
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
4429
  z-index: 1030;
4430
4431
}

Mark Otto's avatar
Mark Otto committed
4432
4433
4434
4435
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
4436
4437
4438
  }
}

Mark Otto's avatar
Mark Otto committed
4439
4440
.navbar-fixed-top {
  top: 0;
4441
  border-width: 0 0 1px;
Mark Otto's avatar
Mark Otto committed
4442
4443
4444
4445
4446
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
4447
  border-width: 1px 0 0;
Mark Otto's avatar
Mark Otto committed
4448
4449
}

Mark Otto's avatar
Mark Otto committed
4450
.navbar-brand {
4451
  float: left;
Mark Otto's avatar
Mark Otto committed
4452
  padding: 15px 15px;
Mark Otto's avatar
Mark Otto committed
4453
4454
  font-size: 18px;
  line-height: 20px;
Mark Otto's avatar
Mark Otto committed
4455
4456
}

Mark Otto's avatar
Mark Otto committed
4457
4458
.navbar-brand:hover,
.navbar-brand:focus {
Mark Otto's avatar
Mark Otto committed
4459
4460
4461
  text-decoration: none;
}

Mark Otto's avatar
Mark Otto committed
4462
4463
4464
4465
4466
4467
@media (min-width: 768px) {
  .navbar > .container .navbar-brand {
    margin-left: -15px;
  }
}

Mark Otto's avatar
Mark Otto committed
4468
.navbar-toggle {
Mark Otto's avatar
Mark Otto committed
4469
4470
  position: relative;
  float: right;
4471
  padding: 9px 10px;
Mark Otto's avatar
Mark Otto committed
4472
  margin-top: 8px;
Mark Otto's avatar
Mark Otto committed
4473
  margin-right: 15px;
Mark Otto's avatar
Mark Otto committed
4474
  margin-bottom: 8px;
Mark Otto's avatar
Mark Otto committed
4475
  background-color: transparent;
4476
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4477
4478
4479
  border-radius: 4px;
}

Mark Otto's avatar
Mark Otto committed
4480
.navbar-toggle .icon-bar {
Mark Otto's avatar
Mark Otto committed
4481
  display: block;
Mark Otto's avatar
Mark Otto committed
4482
  width: 22px;
Mark Otto's avatar
Mark Otto committed
4483
4484
4485
4486
  height: 2px;
  border-radius: 1px;
}

Mark Otto's avatar
Mark Otto committed
4487
4488
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
Mark Otto's avatar
Mark Otto committed
4489
4490
}

4491
4492
4493
4494
4495
4496
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

4497
.navbar-nav {
4498
  margin: 7.5px -15px;
4499
4500
}

Mark Otto's avatar
Mark Otto committed
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

4544
4545
4546
4547
4548
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
Luis Aleman's avatar
Luis Aleman committed
4549
4550
    float: right !important;
  }
4551
4552
}

Mark Otto's avatar
Mark Otto committed
4553
.navbar-form {
Mark Otto's avatar
Mark Otto committed
4554
  padding: 10px 15px;
4555
  margin-top: 8px;
4556
  margin-right: -15px;
4557
  margin-bottom: 8px;
4558
  margin-left: -15px;
4559
4560
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4561
4562
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
Mark Otto's avatar
Mark Otto committed
4563
4564
}

4565
4566
4567
4568
4569
4570
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
4571
4572
4573
  .navbar-form .form-control {
    display: inline-block;
  }
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
4586
4587
}

Mark Otto's avatar
Mark Otto committed
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
4599
4600
    margin-right: 0;
    margin-left: 0;
Mark Otto's avatar
Mark Otto committed
4601
    border: 0;
Mark Otto's avatar
Mark Otto committed
4602
4603
    -webkit-box-shadow: none;
            box-shadow: none;
Mark Otto's avatar
Mark Otto committed
4604
4605
4606
  }
}

Mark Otto's avatar
Mark Otto committed
4607
.navbar-nav > li > .dropdown-menu {
Mark Otto's avatar
Mark Otto committed
4608
4609
4610
4611
4612
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

Mark Otto's avatar
Mark Otto committed
4613
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
Mark Otto's avatar
Mark Otto committed
4614
4615
4616
4617
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

Mark Otto's avatar
Mark Otto committed
4618
4619
.navbar-nav.pull-right > li > .dropdown-menu,
.navbar-nav > li > .dropdown-menu.pull-right {
Mark Otto's avatar
Mark Otto committed
4620
4621
4622
4623
  right: 0;
  left: auto;
}

4624
4625
.navbar-btn {
  margin-top: 8px;
4626
  margin-bottom: 8px;
4627
4628
4629
4630
4631
4632
4633
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

Mark Otto's avatar
Mark Otto committed
4634
4635
@media (min-width: 768px) {
  .navbar-text {
Julian Thilo's avatar
Julian Thilo committed
4636
    float: left;
Mark Otto's avatar
Mark Otto committed
4637
4638
4639
4640
4641
    margin-right: 15px;
    margin-left: 15px;
  }
}

4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777777;
}

.navbar-default .navbar-nav > li > a {
  color: #777777;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #dddddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #cccccc;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
Mark Otto's avatar
Mark Otto committed
4700
  border-color: #e7e7e7;
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}

.navbar-default .navbar-link {
4734
4735
4736
  color: #777777;
}

4737
.navbar-default .navbar-link:hover {
4738
4739
4740
  color: #333333;
}

Mark Otto's avatar
Mark Otto committed
4741
4742
.navbar-inverse {
  background-color: #222222;
4743
  border-color: #080808;
Mark Otto's avatar
Mark Otto committed
4744
4745
}

Mark Otto's avatar
Mark Otto committed
4746
.navbar-inverse .navbar-brand {
Mark Otto's avatar
Mark Otto committed
4747
4748
4749
  color: #999999;
}

Mark Otto's avatar
Mark Otto committed
4750
4751
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
Mark Otto's avatar
Mark Otto committed
4752
4753
4754
4755
4756
4757
4758
4759
  color: #ffffff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #999999;
}

Mark Otto's avatar
Mark Otto committed
4760
.navbar-inverse .navbar-nav > li > a {
Mark Otto's avatar
Mark Otto committed
4761
4762
4763
  color: #999999;
}

Mark Otto's avatar
Mark Otto committed
4764
4765
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
Mark Otto's avatar
Mark Otto committed
4766
4767
4768
4769
  color: #ffffff;
  background-color: transparent;
}

Mark Otto's avatar
Mark Otto committed
4770
4771
4772
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
Mark Otto's avatar
Mark Otto committed
4773
  color: #ffffff;
4774
  background-color: #080808;
Mark Otto's avatar
Mark Otto committed
4775
4776
}

Mark Otto's avatar
Mark Otto committed
4777
4778
4779
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
4780
4781
4782
4783
  color: #444444;
  background-color: transparent;
}

Mark Otto's avatar
Mark Otto committed
4784
.navbar-inverse .navbar-toggle {
Mark Otto's avatar
Mark Otto committed
4785
  border-color: #333333;
Mark Otto's avatar
Mark Otto committed
4786
4787
4788
4789
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
Mark Otto's avatar
Mark Otto committed
4790
  background-color: #333333;
Mark Otto's avatar
Mark Otto committed
4791
4792
}

4793
.navbar-inverse .navbar-toggle .icon-bar {
Mark Otto's avatar
Mark Otto committed
4794
  background-color: #ffffff;
4795
4796
}

Mark Otto's avatar
Mark Otto committed
4797
4798
4799
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
Mark Otto's avatar
Mark Otto committed
4800
4801
}

4802
4803
4804
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
Mark Otto's avatar
Mark Otto committed
4805
  color: #ffffff;
4806
  background-color: #080808;
Mark Otto's avatar
Mark Otto committed
4807
4808
}

4809
@media (max-width: 767px) {
4810
4811
4812
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
4813
4814
4815
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #999999;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}

Mark Otto's avatar
Mark Otto committed
4838
4839
.navbar-inverse .navbar-link {
  color: #999999;
Mark Otto's avatar
Mark Otto committed
4840
4841
}

Mark Otto's avatar
Mark Otto committed
4842
4843
4844
.navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
Mark Otto's avatar
Mark Otto committed
4845

4846
4847
4848
4849
4850
4851
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
4852
4853
}

4854
4855
.breadcrumb > li {
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
4856
4857
}

4858
4859
4860
4861
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #cccccc;
  content: "/\00a0";
Mark Otto's avatar
Mark Otto committed
4862
4863
}

4864
4865
.breadcrumb > .active {
  color: #999999;
Mark Otto's avatar
Mark Otto committed
4866
4867
}

4868
.pagination {
Mark Otto's avatar
Mark Otto committed
4869
  display: inline-block;
4870
4871
4872
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
4873
4874
}

4875
4876
.pagination > li {
  display: inline;
Mark Otto's avatar
Mark Otto committed
4877
4878
}

4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
4889
4890
}

4891
4892
4893
4894
4895
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
4896
4897
}

4898
4899
4900
4901
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
4902
4903
}

4904
4905
4906
4907
4908
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #eeeeee;
Mark Otto's avatar
Mark Otto committed
4909
4910
}

4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
Mark Otto's avatar
Mark Otto committed
4922
4923
}

4924
.pagination > .disabled > span,
Denis Gonchar's avatar
Denis Gonchar committed
4925
4926
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
4927
4928
4929
4930
4931
4932
4933
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #dddddd;
4934
4935
}

4936
4937
4938
4939
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
Mark Otto's avatar
Mark Otto committed
4940
4941
}

4942
4943
4944
4945
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
Mark Otto's avatar
Mark Otto committed
4946
4947
}

4948
4949
4950
4951
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
Mark Otto's avatar
Mark Otto committed
4952
4953
}

4954
4955
4956
4957
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
Mark Otto's avatar
Mark Otto committed
4958
4959
}

4960
4961
4962
4963
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
Mark Otto's avatar
Mark Otto committed
4964
4965
}

4966
4967
4968
4969
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
Mark Otto's avatar
Mark Otto committed
4970
4971
}

4972
4973
4974
4975
4976
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
4977
4978
}

4979
4980
4981
4982
.pager:before,
.pager:after {
  display: table;
  content: " ";
4983
4984
}

4985
4986
.pager:after {
  clear: both;
4987
4988
}

4989
4990
4991
4992
.pager:before,
.pager:after {
  display: table;
  content: " ";
4993
4994
}

4995
4996
.pager:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
4997
4998
}

4999
5000
.pager li {
  display: inline;
5001
5002
}

5003
5004
5005
5006
5007
5008
5009
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
5010
5011
}

5012
5013
5014
5015
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
5016
5017
}

5018
5019
5020
.pager .next > a,
.pager .next > span {
  float: right;
Mark Otto's avatar
Mark Otto committed
5021
5022
}

5023
5024
5025
.pager .previous > a,
.pager .previous > span {
  float: left;
Mark Otto's avatar
Mark Otto committed
5026
5027
}

5028
5029
5030
5031
5032
5033
5034
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
5035
5036
}

5037
5038
.label {
  display: inline;
5039
  padding: .2em .6em .3em;
5040
5041
5042
5043
5044
5045
5046
5047
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
Mark Otto's avatar
Mark Otto committed
5048
5049
}

5050
5051
5052
5053
5054
.label[href]:hover,
.label[href]:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
Mark Otto's avatar
Mark Otto committed
5055
5056
}

5057
5058
.label:empty {
  display: none;
Mark Otto's avatar
Mark Otto committed
5059
5060
}

5061
5062
.label-default {
  background-color: #999999;
Mark Otto's avatar
Mark Otto committed
5063
5064
}

5065
5066
5067
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
5068
5069
}

5070
5071
.label-primary {
  background-color: #428bca;
5072
5073
}

5074
5075
5076
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #3071a9;
5077
5078
}

5079
5080
.label-success {
  background-color: #5cb85c;
5081
5082
}

5083
5084
5085
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
5086
5087
}

5088
5089
.label-info {
  background-color: #5bc0de;
Mark Otto's avatar
Mark Otto committed
5090
5091
}

5092
5093
5094
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
Mark Otto's avatar
Mark Otto committed
5095
5096
}

5097
5098
.label-warning {
  background-color: #f0ad4e;
Mark Otto's avatar
Mark Otto committed
5099
5100
}

5101
5102
5103
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
Mark Otto's avatar
derp    
Mark Otto committed
5104
5105
}

5106
5107
.label-danger {
  background-color: #d9534f;
Mark Otto's avatar
derp    
Mark Otto committed
5108
5109
}

5110
5111
5112
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
Mark Otto's avatar
derp    
Mark Otto committed
5113
5114
}

5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #999999;
  border-radius: 10px;
Mark Otto's avatar
Mark Otto committed
5128
5129
}

5130
5131
.badge:empty {
  display: none;
Mark Otto's avatar
Mark Otto committed
5132
5133
}

5134
5135
5136
5137
5138
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
Mark Otto's avatar
Mark Otto committed
5139
5140
}

5141
5142
5143
.btn .badge {
  position: relative;
  top: -1px;
5144
5145
}

5146
5147
5148
5149
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
5150
5151
}

5152
5153
.nav-pills > li > a > .badge {
  margin-left: 3px;
Mark Otto's avatar
Mark Otto committed
5154
5155
}

5156
5157
5158
5159
5160
5161
5162
5163
.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 200;
  line-height: 2.1428571435;
  color: inherit;
  background-color: #eeeeee;
5164
5165
}

5166
5167
5168
.jumbotron h1 {
  line-height: 1;
  color: inherit;
Mark Otto's avatar
Mark Otto committed
5169
5170
}

5171
5172
.jumbotron p {
  line-height: 1.4;
Mark Otto's avatar
Mark Otto committed
5173
5174
}

5175
5176
.container .jumbotron {
  border-radius: 6px;
Mark Otto's avatar
Mark Otto committed
5177
5178
}

5179
5180
@media screen and (min-width: 768px) {
  .jumbotron {
5181
5182
    padding-top: 48px;
    padding-bottom: 48px;
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
  }
  .container .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1 {
    font-size: 63px;
  }
}

5193
5194
5195
5196
5197
.thumbnail {
  display: inline-block;
  display: block;
  height: auto;
  max-width: 100%;
5198
  padding: 4px;
5199
  margin-bottom: 20px;
5200
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
5201
5202
  background-color: #ffffff;
  border: 1px solid #dddddd;
5203
5204
5205
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
Mark Otto's avatar
Mark Otto committed
5206
5207
}

5208
5209
5210
5211
.thumbnail > img {
  display: block;
  height: auto;
  max-width: 100%;
5212
5213
  margin-right: auto;
  margin-left: auto;
5214
5215
}

5216
a.thumbnail:hover,
5217
5218
a.thumbnail:focus,
a.thumbnail.active {
5219
  border-color: #428bca;
Mark Otto's avatar
Mark Otto committed
5220
5221
}

5222
5223
5224
.thumbnail .caption {
  padding: 9px;
  color: #333333;
Mark Otto's avatar
Mark Otto committed
5225
5226
}

5227
5228
5229
.alert {
  padding: 15px;
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
5230
  border: 1px solid transparent;
5231
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
5232
5233
}

5234
5235
5236
.alert h4 {
  margin-top: 0;
  color: inherit;
Mark Otto's avatar
Mark Otto committed
5237
5238
}

5239
5240
.alert .alert-link {
  font-weight: bold;
Mark Otto's avatar
Mark Otto committed
5241
5242
}

5243
5244
5245
.alert > p,
.alert > ul {
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
5246
5247
}

5248
5249
.alert > p + p {
  margin-top: 5px;
Mark Otto's avatar
Mark Otto committed
5250
5251
}

5252
5253
.alert-dismissable {
  padding-right: 35px;
Mark Otto's avatar
Mark Otto committed
5254
5255
}

5256
5257
5258
5259
5260
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
Mark Otto's avatar
Mark Otto committed
5261
5262
}

5263
5264
5265
5266
.alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
5267
5268
}

5269
5270
.alert-success hr {
  border-top-color: #c9e2b3;
5271
5272
}

5273
5274
.alert-success .alert-link {
  color: #356635;
Mark Otto's avatar
Mark Otto committed
5275
5276
}

5277
5278
5279
5280
.alert-info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
Mark Otto's avatar
Mark Otto committed
5281
5282
}

5283
5284
.alert-info hr {
  border-top-color: #a6e1ec;
Mark Otto's avatar
Mark Otto committed
5285
5286
}

5287
5288
.alert-info .alert-link {
  color: #2d6987;
Mark Otto's avatar
Mark Otto committed
5289
5290
}

Mark Otto's avatar
Mark Otto committed
5291
5292
5293
.alert-warning {
  color: #c09853;
  background-color: #fcf8e3;
5294
  border-color: #faebcc;
Mark Otto's avatar
Mark Otto committed
5295
5296
5297
}

.alert-warning hr {
5298
  border-top-color: #f7e1b5;
Mark Otto's avatar
Mark Otto committed
5299
5300
5301
5302
5303
5304
5305
5306
5307
}

.alert-warning .alert-link {
  color: #a47e3c;
}

.alert-danger {
  color: #b94a48;
  background-color: #f2dede;
5308
  border-color: #ebccd1;
Mark Otto's avatar
Mark Otto committed
5309
5310
5311
}

.alert-danger hr {
5312
  border-top-color: #e4b9c0;
Mark Otto's avatar
Mark Otto committed
5313
5314
5315
5316
5317
5318
}

.alert-danger .alert-link {
  color: #953b39;
}

5319
5320
5321
5322
5323
5324
5325
5326
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
Mark Otto's avatar
Mark Otto committed
5327

5328
5329
5330
5331
5332
5333
5334
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
Mark Otto's avatar
Mark Otto committed
5335
5336
}

5337
5338
5339
5340
5341
5342
5343
5344
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
Mark Otto's avatar
Mark Otto committed
5345
5346
}

5347
5348
5349
5350
5351
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
5352
  line-height: 20px;
5353
5354
5355
5356
5357
5358
5359
  color: #ffffff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
          transition: width 0.6s ease;
Mark Otto's avatar
Mark Otto committed
5360
5361
}

5362
5363
5364
5365
5366
5367
.progress-striped .progress-bar {
  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));
  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);
  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);
  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);
  background-size: 40px 40px;
Mark Otto's avatar
Mark Otto committed
5368
5369
}

5370
5371
5372
.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
Mark Otto's avatar
Mark Otto committed
5373
5374
}

5375
5376
.progress-bar-success {
  background-color: #5cb85c;
Mark Otto's avatar
Mark Otto committed
5377
5378
}

5379
5380
5381
5382
5383
.progress-striped .progress-bar-success {
  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));
  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);
  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);
  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);
Mark Otto's avatar
Mark Otto committed
5384
5385
}

5386
5387
.progress-bar-info {
  background-color: #5bc0de;
Mark Otto's avatar
Mark Otto committed
5388
5389
}

5390
5391
5392
5393
5394
.progress-striped .progress-bar-info {
  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));
  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);
  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);
  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);
Mark Otto's avatar
Mark Otto committed
5395
5396
}

5397
5398
.progress-bar-warning {
  background-color: #f0ad4e;
Mark Otto's avatar
Mark Otto committed
5399
5400
}

5401
5402
5403
5404
5405
.progress-striped .progress-bar-warning {
  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));
  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);
  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);
  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);
Mark Otto's avatar
Mark Otto committed
5406
5407
}

5408
5409
.progress-bar-danger {
  background-color: #d9534f;
Mark Otto's avatar
Mark Otto committed
5410
5411
}

5412
5413
5414
5415
5416
.progress-striped .progress-bar-danger {
  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));
  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);
  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);
  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);
5417
5418
}

5419
5420
5421
5422
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
5423
5424
}

5425
5426
5427
.media,
.media .media {
  margin-top: 15px;
Mark Otto's avatar
Mark Otto committed
5428
5429
}

5430
5431
.media:first-child {
  margin-top: 0;
Mark Otto's avatar
Mark Otto committed
5432
5433
}

5434
5435
.media-object {
  display: block;
Mark Otto's avatar
Mark Otto committed
5436
5437
}

5438
5439
.media-heading {
  margin: 0 0 5px;
Mark Otto's avatar
Mark Otto committed
5440
5441
}

5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
.media > .pull-left {
  margin-right: 10px;
}

.media > .pull-right {
  margin-left: 10px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
Mark Otto's avatar
Mark Otto committed
5462
  display: block;
5463
5464
5465
5466
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
5467
5468
}

5469
5470
5471
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
Mark Otto's avatar
Mark Otto committed
5472
5473
}

5474
5475
5476
5477
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
Mark Otto's avatar
Mark Otto committed
5478
5479
}

5480
5481
.list-group-item > .badge {
  float: right;
Mark Otto's avatar
Mark Otto committed
5482
5483
}

5484
5485
.list-group-item > .badge + .badge {
  margin-right: 5px;
Mark Otto's avatar
Mark Otto committed
5486
5487
}

5488
5489
a.list-group-item {
  color: #555555;
Mark Otto's avatar
Mark Otto committed
5490
5491
}

5492
5493
5494
5495
5496
5497
a.list-group-item .list-group-item-heading {
  color: #333333;
}

a.list-group-item:hover,
a.list-group-item:focus {
Mark Otto's avatar
Mark Otto committed
5498
  text-decoration: none;
5499
5500
5501
  background-color: #f5f5f5;
}

5502
5503
5504
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
5505
5506
5507
5508
5509
5510
  z-index: 2;
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
}

5511
5512
5513
a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
5514
5515
5516
  color: inherit;
}

5517
5518
5519
a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
  color: #e1edf7;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
5536
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
5537
  border-radius: 4px;
5538
5539
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
Mark Otto's avatar
Mark Otto committed
5540
5541
}

5542
5543
.panel-body {
  padding: 15px;
Mark Otto's avatar
Mark Otto committed
5544
5545
}

5546
5547
5548
5549
.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
5550
5551
}

5552
5553
.panel-body:after {
  clear: both;
5554
5555
}

5556
5557
5558
5559
.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
5560
5561
}

5562
5563
.panel-body:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
5564
5565
}

5566
5567
.panel > .list-group {
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
5568
5569
}

5570
5571
.panel > .list-group .list-group-item {
  border-width: 1px 0;
Mark Otto's avatar
Mark Otto committed
5572
5573
}

5574
5575
5576
.panel > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
5577
5578
}

5579
5580
.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
5581
5582
}

5583
5584
5585
5586
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

5587
.panel > .table,
Jesse Mandel's avatar
Jesse Mandel committed
5588
.panel > .table-responsive > .table {
5589
5590
5591
  margin-bottom: 0;
}

5592
5593
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
5594
5595
5596
  border-top: 1px solid #dddddd;
}

5597
5598
5599
5600
5601
.panel > .table > tbody:first-child th,
.panel > .table > tbody:first-child td {
  border-top: 0;
}

5602
5603
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
5604
5605
5606
5607
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
5608
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
5609
.panel > .table-bordered > tbody > tr > th:first-child,
5610
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
5611
.panel > .table-bordered > tfoot > tr > th:first-child,
5612
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
5613
.panel > .table-bordered > thead > tr > td:first-child,
5614
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
5615
.panel > .table-bordered > tbody > tr > td:first-child,
5616
5617
5618
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
5619
5620
5621
5622
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
5623
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
5624
.panel > .table-bordered > tbody > tr > th:last-child,
5625
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
5626
.panel > .table-bordered > tfoot > tr > th:last-child,
5627
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
5628
.panel > .table-bordered > thead > tr > td:last-child,
5629
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
5630
.panel > .table-bordered > tbody > tr > td:last-child,
5631
5632
5633
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
5634
5635
5636
5637
  border-right: 0;
}

.panel > .table-bordered > thead > tr:last-child > th,
5638
.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
5639
.panel > .table-bordered > tbody > tr:last-child > th,
5640
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
5641
.panel > .table-bordered > tfoot > tr:last-child > th,
5642
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
5643
.panel > .table-bordered > thead > tr:last-child > td,
5644
.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
5645
.panel > .table-bordered > tbody > tr:last-child > td,
5646
5647
5648
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
5649
5650
5651
  border-bottom: 0;
}

5652
5653
.panel-heading {
  padding: 10px 15px;
5654
  border-bottom: 1px solid transparent;
5655
5656
5657
5658
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

5659
5660
5661
5662
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.panel-title > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel-group .panel {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
Mark Otto's avatar
Mark Otto committed
5689
5690
}

5691
5692
.panel-group .panel-heading {
  border-bottom: 0;
Mark Otto's avatar
Mark Otto committed
5693
5694
}

5695
5696
.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
5697
5698
}

5699
5700
.panel-group .panel-footer {
  border-top: 0;
Mark Otto's avatar
Mark Otto committed
5701
5702
}

5703
5704
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
Mark Otto's avatar
Mark Otto committed
5705
5706
}

5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
.panel-default {
  border-color: #dddddd;
}

.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #dddddd;
}

.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #dddddd;
}

5725
5726
.panel-primary {
  border-color: #428bca;
Mark Otto's avatar
Mark Otto committed
5727
5728
}

5729
5730
5731
5732
.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
Mark Otto's avatar
Mark Otto committed
5733
5734
}

5735
5736
.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #428bca;
Mark Otto's avatar
Mark Otto committed
5737
5738
}

5739
5740
.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #428bca;
Mark Otto's avatar
Mark Otto committed
5741
5742
}

5743
5744
.panel-success {
  border-color: #d6e9c6;
Mark Otto's avatar
Mark Otto committed
5745
5746
}

5747
5748
5749
5750
.panel-success > .panel-heading {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
Mark Otto's avatar
Mark Otto committed
5751
5752
}

5753
5754
.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d6e9c6;
Mark Otto's avatar
Mark Otto committed
5755
5756
}

5757
5758
.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d6e9c6;
Mark Otto's avatar
Mark Otto committed
5759
5760
}

5761
.panel-warning {
5762
  border-color: #faebcc;
Mark Otto's avatar
Mark Otto committed
5763
5764
}

5765
5766
5767
.panel-warning > .panel-heading {
  color: #c09853;
  background-color: #fcf8e3;
5768
  border-color: #faebcc;
Mark Otto's avatar
Mark Otto committed
5769
5770
}

5771
.panel-warning > .panel-heading + .panel-collapse .panel-body {
5772
  border-top-color: #faebcc;
Mark Otto's avatar
Mark Otto committed
5773
5774
}

5775
.panel-warning > .panel-footer + .panel-collapse .panel-body {
5776
  border-bottom-color: #faebcc;
Mark Otto's avatar
Mark Otto committed
5777
5778
}

5779
.panel-danger {
5780
  border-color: #ebccd1;
Mark Otto's avatar
Mark Otto committed
5781
5782
}

5783
5784
5785
.panel-danger > .panel-heading {
  color: #b94a48;
  background-color: #f2dede;
5786
  border-color: #ebccd1;
Mark Otto's avatar
Mark Otto committed
5787
5788
}

5789
.panel-danger > .panel-heading + .panel-collapse .panel-body {
5790
  border-top-color: #ebccd1;
Mark Otto's avatar
Mark Otto committed
5791
5792
}

5793
.panel-danger > .panel-footer + .panel-collapse .panel-body {
5794
  border-bottom-color: #ebccd1;
5795
5796
}

5797
5798
.panel-info {
  border-color: #bce8f1;
5799
5800
}

5801
5802
5803
5804
.panel-info > .panel-heading {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
5805
5806
}

5807
5808
.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #bce8f1;
5809
5810
}

5811
5812
.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #bce8f1;
5813
5814
}

5815
5816
5817
5818
5819
5820
5821
5822
5823
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5824
5825
}

5826
5827
5828
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
Mark Otto's avatar
Mark Otto committed
5829
5830
}

5831
5832
5833
.well-lg {
  padding: 24px;
  border-radius: 6px;
5834
5835
}

5836
5837
5838
.well-sm {
  padding: 9px;
  border-radius: 3px;
5839
5840
}

5841
5842
5843
5844
5845
5846
5847
5848
5849
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
Mark Otto's avatar
Mark Otto committed
5850
5851
}

5852
5853
5854
5855
5856
5857
5858
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
5859
5860
}

5861
5862
5863
5864
5865
5866
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
5867
5868
}

5869
5870
.modal-open {
  overflow: hidden;
Mark Otto's avatar
Mark Otto committed
5871
5872
}

5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: auto;
  overflow-y: scroll;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
     -moz-transition: -moz-transform 0.3s ease-out;
       -o-transition: -o-transform 0.3s ease-out;
          transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
5899
5900
}

5901
.modal-dialog {
5902
  position: relative;
5903
5904
5905
5906
5907
  z-index: 1050;
  width: auto;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
5908
5909
}

5910
5911
.modal-content {
  position: relative;
5912
  background-color: #ffffff;
5913
5914
5915
5916
5917
5918
5919
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
Mark Otto's avatar
Mark Otto committed
5920
5921
}

5922
5923
5924
5925
5926
5927
5928
5929
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
Mark Otto's avatar
Mark Otto committed
5930
5931
}

5932
5933
5934
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
Mark Otto's avatar
Mark Otto committed
5935
5936
}

5937
5938
5939
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
5940
5941
}

5942
5943
5944
5945
.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
Mark Otto's avatar
Mark Otto committed
5946
5947
}

5948
5949
.modal-header .close {
  margin-top: -2px;
Mark Otto's avatar
Mark Otto committed
5950
5951
}

5952
5953
5954
.modal-title {
  margin: 0;
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
5955
5956
}

5957
5958
5959
.modal-body {
  position: relative;
  padding: 20px;
Mark Otto's avatar
Mark Otto committed
5960
5961
}

5962
5963
.modal-footer {
  padding: 19px 20px 20px;
Mark Otto's avatar
Mark Otto committed
5964
  margin-top: 15px;
5965
5966
  text-align: right;
  border-top: 1px solid #e5e5e5;
Mark Otto's avatar
Mark Otto committed
5967
5968
}

5969
5970
5971
5972
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
5973
5974
}

5975
5976
.modal-footer:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
5977
5978
}

5979
5980
5981
5982
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
5983
5984
}

5985
5986
.modal-footer:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
5987
5988
}

5989
5990
5991
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
Mark Otto's avatar
Mark Otto committed
5992
5993
}

5994
5995
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
5996
5997
}

5998
5999
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
6000
6001
}

6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
6012
6013
}

6014
6015
6016
6017
6018
6019
6020
6021
6022
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: visible;
6023
6024
}

6025
6026
6027
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
6028
6029
}

6030
6031
6032
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
6033
6034
}

6035
6036
6037
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
6038
6039
}

6040
6041
6042
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
6043
6044
}

6045
6046
6047
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
6048
6049
}

6050
6051
6052
6053
6054
6055
6056
6057
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  border-radius: 4px;
6058
6059
}

6060
6061
6062
6063
6064
6065
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
6066
6067
}

6068
6069
6070
6071
6072
6073
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-color: #000000;
  border-width: 5px 5px 0;
6074
6075
}

6076
6077
6078
6079
6080
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-top-color: #000000;
  border-width: 5px 5px 0;
6081
6082
}

6083
6084
6085
6086
6087
.tooltip.top-right .tooltip-arrow {
  right: 5px;
  bottom: 0;
  border-top-color: #000000;
  border-width: 5px 5px 0;
6088
6089
}

6090
6091
6092
6093
6094
6095
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-right-color: #000000;
  border-width: 5px 5px 5px 0;
6096
6097
}

6098
6099
6100
6101
6102
6103
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-left-color: #000000;
  border-width: 5px 0 5px 5px;
Mark Otto's avatar
Mark Otto committed
6104
6105
}

6106
6107
6108
6109
6110
6111
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #000000;
  border-width: 0 5px 5px;
Mark Otto's avatar
Mark Otto committed
6112
6113
}

6114
6115
6116
6117
6118
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-bottom-color: #000000;
  border-width: 0 5px 5px;
Mark Otto's avatar
Mark Otto committed
6119
6120
}

6121
6122
6123
6124
6125
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-bottom-color: #000000;
  border-width: 0 5px 5px;
Mark Otto's avatar
Mark Otto committed
6126
6127
}

6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  white-space: normal;
6138
  background-color: #ffffff;
6139
6140
6141
6142
6143
6144
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
Mark Otto's avatar
Mark Otto committed
6145
6146
}

6147
6148
.popover.top {
  margin-top: -10px;
Mark Otto's avatar
Mark Otto committed
6149
6150
}

6151
6152
.popover.right {
  margin-left: 10px;
Mark Otto's avatar
Mark Otto committed
6153
6154
}

6155
6156
.popover.bottom {
  margin-top: 10px;
Mark Otto's avatar
Mark Otto committed
6157
6158
}

6159
6160
.popover.left {
  margin-left: -10px;
Mark Otto's avatar
Mark Otto committed
6161
6162
}

6163
6164
6165
6166
6167
6168
6169
6170
6171
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
Mark Otto's avatar
Mark Otto committed
6172
6173
}

6174
6175
.popover-content {
  padding: 9px 14px;
Mark Otto's avatar
Mark Otto committed
6176
6177
}

6178
6179
6180
6181
.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
Mark Otto's avatar
Mark Otto committed
6182
  width: 0;
6183
6184
6185
  height: 0;
  border-color: transparent;
  border-style: solid;
Mark Otto's avatar
Mark Otto committed
6186
6187
}

6188
6189
.popover .arrow {
  border-width: 11px;
Mark Otto's avatar
Mark Otto committed
6190
6191
}

6192
6193
6194
.popover .arrow:after {
  border-width: 10px;
  content: "";
Mark Otto's avatar
Mark Otto committed
6195
6196
}

6197
6198
6199
6200
6201
6202
6203
.popover.top .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
Mark Otto's avatar
Mark Otto committed
6204
6205
}

6206
6207
6208
6209
6210
6211
.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6212
6213
}

6214
6215
6216
6217
6218
6219
6220
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
Mark Otto's avatar
Mark Otto committed
6221
6222
}

6223
6224
6225
6226
6227
6228
.popover.right .arrow:after {
  bottom: -10px;
  left: 1px;
  border-right-color: #ffffff;
  border-left-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6229
6230
}

6231
6232
6233
6234
6235
6236
6237
.popover.bottom .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-top-width: 0;
Mark Otto's avatar
Mark Otto committed
6238
6239
}

6240
6241
6242
6243
6244
6245
.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6246
6247
}

6248
6249
6250
6251
6252
6253
6254
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
  border-right-width: 0;
Mark Otto's avatar
Mark Otto committed
6255
6256
}

6257
6258
6259
6260
6261
6262
.popover.left .arrow:after {
  right: 1px;
  bottom: -10px;
  border-left-color: #ffffff;
  border-right-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
          transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
6284
  display: block;
Mark Otto's avatar
Mark Otto committed
6285
6286
  height: auto;
  max-width: 100%;
Mark Otto's avatar
Mark Otto committed
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
  line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
6333
6334
  width: 15%;
  font-size: 20px;
Mark Otto's avatar
Mark Otto committed
6335
  color: #ffffff;
6336
6337
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
Mark Otto's avatar
Mark Otto committed
6338
6339
6340
6341
6342
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.carousel-control.left {
Mark Otto's avatar
Mark Otto committed
6343
6344
6345
6346
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
Mark Otto's avatar
Mark Otto committed
6347
  background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
6348
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
Mark Otto's avatar
Mark Otto committed
6349
6350
6351
6352
6353
}

.carousel-control.right {
  right: 0;
  left: auto;
Mark Otto's avatar
Mark Otto committed
6354
6355
6356
6357
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
Mark Otto's avatar
Mark Otto committed
6358
  background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
6359
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
Mark Otto's avatar
Mark Otto committed
6360
6361
6362
6363
}

.carousel-control:hover,
.carousel-control:focus {
Mark Otto's avatar
Mark Otto committed
6364
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
6365
6366
6367
6368
6369
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

6370
.carousel-control .icon-prev,
6371
6372
6373
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
Mark Otto's avatar
Mark Otto committed
6374
6375
6376
  position: absolute;
  top: 50%;
  z-index: 5;
Mark Otto's avatar
Mark Otto committed
6377
  display: inline-block;
6378
6379
}

6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
}

6390
6391
.carousel-control .icon-prev,
.carousel-control .icon-next {
Mark Otto's avatar
Mark Otto committed
6392
6393
6394
  width: 20px;
  height: 20px;
  margin-top: -10px;
6395
  margin-left: -10px;
fat's avatar
fat committed
6396
  font-family: serif;
Mark Otto's avatar
Mark Otto committed
6397
6398
}

6399
.carousel-control .icon-prev:before {
Mark Otto's avatar
Mark Otto committed
6400
  content: '\2039';
6401
6402
6403
}

.carousel-control .icon-next:before {
Mark Otto's avatar
Mark Otto committed
6404
  content: '\203a';
6405
6406
}

Mark Otto's avatar
Mark Otto committed
6407
6408
.carousel-indicators {
  position: absolute;
6409
  bottom: 10px;
Mark Otto's avatar
Mark Otto committed
6410
  left: 50%;
Mark Otto's avatar
Mark Otto committed
6411
  z-index: 15;
6412
  width: 60%;
Mark Otto's avatar
Mark Otto committed
6413
  padding-left: 0;
6414
  margin-left: -30%;
Mark Otto's avatar
Mark Otto committed
6415
  text-align: center;
Mark Otto's avatar
Mark Otto committed
6416
6417
6418
6419
  list-style: none;
}

.carousel-indicators li {
Mark Otto's avatar
Mark Otto committed
6420
  display: inline-block;
6421
6422
6423
  width: 10px;
  height: 10px;
  margin: 1px;
Mark Otto's avatar
Mark Otto committed
6424
6425
  text-indent: -999px;
  cursor: pointer;
6426
6427
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
Mark Otto's avatar
Mark Otto committed
6428
  border: 1px solid #ffffff;
6429
  border-radius: 10px;
Mark Otto's avatar
Mark Otto committed
6430
6431
6432
}

.carousel-indicators .active {
6433
6434
6435
  width: 12px;
  height: 12px;
  margin: 0;
Mark Otto's avatar
Mark Otto committed
6436
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
6437
6438
}

6439
6440
.carousel-caption {
  position: absolute;
6441
  right: 15%;
6442
  bottom: 20px;
6443
6444
  left: 15%;
  z-index: 10;
6445
6446
  padding-top: 20px;
  padding-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
6447
  color: #ffffff;
6448
  text-align: center;
6449
6450
6451
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

Mark Otto's avatar
Mark Otto committed
6452
6453
6454
6455
.carousel-caption .btn {
  text-shadow: none;
}

Mark Otto's avatar
Mark Otto committed
6456
@media screen and (min-width: 768px) {
6457
  .carousel-control .glyphicons-chevron-left,
Chris Rebert's avatar
Chris Rebert committed
6458
6459
  .carousel-control .glyphicons-chevron-right,
  .carousel-control .icon-prev,
6460
  .carousel-control .icon-next {
Mark Otto's avatar
Mark Otto committed
6461
6462
6463
    width: 30px;
    height: 30px;
    margin-top: -15px;
6464
    margin-left: -15px;
Mark Otto's avatar
Mark Otto committed
6465
6466
    font-size: 30px;
  }
6467
  .carousel-caption {
6468
6469
    right: 20%;
    left: 20%;
6470
    padding-bottom: 30px;
Mark Otto's avatar
Mark Otto committed
6471
  }
6472
6473
6474
  .carousel-indicators {
    bottom: 20px;
  }
Mark Otto's avatar
Mark Otto committed
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

6487
6488
6489
6490
6491
6492
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

Mark Otto's avatar
Mark Otto committed
6493
.pull-right {
liuyl's avatar
liuyl committed
6494
  float: right !important;
Mark Otto's avatar
Mark Otto committed
6495
6496
6497
}

.pull-left {
liuyl's avatar
liuyl committed
6498
  float: left !important;
Mark Otto's avatar
Mark Otto committed
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
6522
6523
  display: none !important;
  visibility: hidden !important;
Mark Otto's avatar
Mark Otto committed
6524
6525
6526
6527
6528
6529
6530
6531
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
6532
6533
}

Mark Otto's avatar
Mark Otto committed
6534
6535
.visible-xs,
tr.visible-xs,
6536
6537
th.visible-xs,
td.visible-xs {
6538
  display: none !important;
6539
6540
}

6541
@media (max-width: 767px) {
6542
  .visible-xs {
6543
    display: block !important;
6544
6545
  }
  tr.visible-xs {
6546
    display: table-row !important;
6547
6548
6549
  }
  th.visible-xs,
  td.visible-xs {
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
6564
6565
6566
6567
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
6568
6569
  .visible-xs.visible-md {
    display: block !important;
6570
  }
6571
6572
  tr.visible-xs.visible-md {
    display: table-row !important;
6573
  }
6574
6575
6576
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
6577
6578
6579
6580
  }
}

@media (min-width: 1200px) {
6581
6582
  .visible-xs.visible-lg {
    display: block !important;
6583
  }
6584
6585
  tr.visible-xs.visible-lg {
    display: table-row !important;
6586
  }
6587
6588
6589
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
6590
6591
6592
  }
}

Mark Otto's avatar
Mark Otto committed
6593
6594
.visible-sm,
tr.visible-sm,
6595
6596
th.visible-sm,
td.visible-sm {
6597
  display: none !important;
6598
6599
}

6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}

fat's avatar
fat committed
6613
@media (min-width: 768px) and (max-width: 991px) {
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
  .visible-sm {
    display: block !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
6627
6628
  .visible-sm.visible-md {
    display: block !important;
fat's avatar
fat committed
6629
  }
6630
6631
  tr.visible-sm.visible-md {
    display: table-row !important;
fat's avatar
fat committed
6632
  }
6633
6634
6635
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
fat's avatar
fat committed
6636
6637
6638
  }
}

6639
@media (min-width: 1200px) {
6640
6641
  .visible-sm.visible-lg {
    display: block !important;
fat's avatar
fat committed
6642
  }
6643
6644
  tr.visible-sm.visible-lg {
    display: table-row !important;
fat's avatar
fat committed
6645
  }
6646
6647
6648
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
fat's avatar
fat committed
6649
6650
6651
  }
}

Mark Otto's avatar
Mark Otto committed
6652
6653
.visible-md,
tr.visible-md,
6654
6655
6656
6657
6658
th.visible-md,
td.visible-md {
  display: none !important;
}

6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}

fat's avatar
fat committed
6672
@media (min-width: 768px) and (max-width: 991px) {
6673
6674
  .visible-md.visible-sm {
    display: block !important;
6675
  }
6676
6677
  tr.visible-md.visible-sm {
    display: table-row !important;
6678
  }
6679
6680
6681
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
6682
6683
6684
6685
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
fat's avatar
fat committed
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
  .visible-md {
    display: block !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

6698
@media (min-width: 1200px) {
6699
6700
  .visible-md.visible-lg {
    display: block !important;
fat's avatar
fat committed
6701
  }
6702
6703
  tr.visible-md.visible-lg {
    display: table-row !important;
fat's avatar
fat committed
6704
  }
6705
6706
6707
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
fat's avatar
fat committed
6708
6709
6710
  }
}

Mark Otto's avatar
Mark Otto committed
6711
6712
.visible-lg,
tr.visible-lg,
6713
6714
6715
6716
6717
th.visible-lg,
td.visible-lg {
  display: none !important;
}

6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}

fat's avatar
fat committed
6731
@media (min-width: 768px) and (max-width: 991px) {
6732
6733
  .visible-lg.visible-sm {
    display: block !important;
fat's avatar
fat committed
6734
  }
6735
6736
  tr.visible-lg.visible-sm {
    display: table-row !important;
fat's avatar
fat committed
6737
  }
6738
6739
6740
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
fat's avatar
fat committed
6741
6742
6743
  }
}

6744
@media (min-width: 992px) and (max-width: 1199px) {
6745
6746
  .visible-lg.visible-md {
    display: block !important;
6747
  }
6748
6749
  tr.visible-lg.visible-md {
    display: table-row !important;
6750
  }
6751
6752
6753
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
6754
6755
6756
6757
  }
}

@media (min-width: 1200px) {
fat's avatar
fat committed
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
  .visible-lg {
    display: block !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

6770
.hidden-xs {
6771
  display: block !important;
6772
6773
}

6774
tr.hidden-xs {
6775
  display: table-row !important;
6776
6777
}

6778
6779
th.hidden-xs,
td.hidden-xs {
6780
  display: table-cell !important;
6781
6782
}

6783
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6784
6785
  .hidden-xs,
  tr.hidden-xs,
6786
6787
  th.hidden-xs,
  td.hidden-xs {
6788
6789
6790
6791
6792
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6793
6794
  .hidden-xs.hidden-sm,
  tr.hidden-xs.hidden-sm,
6795
6796
6797
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
6798
6799
6800
6801
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6802
6803
  .hidden-xs.hidden-md,
  tr.hidden-xs.hidden-md,
6804
6805
6806
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
6807
6808
6809
6810
  }
}

@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6811
6812
  .hidden-xs.hidden-lg,
  tr.hidden-xs.hidden-lg,
6813
6814
6815
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
  }
}

.hidden-sm {
  display: block !important;
}

tr.hidden-sm {
  display: table-row !important;
}

6827
6828
th.hidden-sm,
td.hidden-sm {
6829
  display: table-cell !important;
6830
6831
}

6832
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6833
6834
  .hidden-sm.hidden-xs,
  tr.hidden-sm.hidden-xs,
6835
6836
6837
6838
6839
6840
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}

6841
@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6842
6843
  .hidden-sm,
  tr.hidden-sm,
6844
6845
6846
6847
6848
6849
6850
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6851
6852
  .hidden-sm.hidden-md,
  tr.hidden-sm.hidden-md,
6853
6854
6855
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
6856
  }
fat's avatar
fat committed
6857
6858
}

6859
@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6860
6861
  .hidden-sm.hidden-lg,
  tr.hidden-sm.hidden-lg,
6862
6863
6864
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
6865
  }
fat's avatar
fat committed
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
}

.hidden-md {
  display: block !important;
}

tr.hidden-md {
  display: table-row !important;
}

th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}

6881
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6882
6883
  .hidden-md.hidden-xs,
  tr.hidden-md.hidden-xs,
6884
6885
6886
6887
6888
6889
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}

fat's avatar
fat committed
6890
@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6891
6892
  .hidden-md.hidden-sm,
  tr.hidden-md.hidden-sm,
6893
6894
6895
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
6896
6897
6898
6899
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6900
6901
  .hidden-md,
  tr.hidden-md,
6902
6903
6904
6905
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
6906
6907
}

6908
@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6909
6910
  .hidden-md.hidden-lg,
  tr.hidden-md.hidden-lg,
6911
6912
6913
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
6914
  }
fat's avatar
fat committed
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
}

.hidden-lg {
  display: block !important;
}

tr.hidden-lg {
  display: table-row !important;
}

th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}

6930
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6931
6932
  .hidden-lg.hidden-xs,
  tr.hidden-lg.hidden-xs,
6933
6934
6935
6936
6937
6938
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}

fat's avatar
fat committed
6939
@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6940
6941
  .hidden-lg.hidden-sm,
  tr.hidden-lg.hidden-sm,
6942
6943
6944
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
6945
  }
fat's avatar
fat committed
6946
6947
}

6948
@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6949
6950
  .hidden-lg.hidden-md,
  tr.hidden-lg.hidden-md,
6951
6952
6953
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
6954
6955
6956
6957
  }
}

@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6958
6959
  .hidden-lg,
  tr.hidden-lg,
6960
6961
6962
6963
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
Mark Otto's avatar
Mark Otto committed
6964
6965
}

Mark Otto's avatar
Mark Otto committed
6966
6967
.visible-print,
tr.visible-print,
6968
6969
6970
6971
th.visible-print,
td.visible-print {
  display: none !important;
}
Mark Otto's avatar
Mark Otto committed
6972
6973
6974

@media print {
  .visible-print {
6975
    display: block !important;
Mark Otto's avatar
Mark Otto committed
6976
  }
6977
6978
6979
6980
6981
6982
6983
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
Mark Otto's avatar
Mark Otto committed
6984
6985
  .hidden-print,
  tr.hidden-print,
6986
6987
6988
6989
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
6990
}