bootstrap.css 120 KB
Newer Older
Chris Rebert's avatar
Chris Rebert committed
1
2
3
4
5
6
7
/*!
* Bootstrap v3.0.0 by @fat and @mdo
* Copyright 2013 Twitter, Inc.
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world by @mdo and @fat.
*/
XhmikosR's avatar
XhmikosR committed
8
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
Mark Otto's avatar
Mark Otto committed
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

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
36
37
[hidden],
template {
Mark Otto's avatar
Mark Otto committed
38
39
40
41
42
43
44
45
46
47
48
49
50
  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
51
52
53
54
a {
  background: transparent;
}

Mark Otto's avatar
Mark Otto committed
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
216
217
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;
}

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
@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
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;
  }
Mark Otto's avatar
Mark Otto committed
268
  .navbar {
269
270
    display: none;
  }
271
272
273
274
275
276
277
278
279
280
281
  .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
282
283
284
285
286
287
288
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
289
290
}

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

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

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

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

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
339
340
341
  vertical-align: middle;
}

342
343
344
345
346
347
.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

Mark Otto's avatar
Mark Otto committed
348
349
350
351
.img-rounded {
  border-radius: 6px;
}

352
353
354
355
356
357
358
359
360
361
362
363
364
.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
365
.img-circle {
Jacob Thornton's avatar
Jacob Thornton committed
366
  border-radius: 50%;
Mark Otto's avatar
Mark Otto committed
367
368
}

369
370
371
372
373
374
375
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

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

Mark Otto's avatar
Mark Otto committed
387
p {
Mark Otto's avatar
Mark Otto committed
388
  margin: 0 0 10px;
Mark Otto's avatar
Mark Otto committed
389
390
391
}

.lead {
Mark Otto's avatar
Mark Otto committed
392
  margin-bottom: 20px;
393
  font-size: 16.099999999999998px;
Mark Otto's avatar
Mark Otto committed
394
  font-weight: 200;
395
  line-height: 1.4;
Mark Otto's avatar
Mark Otto committed
396
397
}

398
399
400
401
402
403
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

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

cite {
  font-style: normal;
}

413
.text-muted {
Mark Otto's avatar
Mark Otto committed
414
415
416
  color: #999999;
}

417
418
.text-primary {
  color: #428bca;
Mark Otto's avatar
Mark Otto committed
419
420
}

421
422
423
424
.text-primary:hover {
  color: #3071a9;
}

Mark Otto's avatar
Mark Otto committed
425
426
427
428
.text-warning {
  color: #c09853;
}

429
430
431
432
.text-warning:hover {
  color: #a47e3c;
}

433
.text-danger {
Mark Otto's avatar
Mark Otto committed
434
435
436
  color: #b94a48;
}

437
438
439
440
.text-danger:hover {
  color: #953b39;
}

Mark Otto's avatar
Mark Otto committed
441
442
443
444
.text-success {
  color: #468847;
}

445
446
447
448
.text-success:hover {
  color: #356635;
}

449
450
.text-info {
  color: #3a87ad;
Mark Otto's avatar
Mark Otto committed
451
452
}

453
454
455
456
.text-info:hover {
  color: #2d6987;
}

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

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

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

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

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
492
493
494
495
496
497
498
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
Mark Otto's avatar
Mark Otto committed
499
500
501
502
503
504
505
506
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
h2,
h3 {
Mark Otto's avatar
Mark Otto committed
507
508
  margin-top: 20px;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
509
510
}

511
512
513
514
515
516
h1 small,
h2 small,
h3 small {
  font-size: 65%;
}

Mark Otto's avatar
Mark Otto committed
517
518
519
h4,
h5,
h6 {
Mark Otto's avatar
Mark Otto committed
520
521
  margin-top: 10px;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
522
523
}

524
525
526
527
528
529
h4 small,
h5 small,
h6 small {
  font-size: 75%;
}

530
531
h1,
.h1 {
Mark Otto's avatar
Mark Otto committed
532
  font-size: 36px;
Mark Otto's avatar
Mark Otto committed
533
534
}

535
536
h2,
.h2 {
Mark Otto's avatar
Mark Otto committed
537
  font-size: 30px;
Mark Otto's avatar
Mark Otto committed
538
539
}

540
541
h3,
.h3 {
Mark Otto's avatar
Mark Otto committed
542
  font-size: 24px;
Mark Otto's avatar
Mark Otto committed
543
544
}

545
546
h4,
.h4 {
Mark Otto's avatar
Mark Otto committed
547
  font-size: 18px;
Mark Otto's avatar
Mark Otto committed
548
549
}

550
551
h5,
.h5 {
Mark Otto's avatar
Mark Otto committed
552
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
553
554
}

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

