bootstrap.css 80.6 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
@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  {
Mark Otto's avatar
Mark Otto committed
254
    margin: 2cm .5cm;
255
256
257
258
259
260
261
262
263
264
265
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
Mark Otto's avatar
Mark Otto committed
266
  .navbar {
267
268
    display: none;
  }
269
270
271
272
273
274
275
276
277
278
279
  .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
280
281
282
283
284
285
286
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
287
288
}

Mark Otto's avatar
Mark Otto committed
289
290
291
292
293
294
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

Mark Otto's avatar
Mark Otto committed
295
296
297
298
299
300
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
Mark Otto's avatar
Mark Otto committed
301
302
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
303
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
304
305
306
307
308
309
310
311
  color: #333333;
  background-color: #ffffff;
}

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

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 {
Mark Otto's avatar
Mark Otto committed
335
336
337
338
  vertical-align: middle;
}

.img-responsive {
339
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
340
341
342
343
344
345
346
347
348
349
350
351
  height: auto;
  max-width: 100%;
}

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

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

352
353
354
355
356
357
358
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

Mark Otto's avatar
Mark Otto committed
359
p {
Mark Otto's avatar
Mark Otto committed
360
  margin: 0 0 10px;
Mark Otto's avatar
Mark Otto committed
361
362
363
}

.lead {
Mark Otto's avatar
Mark Otto committed
364
  margin-bottom: 20px;
365
  font-size: 16.099999999999998px;
Mark Otto's avatar
Mark Otto committed
366
  font-weight: 200;
367
  line-height: 1.4;
Mark Otto's avatar
Mark Otto committed
368
369
}

370
371
372
373
374
375
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

Mark Otto's avatar
Mark Otto committed
376
377
378
379
380
381
382
383
small {
  font-size: 85%;
}

cite {
  font-style: normal;
}

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

388
389
.text-primary {
  color: #428bca;
Mark Otto's avatar
Mark Otto committed
390
391
392
393
394
395
}

.text-warning {
  color: #c09853;
}

396
.text-danger {
Mark Otto's avatar
Mark Otto committed
397
398
399
400
401
402
403
  color: #b94a48;
}

.text-success {
  color: #468847;
}

404
405
.text-info {
  color: #3a87ad;
Mark Otto's avatar
Mark Otto committed
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
}

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

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

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

h1,
h2,
h3,
h4,
h5,
425
426
427
428
429
430
431
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
Mark Otto's avatar
Mark Otto committed
432
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
Mark Otto's avatar
Mark Otto committed
433
  font-weight: 500;
Mark Otto's avatar
Mark Otto committed
434
  line-height: 1.1;
Mark Otto's avatar
Mark Otto committed
435
436
437
438
439
440
441
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
442
443
444
445
446
447
448
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
Mark Otto's avatar
Mark Otto committed
449
450
451
452
453
454
455
456
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
h2,
h3 {
Mark Otto's avatar
Mark Otto committed
457
458
  margin-top: 20px;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
459
460
461
462
463
}

h4,
h5,
h6 {
Mark Otto's avatar
Mark Otto committed
464
465
  margin-top: 10px;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
466
467
}

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

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

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

483
484
h4,
.h4 {
Mark Otto's avatar
Mark Otto committed
485
  font-size: 18px;
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: 12px;
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: 24px;
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: 18px;
Mark Otto's avatar
Mark Otto committed
506
507
}

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

.page-header {
Mark Otto's avatar
Mark Otto committed
516
517
  padding-bottom: 9px;
  margin: 40px 0 20px;
Mark Otto's avatar
Mark Otto committed
518
519
520
521
522
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
Mark Otto's avatar
Mark Otto committed
523
524
  margin-top: 0;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
525
526
527
}

ul ul,
liuyl's avatar
liuyl committed
528
ol ul,
Mark Otto's avatar
Mark Otto committed
529
ul ol,
liuyl's avatar
liuyl committed
530
ol ol {
Mark Otto's avatar
Mark Otto committed
531
532
533
  margin-bottom: 0;
}

534
.list-unstyled {
535
  padding-left: 0;
536
537
538
  list-style: none;
}

Mark Otto's avatar
Mark Otto committed
539
.list-inline {
540
  padding-left: 0;
Mark Otto's avatar
Mark Otto committed
541
542
543
544
545
546
547
548
549
550
  list-style: none;
}

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

dl {
Mark Otto's avatar
Mark Otto committed
551
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
552
553
554
555
}

dt,
dd {
556
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
557
558
559
560
561
562
563
}

dt {
  font-weight: bold;
}

dd {
564
  margin-left: 0;
Mark Otto's avatar
Mark Otto committed
565
566
}

567
568
569
570
571
572
573
574
.dl-horizontal dt {
  float: left;
  width: 160px;
  overflow: hidden;
  clear: left;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
Mark Otto's avatar
Mark Otto committed
575
576
}

577
578
.dl-horizontal dd {
  margin-left: 180px;
Mark Otto's avatar
Mark Otto committed
579
580
}

