bootstrap.css 121 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
/*!
2
 * Bootstrap v3.0.2 (http://getbootstrap.com)
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

XhmikosR's avatar
XhmikosR committed
7
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
Mark Otto's avatar
Mark Otto committed
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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

cite {
  font-style: normal;
}

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

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

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

Mark Otto's avatar
Mark Otto committed
426
.text-warning {
427
  color: #8a6d3b;
Mark Otto's avatar
Mark Otto committed
428
429
}

430
.text-warning:hover {
431
  color: #66512c;
432
433
}

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

438
.text-danger:hover {
439
  color: #843534;
440
441
}

Mark Otto's avatar
Mark Otto committed
442
.text-success {
443
  color: #3c763d;
Mark Otto's avatar
Mark Otto committed
444
445
}

446
.text-success:hover {
447
  color: #2b542c;
448
449
}

450
.text-info {
451
  color: #31708f;
Mark Otto's avatar
Mark Otto committed
452
453
}

454
.text-info:hover {
455
  color: #245269;
456
457
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

dt {
  font-weight: bold;
}

dd {
632
  margin-left: 0;
Mark Otto's avatar
Mark Otto committed
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
@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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
}

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
678
679
  padding: 10px 20px;
  margin: 0 0 20px;
Mark Otto's avatar
Mark Otto committed
680
681
682
683
  border-left: 5px solid #eeeeee;
}

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

689
690
691
692
blockquote p:last-child {
  margin-bottom: 0;
}

693
694
blockquote small,
blockquote .small {
Mark Otto's avatar
Mark Otto committed
695
  display: block;
696
  line-height: 1.428571429;
Mark Otto's avatar
Mark Otto committed
697
698
699
  color: #999999;
}

700
701
blockquote small:before,
blockquote .small:before {
Mark Otto's avatar
Mark Otto committed
702
703
704
705
706
707
708
709
710
711
712
  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
918
.col-xs-11,
.col-xs-12 {
Mark Otto's avatar
Mark Otto committed
919
920
921
  float: left;
}

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

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

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

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

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

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

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

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

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

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

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

966
967
.col-xs-1 {
  width: 8.333333333333332%;
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
.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%;
}
For faster browsing, not all history is shown. View entire blame