bootstrap.css 93.2 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
2
3
/*!
 * Bootstrap v3.0.0
 *
4
 * Copyright 2013 Twitter, Inc
Mark Otto's avatar
Mark Otto committed
5
6
7
8
9
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world by @mdo and @fat.
 */

/*! normalize.css v2.1.0 | MIT License | git.io/normalize */

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;
}

[hidden] {
  display: none;
}

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

body {
  margin: 0;
}

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;
}

216
217
218
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
256
257
258
259
260
261
262
263
264
265
@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) ")";
  }
  .ir a:after,
  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  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
266
267
268
  .navbar-toggle {
    display: none;
  }
269
270
}

Mark Otto's avatar
Mark Otto committed
271
272
273
274
275
276
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

Mark Otto's avatar
Mark Otto committed
277
278
279
280
281
282
283
284
285
286
287
288
289
290
html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (max-device-width: 480px) {
  html {
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
  }
}

body {
Mark Otto's avatar
Mark Otto committed
291
292
293
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
Mark Otto's avatar
Mark Otto committed
294
295
296
297
298
299
300
301
  color: #333333;
  background-color: #ffffff;
}

input,
button,
select,
textarea {
Mark Otto's avatar
Mark Otto committed
302
303
304
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
Mark Otto's avatar
Mark Otto committed
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
}

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

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

a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

img {
  width: auto\9;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.img-rounded {
  border-radius: 6px;
}

.img-circle {
  border-radius: 500px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
345
  font-size: 21px;
Mark Otto's avatar
Mark Otto committed
346
  font-weight: 200;
347
  line-height: 1.4;
Mark Otto's avatar
Mark Otto committed
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

cite {
  font-style: normal;
}

366
.text-muted {
Mark Otto's avatar
Mark Otto committed
367
368
369
  color: #999999;
}

370
371
a.text-muted:hover,
a.text-muted:focus {
Mark Otto's avatar
Mark Otto committed
372
373
374
375
376
377
378
379
380
381
382
383
  color: #808080;
}

.text-warning {
  color: #c09853;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #a47e3c;
}

384
.text-danger {
Mark Otto's avatar
Mark Otto committed
385
386
387
  color: #b94a48;
}

388
389
a.text-danger:hover,
a.text-danger:focus {
Mark Otto's avatar
Mark Otto committed
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
  color: #953b39;
}

.text-success {
  color: #468847;
}

a.text-success:hover,
a.text-success:focus {
  color: #356635;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
419
420
421
422
423
424
425
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
Mark Otto's avatar
Mark Otto committed
426
427
428
429
430
431
432
433
434
435
436
  font-family: inherit;
  font-weight: 500;
  line-height: 20px;
  text-rendering: optimizelegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
437
438
439
440
441
442
443
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
Mark Otto's avatar
Mark Otto committed
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 40px;
}

h3 {
  line-height: 30px;
}

h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

468
469
h1,
.h1 {
Mark Otto's avatar
Mark Otto committed
470
  font-size: 38.5px;
Mark Otto's avatar
Mark Otto committed
471
472
}

473
474
h2,
.h2 {
Mark Otto's avatar
Mark Otto committed
475
  font-size: 31.5px;
Mark Otto's avatar
Mark Otto committed
476
477
}

478
479
h3,
.h3 {
Mark Otto's avatar
Mark Otto committed
480
  font-size: 24.5px;
Mark Otto's avatar
Mark Otto committed
481
482
}

483
484
h4,
.h4 {
Mark Otto's avatar
Mark Otto committed
485
  font-size: 17.5px;
Mark Otto's avatar
Mark Otto committed
486
487
}

488
489
h5,
.h5 {
Mark Otto's avatar
Mark Otto committed
490
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
491
492
}

493
494
h6,
.h6 {
Mark Otto's avatar
Mark Otto committed
495
  font-size: 11.9px;
Mark Otto's avatar
Mark Otto committed
496
497
}

498
499
h1 small,
.h1 small {
Mark Otto's avatar
Mark Otto committed
500
  font-size: 24.5px;
Mark Otto's avatar
Mark Otto committed
501
502
}

503
504
h2 small,
.h2 small {
Mark Otto's avatar
Mark Otto committed
505
  font-size: 17.5px;
Mark Otto's avatar
Mark Otto committed
506
507
}

508
509
h3 small,
.h3 small {
Mark Otto's avatar
Mark Otto committed
510
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
511
512
}

513
514
h4 small,
.h4 small {
Mark Otto's avatar
Mark Otto committed
515
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  padding: 0;
  margin: 0 0 10px 25px;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

li {
  line-height: 20px;
}

541
542
543
544
545
.list-unstyled {
  margin-left: 0;
  list-style: none;
}

Mark Otto's avatar
Mark Otto committed
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
.list-inline {
  margin-left: 0;
  list-style: none;
}

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

dl {
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 10px;
}

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

.dl-horizontal:after {
  clear: both;
}

584
585
586
587
588
589
590
591
592
593
.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  content: " ";
}

.dl-horizontal:after {
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
.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;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #fff;
613
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
Mark Otto's avatar
Mark Otto committed
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
}

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

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

blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}

blockquote p {
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
635
  font-size: 17.5px;
Mark Otto's avatar
Mark Otto committed
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
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
  font-weight: 300;
  line-height: 1.25;
}

blockquote small {
  display: block;
  line-height: 20px;
  color: #999999;
}

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

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

blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}