581
582
.dl-horizontal dd:before,
.dl-horizontal dd:after {
583
584
585
586
  display: table;
  content: " ";
}

587
.dl-horizontal dd:after {
588
589
590
  clear: both;
}

591
592
593
594
.dl-horizontal dd:before,
.dl-horizontal dd:after {
  display: table;
  content: " ";
Mark Otto's avatar
Mark Otto committed
595
596
}

597
598
.dl-horizontal dd:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
599
600
601
602
603
604
605
606
607
608
609
610
611
612
}

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
613
614
  padding: 10px 20px;
  margin: 0 0 20px;
Mark Otto's avatar
Mark Otto committed
615
616
617
618
  border-left: 5px solid #eeeeee;
}

blockquote p {
Mark Otto's avatar
Mark Otto committed
619
  font-size: 17.5px;
Mark Otto's avatar
Mark Otto committed
620
621
622
623
  font-weight: 300;
  line-height: 1.25;
}

624
625
626
627
blockquote p:last-child {
  margin-bottom: 0;
}

Mark Otto's avatar
Mark Otto committed
628
629
blockquote small {
  display: block;
630
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
631
632
633
634
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
666
667
  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;
Mark Otto's avatar
Mark Otto committed
668
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
669
  font-style: normal;
670
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
671
672
673
674
675
676
677
678
679
680
681
682
683
}

code,
pre {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  white-space: nowrap;
  background-color: #f9f2f4;
684
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
685
686
687
688
}

pre {
  display: block;
Mark Otto's avatar
Mark Otto committed
689
690
  padding: 9.5px;
  margin: 0 0 10px;
Mark Otto's avatar
Mark Otto committed
691
  font-size: 13px;
692
  line-height: 1.428571429;
693
  color: #333333;
Mark Otto's avatar
Mark Otto committed
694
695
696
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
697
  border: 1px solid #cccccc;
Mark Otto's avatar
Mark Otto committed
698
699
700
701
  border-radius: 4px;
}

pre.prettyprint {
Mark Otto's avatar
Mark Otto committed
702
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
703
704
705
706
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
}

pre code {
  padding: 0;
  color: inherit;
  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;
}

733
734
735
736
737
738
739
740
741
742
.container:before,
.container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
743
744
745
746
747
748
749
750
751
752
.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

753
754
755
756
757
758
759
760
761
762
.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

Mark Otto's avatar
Mark Otto committed
763
764
765
766
767
768
769
@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

770
771
772
773
774
.row .row {
  margin-right: -15px;
  margin-left: -15px;
}

Mark Otto's avatar
Mark Otto committed
775
776
777
778
779
780
781
782
783
784
785
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
Mark Otto's avatar
Mark Otto committed
786
.col-12,
Mark Otto's avatar
Mark Otto committed
787
788
789
790
791
792
793
794
795
796
797
798
.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,
.col-sm-11,
.col-sm-12,
Mark Otto's avatar
Mark Otto committed
799
800
801
802
803
804
805
806
807
808
.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,
Mark Otto's avatar
Mark Otto committed
809
810
.col-lg-11,
.col-lg-12 {
811
  position: relative;
Mark Otto's avatar
Mark Otto committed
812
  min-height: 1px;
813
814
  padding-right: 15px;
  padding-left: 15px;
Mark Otto's avatar
Mark Otto committed
815
816
}

Mark Otto's avatar
Mark Otto committed
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  float: left;
}

Mark Otto's avatar
Mark Otto committed
832
.col-1 {
833
  width: 8.333333333333332%;
834
835
}

Mark Otto's avatar
Mark Otto committed
836
.col-2 {
837
  width: 16.666666666666664%;
838
839
}

Mark Otto's avatar
Mark Otto committed
840
.col-3 {
841
  width: 25%;
842
843
}

Mark Otto's avatar
Mark Otto committed
844
.col-4 {
845
  width: 33.33333333333333%;
846
847
}

Mark Otto's avatar
Mark Otto committed
848
.col-5 {
849
  width: 41.66666666666667%;
850
851
}

Mark Otto's avatar
Mark Otto committed
852
.col-6 {
853
  width: 50%;
854
855
}

Mark Otto's avatar
Mark Otto committed
856
.col-7 {
857
  width: 58.333333333333336%;
858
859
}

Mark Otto's avatar
Mark Otto committed
860
.col-8 {
861
  width: 66.66666666666666%;
862
863
}

Mark Otto's avatar
Mark Otto committed
864
.col-9 {
865
  width: 75%;
866
867
}

Mark Otto's avatar
Mark Otto committed
868
.col-10 {
869
  width: 83.33333333333334%;
870
871
}

Mark Otto's avatar
Mark Otto committed
872
.col-11 {
873
  width: 91.66666666666666%;
874
875
}

Mark Otto's avatar
Mark Otto committed
876
877
878
879
.col-12 {
  width: 100%;
}