.page-header {
Mark Otto's avatar
Mark Otto committed
561
562
  padding-bottom: 9px;
  margin: 40px 0 20px;
Mark Otto's avatar
Mark Otto committed
563
564
565
566
567
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
Mark Otto's avatar
Mark Otto committed
568
569
  margin-top: 0;
  margin-bottom: 10px;
Mark Otto's avatar
Mark Otto committed
570
571
572
}

ul ul,
liuyl's avatar
liuyl committed
573
ol ul,
Mark Otto's avatar
Mark Otto committed
574
ul ol,
liuyl's avatar
liuyl committed
575
ol ol {
Mark Otto's avatar
Mark Otto committed
576
577
578
  margin-bottom: 0;
}

579
.list-unstyled {
580
  padding-left: 0;
581
582
583
  list-style: none;
}

Mark Otto's avatar
Mark Otto committed
584
.list-inline {
585
  padding-left: 0;
Mark Otto's avatar
Mark Otto committed
586
587
588
589
590
591
592
593
594
595
  list-style: none;
}

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

dl {
Mark Otto's avatar
Mark Otto committed
596
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
597
598
599
600
}

dt,
dd {
601
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
602
603
604
605
606
607
608
}

dt {
  font-weight: bold;
}

dd {
609
  margin-left: 0;
Mark Otto's avatar
Mark Otto committed
610
611
}

612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
@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
641
642
643
644
645
646
647
648
649
650
651
652
653
654
}

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
655
656
  padding: 10px 20px;
  margin: 0 0 20px;
Mark Otto's avatar
Mark Otto committed
657
658
659
660
  border-left: 5px solid #eeeeee;
}

blockquote p {
Mark Otto's avatar
Mark Otto committed
661
  font-size: 17.5px;
Mark Otto's avatar
Mark Otto committed
662
663
664
665
  font-weight: 300;
  line-height: 1.25;
}

666
667
668
669
blockquote p:last-child {
  margin-bottom: 0;
}