blockquote.pull-right small:before {
  content: '';
}

blockquote.pull-right small:after {
  content: '\00A0 \2014';
}

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

address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}

code,
pre {
  padding: 0 3px 2px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
Mark Otto's avatar
Mark Otto committed
689
  font-size: 12px;
Mark Otto's avatar
Mark Otto committed
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
  color: #333333;
  border-radius: 4px;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  white-space: nowrap;
  background-color: #f9f2f4;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
Mark Otto's avatar
Mark Otto committed
706
  font-size: 13px;
Mark Otto's avatar
Mark Otto committed
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

pre.prettyprint {
  margin-bottom: 20px;
}

pre code {
  padding: 0;
  color: inherit;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}

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

.container {
  margin-right: auto;
  margin-left: auto;
}

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

.container:after {
  clear: both;
}

751
752
753
754
755
756
757
758
759
760
.container:before,
.container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
761
.row {
762
763
  margin-right: -15px;
  margin-left: -15px;
Mark Otto's avatar
Mark Otto committed
764
765
766
767
768
769
770
771
772
773
774
775
}

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

.row:after {
  clear: both;
}

776
777
778
779
780
781
782
783
784
785
.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
786
[class*="col-span-"] {
787
  position: relative;
Mark Otto's avatar
Mark Otto committed
788
  min-height: 1px;
789
790
  padding-right: 15px;
  padding-left: 15px;
Mark Otto's avatar
Mark Otto committed
791
792
793
794
}

@media screen and (min-width: 768px) {
  .container {
795
    max-width: 728px;
Mark Otto's avatar
Mark Otto committed
796
  }
Mark Otto's avatar
Mark Otto committed
797
  [class*="col-span-"] {
Mark Otto's avatar
Mark Otto committed
798
799
    float: left;
  }
Mark Otto's avatar
Mark Otto committed
800
  .col-span-12 {
Mark Otto's avatar
Mark Otto committed
801
802
    width: 100%;
  }
Mark Otto's avatar
Mark Otto committed
803
  .col-span-11 {
Mark Otto's avatar
Mark Otto committed
804
805
    width: 91.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
806
  .col-span-10 {
Mark Otto's avatar
Mark Otto committed
807
808
    width: 83.33333333333334%;
  }
Mark Otto's avatar
Mark Otto committed
809
  .col-span-9 {
Mark Otto's avatar
Mark Otto committed
810
811
    width: 75%;
  }
Mark Otto's avatar
Mark Otto committed
812
  .col-span-8 {
Mark Otto's avatar
Mark Otto committed
813
814
    width: 66.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
815
  .col-span-7 {
Mark Otto's avatar
Mark Otto committed
816
817
    width: 58.333333333333336%;
  }
Mark Otto's avatar
Mark Otto committed
818
  .col-span-6 {
Mark Otto's avatar
Mark Otto committed
819
820
    width: 50%;
  }
Mark Otto's avatar
Mark Otto committed
821
  .col-span-5 {
Mark Otto's avatar
Mark Otto committed
822
823
    width: 41.66666666666667%;
  }
Mark Otto's avatar
Mark Otto committed
824
  .col-span-4 {
Mark Otto's avatar
Mark Otto committed
825
826
    width: 33.33333333333333%;
  }
Mark Otto's avatar
Mark Otto committed
827
  .col-span-3 {
Mark Otto's avatar
Mark Otto committed
828
829
    width: 25%;
  }
Mark Otto's avatar
Mark Otto committed
830
  .col-span-2 {
Mark Otto's avatar
Mark Otto committed
831
832
    width: 16.666666666666664%;
  }
Mark Otto's avatar
Mark Otto committed
833
  .col-span-1 {
Mark Otto's avatar
Mark Otto committed
834
835
    width: 8.333333333333332%;
  }
Mark Otto's avatar
Mark Otto committed
836
  .col-offset-12 {
Mark Otto's avatar
Mark Otto committed
837
838
    margin-left: 100%;
  }
Mark Otto's avatar
Mark Otto committed
839
  .col-offset-11 {
Mark Otto's avatar
Mark Otto committed
840
841
    margin-left: 91.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
842
  .col-offset-10 {
Mark Otto's avatar
Mark Otto committed
843
844
    margin-left: 83.33333333333334%;
  }
Mark Otto's avatar
Mark Otto committed
845
  .col-offset-9 {
Mark Otto's avatar
Mark Otto committed
846
847
    margin-left: 75%;
  }
Mark Otto's avatar
Mark Otto committed
848
  .col-offset-8 {
Mark Otto's avatar
Mark Otto committed
849
850
    margin-left: 66.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
851
  .col-offset-7 {
Mark Otto's avatar
Mark Otto committed
852
853
    margin-left: 58.333333333333336%;
  }
Mark Otto's avatar
Mark Otto committed
854
  .col-offset-6 {
Mark Otto's avatar
Mark Otto committed
855
856
    margin-left: 50%;
  }
Mark Otto's avatar
Mark Otto committed
857
  .col-offset-5 {
Mark Otto's avatar
Mark Otto committed
858
859
    margin-left: 41.66666666666667%;
  }
Mark Otto's avatar
Mark Otto committed
860
  .col-offset-4 {
Mark Otto's avatar
Mark Otto committed
861
862
    margin-left: 33.33333333333333%;
  }
Mark Otto's avatar
Mark Otto committed
863
  .col-offset-3 {
Mark Otto's avatar
Mark Otto committed
864
865
    margin-left: 25%;
  }
Mark Otto's avatar
Mark Otto committed
866
  .col-offset-2 {
Mark Otto's avatar
Mark Otto committed
867
868
    margin-left: 16.666666666666664%;
  }
Mark Otto's avatar
Mark Otto committed
869
  .col-offset-1 {
Mark Otto's avatar
Mark Otto committed
870
871
    margin-left: 8.333333333333332%;
  }
Mark Otto's avatar
Mark Otto committed
872
  .col-push-12 {
873
874
    left: 100%;
  }
Mark Otto's avatar
Mark Otto committed
875
  .col-push-11 {
876
877
    left: 91.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
878
  .col-push-10 {
879
880
    left: 83.33333333333334%;
  }
Mark Otto's avatar
Mark Otto committed
881
  .col-push-9 {
882
883
    left: 75%;
  }
Mark Otto's avatar
Mark Otto committed
884
  .col-push-8 {
885
886
    left: 66.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
887
  .col-push-7 {
888
889
    left: 58.333333333333336%;
  }
Mark Otto's avatar
Mark Otto committed
890
  .col-push-6 {
891
892
    left: 50%;
  }
Mark Otto's avatar
Mark Otto committed
893
  .col-push-5 {
894
895
    left: 41.66666666666667%;
  }
Mark Otto's avatar
Mark Otto committed
896
  .col-push-4 {
897
898
    left: 33.33333333333333%;
  }
Mark Otto's avatar
Mark Otto committed
899
  .col-push-3 {
900
901
    left: 25%;
  }
Mark Otto's avatar
Mark Otto committed
902
  .col-push-2 {
903
904
    left: 16.666666666666664%;
  }
Mark Otto's avatar
Mark Otto committed
905
  .col-push-1 {
906
907
    left: 8.333333333333332%;
  }
Mark Otto's avatar
Mark Otto committed
908
  .col-pull-12 {
909
910
    right: 100%;
  }
Mark Otto's avatar
Mark Otto committed
911
  .col-pull-11 {
912
913
    right: 91.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
914
  .col-pull-10 {
915
916
    right: 83.33333333333334%;
  }
Mark Otto's avatar
Mark Otto committed
917
  .col-pull-9 {
918
919
    right: 75%;
  }
Mark Otto's avatar
Mark Otto committed
920
  .col-pull-8 {
921
922
    right: 66.66666666666666%;
  }
Mark Otto's avatar
Mark Otto committed
923
  .col-pull-7 {
924
925
    right: 58.333333333333336%;
  }
Mark Otto's avatar
Mark Otto committed
926
  .col-pull-6 {
927
928
    right: 50%;
  }
Mark Otto's avatar
Mark Otto committed
929
  .col-pull-5 {
930
931
    right: 41.66666666666667%;
  }
Mark Otto's avatar
Mark Otto committed
932
  .col-pull-4 {
933
934
    right: 33.33333333333333%;
  }
Mark Otto's avatar
Mark Otto committed
935
  .col-pull-3 {
936
937
    right: 25%;
  }
Mark Otto's avatar
Mark Otto committed
938
  .col-pull-2 {
939
940
    right: 16.666666666666664%;
  }
Mark Otto's avatar
Mark Otto committed
941
  .col-pull-1 {
942
943
    right: 8.333333333333332%;
  }
Mark Otto's avatar
Mark Otto committed
944
945
946
947
}

@media screen and (min-width: 992px) {
  .container {
948
    max-width: 940px;
Mark Otto's avatar
Mark Otto committed
949
950
951
952
953
  }
}

@media screen and (min-width: 1200px) {
  .container {
954
    max-width: 1170px;
Mark Otto's avatar
Mark Otto committed
955
956
957
  }
}

Mark Otto's avatar
Mark Otto committed
958
[class*="col-span-"].pull-right {
Mark Otto's avatar
Mark Otto committed
959
960
961
962
963
964
965
966
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
  float: right;
}

table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  margin-bottom: 20px;
}

.table th,
.table td {
  padding: 8px;
  line-height: 20px;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}

.table thead th {
  vertical-align: bottom;
}

.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}

.table tbody + tbody {
  border-top: 2px solid #dddddd;
For faster browsing, not all history is shown. View entire blame