Mark Otto's avatar
Mark Otto committed
880
@media (min-width: 768px) {
Mark Otto's avatar
Mark Otto committed
881
882
883
  .container {
    max-width: 728px;
  }
Mark Otto's avatar
Mark Otto committed
884
885
886
887
888
889
890
891
892
893
894
895
896
897
  .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,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
Mark Otto's avatar
Mark Otto committed
898
  .col-sm-1 {
899
    width: 8.333333333333332%;
Mark Otto's avatar
Mark Otto committed
900
  }
Mark Otto's avatar
Mark Otto committed
901
  .col-sm-2 {
902
    width: 16.666666666666664%;
Mark Otto's avatar
Mark Otto committed
903
  }
Mark Otto's avatar
Mark Otto committed
904
  .col-sm-3 {
905
    width: 25%;
Mark Otto's avatar
Mark Otto committed
906
  }
Mark Otto's avatar
Mark Otto committed
907
  .col-sm-4 {
908
    width: 33.33333333333333%;
Mark Otto's avatar
Mark Otto committed
909
  }
Mark Otto's avatar
Mark Otto committed
910
  .col-sm-5 {
911
    width: 41.66666666666667%;
Mark Otto's avatar
Mark Otto committed
912
  }
Mark Otto's avatar
Mark Otto committed
913
  .col-sm-6 {
914
    width: 50%;
Mark Otto's avatar
Mark Otto committed
915
  }
Mark Otto's avatar
Mark Otto committed
916
  .col-sm-7 {
917
    width: 58.333333333333336%;
Mark Otto's avatar
Mark Otto committed
918
  }
Mark Otto's avatar
Mark Otto committed
919
  .col-sm-8 {
920
    width: 66.66666666666666%;
Mark Otto's avatar
Mark Otto committed
921
  }
Mark Otto's avatar
Mark Otto committed
922
  .col-sm-9 {
923
    width: 75%;
Mark Otto's avatar
Mark Otto committed
924
  }
Mark Otto's avatar
Mark Otto committed
925
  .col-sm-10 {
926
    width: 83.33333333333334%;
Mark Otto's avatar
Mark Otto committed
927
  }
Mark Otto's avatar
Mark Otto committed
928
  .col-sm-11 {
929
    width: 91.66666666666666%;
Mark Otto's avatar
Mark Otto committed
930
  }
Mark Otto's avatar
Mark Otto committed
931
  .col-sm-12 {
Mark Otto's avatar
Mark Otto committed
932
933
    width: 100%;
  }
Mark Otto's avatar
Mark Otto committed
934
935
936
937
938
  .col-push-1 {
    left: 8.333333333333332%;
  }
  .col-push-2 {
    left: 16.666666666666664%;
939
  }
Mark Otto's avatar
Mark Otto committed
940
  .col-push-3 {
941
942
    left: 25%;
  }
Mark Otto's avatar
Mark Otto committed
943
944
  .col-push-4 {
    left: 33.33333333333333%;
945
  }
Mark Otto's avatar
Mark Otto committed
946
947
  .col-push-5 {
    left: 41.66666666666667%;
948
  }
Mark Otto's avatar
Mark Otto committed
949
950
  .col-push-6 {
    left: 50%;
951
  }
Mark Otto's avatar
Mark Otto committed
952
953
  .col-push-7 {
    left: 58.333333333333336%;
954
  }
Mark Otto's avatar
Mark Otto committed
955
956
  .col-push-8 {
    left: 66.66666666666666%;
957
  }
Mark Otto's avatar
Mark Otto committed
958
959
  .col-push-9 {
    left: 75%;
960
  }
Mark Otto's avatar
Mark Otto committed
961
962
  .col-push-10 {
    left: 83.33333333333334%;
963
  }
Mark Otto's avatar
Mark Otto committed
964
965
  .col-push-11 {
    left: 91.66666666666666%;
966
  }
Mark Otto's avatar
Mark Otto committed
967
968
  .col-pull-1 {
    right: 8.333333333333332%;
969
  }
Mark Otto's avatar
Mark Otto committed
970
971
972
973
974
  .col-pull-2 {
    right: 16.666666666666664%;
  }
  .col-pull-3 {
    right: 25%;
975
  }
Mark Otto's avatar
Mark Otto committed
976
  .col-pull-4 {
977
978
    right: 33.33333333333333%;
  }
Mark Otto's avatar
Mark Otto committed
979
980
  .col-pull-5 {
    right: 41.66666666666667%;
981
  }
Mark Otto's avatar
Mark Otto committed
982
983
  .col-pull-6 {
    right: 50%;
984
  }
Mark Otto's avatar
Mark Otto committed
985
986
987
988
989
990
991
992
993
994
995
996
997
998
  .col-pull-7 {
    right: 58.333333333333336%;
  }
  .col-pull-8 {
    right: 66.66666666666666%;
  }
  .col-pull-9 {
    right: 75%;
  }
  .col-pull-10 {
    right: 83.33333333333334%;
  }
  .col-pull-11 {
    right: 91.66666666666666%;
999
  }
Mark Otto's avatar
Mark Otto committed
1000
}
For faster browsing, not all history is shown. View entire blame