Mark Otto's avatar
Mark Otto committed
670
671
blockquote small {
  display: block;
672
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
  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,
blockquote.pull-right small {
  text-align: right;
}

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

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

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

address {
Mark Otto's avatar
Mark Otto committed
706
  margin-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
707
  font-style: normal;
708
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
709
710
711
}

code,
712
713
714
kdb,
pre,
samp {
Mark Otto's avatar
Mark Otto committed
715
716
717
718
719
720
721
722
723
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  white-space: nowrap;
  background-color: #f9f2f4;
724
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
725
726
727
728
}

pre {
  display: block;
Mark Otto's avatar
Mark Otto committed
729
730
  padding: 9.5px;
  margin: 0 0 10px;
Mark Otto's avatar
Mark Otto committed
731
  font-size: 13px;
732
  line-height: 1.428571429;
733
  color: #333333;
Mark Otto's avatar
Mark Otto committed
734
735
736
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
737
  border: 1px solid #cccccc;
Mark Otto's avatar
Mark Otto committed
738
739
740
741
742
  border-radius: 4px;
}

pre code {
  padding: 0;
743
  font-size: inherit;
Mark Otto's avatar
Mark Otto committed
744
745
746
747
748
749
750
751
752
753
754
755
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}

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

.container {
756
757
  padding-right: 15px;
  padding-left: 15px;
Mark Otto's avatar
Mark Otto committed
758
759
760
761
762
763
764
765
766
767
768
769
770
771
  margin-right: auto;
  margin-left: auto;
}

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

.container:after {
  clear: both;
}

772
773
774
775
776
777
778
779
780
781
.container:before,
.container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

782
783
784
785
786
.row {
  margin-right: -15px;
  margin-left: -15px;
}

Mark Otto's avatar
Mark Otto committed
787
788
789
790
791
792
793
794
795
796
.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

797
798
799
800
801
802
803
804
805
806
.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

807
808
809
810
811
812
813
814
815
816
817
818
.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,
.col-xs-11,
.col-xs-12,
Mark Otto's avatar
Mark Otto committed
819
820
821
822
823
824
825
826
827
828
829
830
.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,
831
832
833
834
835
836
837
838
839
840
841
842
.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,
.col-md-11,
.col-md-12,
Mark Otto's avatar
Mark Otto committed
843
844
845
846
847
848
849
850
851
852
.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
853
854
.col-lg-11,
.col-lg-12 {
855
  position: relative;
Mark Otto's avatar
Mark Otto committed
856
  min-height: 1px;
857
858
  padding-right: 15px;
  padding-left: 15px;
Mark Otto's avatar
Mark Otto committed
859
860
}

861
862
863
864
865
866
867
868
869
870
.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,
871
.col-xs-11 {
Mark Otto's avatar
Mark Otto committed
872
873
874
  float: left;
}

875
.col-xs-1 {
876
  width: 8.333333333333332%;
877
878
}

879
.col-xs-2 {
880
  width: 16.666666666666664%;
881
882
}

883
.col-xs-3 {
884
  width: 25%;
885
886
}

887
.col-xs-4 {
888
  width: 33.33333333333333%;
889
890
}

891
.col-xs-5 {
892
  width: 41.66666666666667%;
893
894
}

895
.col-xs-6 {
896
  width: 50%;
897
898
}

899
.col-xs-7 {
900
  width: 58.333333333333336%;
901
902
}

903
.col-xs-8 {
904
  width: 66.66666666666666%;
905
906
}

907
.col-xs-9 {
908
  width: 75%;
909
910
}

911
.col-xs-10 {
912
  width: 83.33333333333334%;
913
914
}

915
.col-xs-11 {
916
  width: 91.66666666666666%;
917
918
}

919
.col-xs-12 {
Mark Otto's avatar
Mark Otto committed
920
921
922
  width: 100%;
}

923
@media (min-width: 768px) {
Mark Otto's avatar
Mark Otto committed
924
  .container {
925
    width: 750px;
Mark Otto's avatar
Mark Otto committed
926
  }
Mark Otto's avatar
Mark Otto committed
927
928
929
930
931
932
933
934
935
936
  .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,
937
  .col-sm-11 {
Mark Otto's avatar
Mark Otto committed
938
939
    float: left;
  }
Mark Otto's avatar
Mark Otto committed
940
  .col-sm-1 {
941
    width: 8.333333333333332%;
Mark Otto's avatar
Mark Otto committed
942
  }
Mark Otto's avatar
Mark Otto committed
943
  .col-sm-2 {
944
    width: 16.666666666666664%;
Mark Otto's avatar
Mark Otto committed
945
  }
Mark Otto's avatar
Mark Otto committed
946
  .col-sm-3 {
947
    width: 25%;
Mark Otto's avatar
Mark Otto committed
948
  }
Mark Otto's avatar
Mark Otto committed
949
  .col-sm-4 {
950
    width: 33.33333333333333%;
Mark Otto's avatar
Mark Otto committed
951
  }
Mark Otto's avatar
Mark Otto committed
952
  .col-sm-5 {
953
    width: 41.66666666666667%;
Mark Otto's avatar
Mark Otto committed
954
  }
Mark Otto's avatar
Mark Otto committed
955
  .col-sm-6 {
956
    width: 50%;
Mark Otto's avatar
Mark Otto committed
957
  }
Mark Otto's avatar
Mark Otto committed
958
  .col-sm-7 {
959
    width: 58.333333333333336%;
Mark Otto's avatar
Mark Otto committed
960
  }
Mark Otto's avatar
Mark Otto committed
961
  .col-sm-8 {
962
    width: 66.66666666666666%;
Mark Otto's avatar
Mark Otto committed
963
  }
Mark Otto's avatar
Mark Otto committed
964
  .col-sm-9 {
965
    width: 75%;
Mark Otto's avatar
Mark Otto committed
966
  }
Mark Otto's avatar
Mark Otto committed
967
  .col-sm-10 {
968
    width: 83.33333333333334%;
Mark Otto's avatar
Mark Otto committed
969
  }
Mark Otto's avatar
Mark Otto committed
970
  .col-sm-11 {
971
    width: 91.66666666666666%;
Mark Otto's avatar
Mark Otto committed
972
  }
Mark Otto's avatar
Mark Otto committed
973
  .col-sm-12 {
Mark Otto's avatar
Mark Otto committed
974
975
    width: 100%;
  }
976
  .col-sm-push-1 {
Mark Otto's avatar
Mark Otto committed
977
978
    left: 8.333333333333332%;
  }
979
  .col-sm-push-2 {
Mark Otto's avatar
Mark Otto committed
980
    left: 16.666666666666664%;
981
  }
982
  .col-sm-push-3 {
983
984
    left: 25%;
  }
985
  .col-sm-push-4 {
Mark Otto's avatar
Mark Otto committed
986
    left: 33.33333333333333%;
987
  }
988
  .col-sm-push-5 {
Mark Otto's avatar
Mark Otto committed
989
    left: 41.66666666666667%;
990
  }
991
  .col-sm-push-6 {
Mark Otto's avatar
Mark Otto committed
992
    left: 50%;
993
  }
994
  .col-sm-push-7 {
Mark Otto's avatar
Mark Otto committed
995
    left: 58.333333333333336%;
996
  }
997
  .col-sm-push-8 {
Mark Otto's avatar
Mark Otto committed
998
    left: 66.66666666666666%;
999
  }
1000
  .col-sm-push-9 {
For faster browsing, not all history is shown. View entire blame