docs.css 13.7 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Bootstrap Documentation
 * Special styles for presenting Bootstrap's documentation and code examples.
 */



/* Key scaffolding
-------------------------------------------------- */

body {
  position: relative; /* For scrollyspy */
Mark Otto's avatar
Mark Otto committed
13
  padding-top: 50px; /* Account for fixed navbar */
Mark Otto's avatar
Mark Otto committed
14
15
}

Mark Otto's avatar
Mark Otto committed
16
17
18
19
20


/* Top nav and header
-------------------------------------------------- */

Mark Otto's avatar
Mark Otto committed
21
.bs-docs-nav {
Mark Otto's avatar
Mark Otto committed
22
  background-color: #b94a48;
Mark Otto's avatar
Mark Otto committed
23
}
Mark Otto's avatar
Mark Otto committed
24
25
26
27
.bs-docs-nav .navbar-brand,
.bs-docs-nav .navbar-nav > li > a {
  color: #fff;
}
Mark Otto's avatar
Mark Otto committed
28
29
.bs-docs-nav .navbar-nav > .active > a,
.bs-docs-nav .navbar-nav > .active > a:hover {
Mark Otto's avatar
Mark Otto committed
30
31
  background-color: #993c3a;
}
Mark Otto's avatar
Mark Otto committed
32
.bs-docs-nav .navbar-toggle {
Mark Otto's avatar
Mark Otto committed
33
34
35
36
37
  border-color: #b94a48;
}
.bs-docs-nav .navbar-toggle:hover {
  background-color: #993c3a;
  border-color: #993c3a;
Mark Otto's avatar
Mark Otto committed
38
39
40
}


Mark Otto's avatar
Mark Otto committed
41

42
/* Homepage masthead
Mark Otto's avatar
Mark Otto committed
43
44
-------------------------------------------------- */

45
.bs-masthead {
Mark Otto's avatar
Mark Otto committed
46
47
48
  position: relative;
  margin-bottom: 20px;
  padding: 30px 15px;
Mark Otto's avatar
center    
Mark Otto committed
49
  text-align: center;
Mark Otto's avatar
Mark Otto committed
50
}
51
.bs-masthead h1 {
Mark Otto's avatar
Mark Otto committed
52
  font-size: 50px;
Mark Otto's avatar
Mark Otto committed
53
  line-height: 1;
Mark Otto's avatar
Mark Otto committed
54
55
56
}

/* Download button */
57
.bs-masthead .btn {
Mark Otto's avatar
Mark Otto committed
58
59
  margin-top: 5px;
  margin-bottom: 5px;
Mark Otto's avatar
Mark Otto committed
60
61
62
63
  padding: 18px 24px;
  font-size: 21px;
  color: #b94a48; /* redeclare to override the `.jumbotron a` */
  background-color: #fff;
Mark Otto's avatar
Mark Otto committed
64
  border-color: #e5e5e5;
Mark Otto's avatar
Mark Otto committed
65
}
66
67
.bs-masthead .btn:hover,
.bs-masthead .btn:active {
Mark Otto's avatar
Mark Otto committed
68
69
70
  color: #fff; /* redeclare to override the `.jumbotron a` */
  background-color: #b94a48;
  border-color: #b94a48;
Mark Otto's avatar
Mark Otto committed
71
72
}

73
74
/* Textual links */
.bs-masthead-links {
Mark Otto's avatar
Mark Otto committed
75
76
77
  margin: 20px 0;
  list-style: none;
}
78
.bs-masthead-links li {
Mark Otto's avatar
Mark Otto committed
79
80
81
  display: inline;
  color: #999;
}
82
.bs-masthead-links li + li {
Mark Otto's avatar
Mark Otto committed
83
  margin-left: 20px;
Mark Otto's avatar
Mark Otto committed
84
85
86
87
}



88
/* Docs pages and sections
Mark Otto's avatar
Mark Otto committed
89
90
-------------------------------------------------- */

91
/* Page headers */
Mark Otto's avatar
Mark Otto committed
92
.bs-header {
Mark Otto's avatar
Mark Otto committed
93
  padding: 30px 30px 40px;
Mark Otto's avatar
Mark Otto committed
94
95
  font-size: 16px;
  color: #5a5a5a;
Mark Otto's avatar
Mark Otto committed
96
  text-align: center;
Mark Otto's avatar
Mark Otto committed
97
98
  border-bottom: 1px solid #ddd;
}
Mark Otto's avatar
Mark Otto committed
99
.bs-header h1 {
100
  color: #b94a48;
Mark Otto's avatar
Mark Otto committed
101
}
Mark Otto's avatar
Mark Otto committed
102
.bs-header p {
Mark Otto's avatar
Mark Otto committed
103
104
  font-weight: 300;
  line-height: 1.5;
Mark Otto's avatar
Mark Otto committed
105
}
106
107
108
109

/* Padding for in-page bookmarks */
.bs-docs-section {
  padding-top: 30px;
Mark Otto's avatar
Mark Otto committed
110
111
112
113
}



114
/* Docs sidebar
Mark Otto's avatar
Mark Otto committed
115
116
-------------------------------------------------- */

117
118
119
120
121
122
123
124
125
/* By default it's not affixed in mobile views, so undo that */
.bs-sidebar.affix {
  position: static;
}

/* First level of nav */
.bs-sidenav {
  margin-top: 30px;
  margin-bottom: 30px;
Mark Otto's avatar
Mark Otto committed
126
127
128
129
130
  padding-top: 15px;
  padding-bottom: 15px;
  text-shadow: 0 1px 0 #fff;
  background-color: #f5f5f5;
  border-radius: 5px;
Mark Otto's avatar
Mark Otto committed
131
}
132
133
134

/* All levels of nav */
.bs-sidebar .nav > li > a {
Mark Otto's avatar
Mark Otto committed
135
  display: block;
136
  color: #666;
137
  padding: 4px 20px;
138
}
139
140
.bs-sidebar .nav > li > a:hover,
.bs-sidebar .nav > li > a:focus {
Mark Otto's avatar
Mark Otto committed
141
  text-decoration: none;
142
  border-right: 1px solid #d5d5d5;
Mark Otto's avatar
Mark Otto committed
143
}
144
145
146
.bs-sidebar .nav > .active > a,
.bs-sidebar .nav > .active:hover > a,
.bs-sidebar .nav > .active:focus > a {
147
  font-weight: 500;
Mark Otto's avatar
dat red    
Mark Otto committed
148
  color: #b94a48;
149
  background-color: transparent;
Mark Otto's avatar
dat red    
Mark Otto committed
150
  border-right: 1px solid #b94a48;
Mark Otto's avatar
Mark Otto committed
151
152
}

Mark Otto's avatar
Mark Otto committed
153
/* Nav: second level (shown on .active) */
154
.bs-sidebar .nav .nav {
Mark Otto's avatar
Mark Otto committed
155
156
157
  display: none;
  margin-bottom: 5px;
}
158
.bs-sidebar .nav > .active > ul {
Mark Otto's avatar
Mark Otto committed
159
160
  display: block;
}
161
.bs-sidebar .nav .nav > li > a {
Mark Otto's avatar
Mark Otto committed
162
163
  padding-top: 2px;
  padding-bottom: 2px;
Mark Otto's avatar
Mark Otto committed
164
  padding-left: 40px;
Mark Otto's avatar
Mark Otto committed
165
166
167
  font-size: 90%;
}

Mark Otto's avatar
Mark Otto committed
168

169

Mark Otto's avatar
Mark Otto committed
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* Side notes for calling out things
-------------------------------------------------- */

.bs-docs-sidenote {
  margin: 20px 0;
  padding: 15px 30px 15px 15px;
  background-color: #fcf2f2;
  border-left: 5px solid #df7c7b;
}
.bs-docs-sidenote h4 {
  margin-top: 0;
}
.bs-docs-sidenote p:last-child {
  margin-bottom: 0;
}
.bs-docs-sidenote code,
.bs-docs-sidenote .highlight {
  background-color: #fff;
}



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/* Special grid styles
-------------------------------------------------- */

.show-grid {
  margin-bottom: 15px;
}
.show-grid .col {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #eee;
  border: 1px solid #ddd;
}
.show-grid .col:hover {
  background-color: #ddd;
}



Mark Otto's avatar
Mark Otto committed
210
211
212
213
214
215
216
217
218
/* Bootstrap code examples
-------------------------------------------------- */

/* Base class */
.bs-docs-example {
  position: relative;
  padding: 39px 14px 14px;
  margin-bottom: -1px;
  border: 1px solid #ddd;
219
220
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
Mark Otto's avatar
Mark Otto committed
221
222
223
224
225
226
227
228
229
230
231
232
233
}
/* Echo out a label for the example */
.bs-docs-example:after {
  content: "Example";
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #9da0a4;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
234
235
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
Mark Otto's avatar
Mark Otto committed
236
237
238
}

/* Tweak display of the examples */
239
240
.bs-docs-example + .prettyprint,
.bs-docs-example + .highlight {
Mark Otto's avatar
Mark Otto committed
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Tweak content of examples for optimum awesome */
.bs-docs-example > p:last-child,
.bs-docs-example > ul:last-child,
.bs-docs-example > ol:last-child,
.bs-docs-example > blockquote:last-child,
.bs-docs-example > input:last-child,
.bs-docs-example > select:last-child,
.bs-docs-example > textarea:last-child,
.bs-docs-example > .table:last-child,
.bs-docs-example > .jumbotron:last-child,
256
257
.bs-docs-example > .alert:last-child,
.bs-docs-example > .panel:last-child,
Mark Otto's avatar
Mark Otto committed
258
.bs-docs-example > .list-group:last-child,
259
.bs-docs-example > .well:last-child {
Mark Otto's avatar
Mark Otto committed
260
261
262
  margin-bottom: 0;
}

263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* Typography */
.bs-docs-example-type .table td {
  color: #999;
  vertical-align: middle;
  border-color: ;
}
.bs-docs-example-type .table td,
.bs-docs-example-type .table th {
  padding: 15px 0;
  border-color: #eee;
}
.bs-docs-example-type .table tr:first-child td,
.bs-docs-example-type .table tr:first-child th {
  border-top: 0;
}
.bs-docs-example-type h1,
.bs-docs-example-type h2,
.bs-docs-example-type h3,
.bs-docs-example-type h4,
.bs-docs-example-type h5,
.bs-docs-example-type h6 {
  margin: 0;
}

Mark Otto's avatar
Mark Otto committed
287
288
289
290
/* List groups */
.bs-docs-example > .list-group {
  max-width: 400px;
}
291

Mark Otto's avatar
Mark Otto committed
292
293
294
295
296
/* Navbar examples */
.bs-navbar-top-example,
.bs-navbar-bottom-example {
  z-index: 1;
  padding: 0;
297
  min-height: 110px;
Mark Otto's avatar
Mark Otto committed
298
299
300
301
  overflow: hidden; /* cut the drop shadows off */
}
.bs-navbar-top-example .navbar-fixed-top,
.bs-navbar-bottom-example .navbar-fixed-bottom {
302
  position: relative;
Mark Otto's avatar
Mark Otto committed
303
304
305
  margin-left: 0;
  margin-right: 0;
}
306
307
308
309
310
311
.bs-navbar-top-example .navbar-fixed-top {
  top: -1px;
}
.bs-navbar-bottom-example .navbar-fixed-bottom {
  bottom: -1px;
}
Mark Otto's avatar
Mark Otto committed
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
345
346
347
348
349
350
351
.bs-navbar-top-example {
  -webkit-border-radius: 0 0 4px 4px;
     -moz-border-radius: 0 0 4px 4px;
          border-radius: 0 0 4px 4px;
}
.bs-navbar-top-example:after {
  top: auto;
  bottom: -1px;
  -webkit-border-radius: 0 4px 0 4px;
     -moz-border-radius: 0 4px 0 4px;
          border-radius: 0 4px 0 4px;
}
.bs-navbar-bottom-example {
  -webkit-border-radius: 4px 4px 0 0;
     -moz-border-radius: 4px 4px 0 0;
          border-radius: 4px 4px 0 0;
}
.bs-navbar-bottom-example .navbar {
  margin-bottom: 0;
}

/* Example modals */
.bs-docs-example-modal {
  background-color: #f5f5f5;
}
.bs-docs-example-modal .modal {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  z-index: 1;
  display: block;
}
.bs-docs-example-modal .modal-dialog {
  left: auto;
  margin-left: auto;
  margin-right: auto;
}

Mark Otto's avatar
Mark Otto committed
352
353
354
355
356
357
358
359
360
/* Example dropdowns */
.bs-docs-example > .dropdown > .dropdown-menu,
.bs-docs-example-submenu > .pull-left > .dropup > .dropdown-menu,
.bs-docs-example-submenu > .pull-left > .dropdown > .dropdown-menu {
  position: static;
  display: block;
  margin-bottom: 5px;
}
.bs-docs-example-submenu {
361
  min-height: 230px;
Mark Otto's avatar
Mark Otto committed
362
363
364
365
}
.bs-docs-example-submenu > .pull-left + .pull-left {
  margin-left: 20px;
}
Mark Otto's avatar
Mark Otto committed
366

367
368
369
370
371
/* Example tabbable tabs */
.bs-docs-example-tabs .nav-tabs {
  margin-bottom: 15px;
}

372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/* Tooltips */
.bs-docs-tooltip-examples {
  text-align: center;
  margin: 0 0 10px;
  list-style: none;
}
.bs-docs-tooltip-examples li {
  display: inline;
  padding: 0 10px;
}

/* Popovers */
.bs-docs-example-popover {
  padding-bottom: 24px;
  background-color: #f9f9f9;
}
.bs-docs-example-popover .popover {
  position: relative;
  display: block;
  float: left;
  width: 260px;
  margin: 20px;
}

Mark Otto's avatar
Mark Otto committed
396

Mark Otto's avatar
Mark Otto committed
397

Mark Otto's avatar
Mark Otto committed
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/* Example templates
-------------------------------------------------- */

.bs-docs-examples h4 {
  margin-bottom: 5px;
}
.bs-docs-examples p {
  margin-bottom: 20px;
}



/* Icons
-------------------------------------------------- */

.the-icons {
  padding-bottom: 1px;
  margin-left: 0;
  list-style: none;
  margin-bottom: 20px;
  overflow: hidden;
}
.the-icons li {
  float: left;
  width: 100px;
  height: 110px;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  -webkit-box-sizing: border-box;
Mark Otto's avatar
Mark Otto committed
430
431
     -moz-box-sizing: border-box;
          box-sizing: border-box;
Mark Otto's avatar
Mark Otto committed
432
433
  margin: 0 -1px -1px 0;
}
434
.the-icons .glyphicon {
Mark Otto's avatar
Mark Otto committed
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
  display: block;
  margin: 5px auto;
  vertical-align: middle;
  margin-right: 3px;
  font-size: 24px;
}
.the-icons li:hover {
  background-color: rgba(255,0,0,.1);
}



/* Responsive docs
-------------------------------------------------- */

/* Related: responsive utilities tables */
.table code {
  font-size: 13px;
  font-weight: normal;
}

/* Utility classes table
------------------------- */
.responsive-utilities th small {
  display: block;
  font-weight: normal;
  color: #999;
}
.responsive-utilities tbody th {
  font-weight: normal;
}
.responsive-utilities td {
  text-align: center;
}
.responsive-utilities td.is-visible {
  color: #468847;
  background-color: #dff0d8 !important;
}
.responsive-utilities td.is-hidden {
  color: #ccc;
  background-color: #f9f9f9 !important;
}

/* Responsive tests
------------------------- */
.responsive-utilities-test {
  margin-top: 5px;
  margin-left: 0;
  list-style: none;
  overflow: hidden; /* clear floats */
}
.responsive-utilities-test li {
  position: relative;
  float: left;
  width: 25%;
  height: 43px;
  font-size: 14px;
  font-weight: bold;
  line-height: 43px;
  color: #999;
  text-align: center;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.responsive-utilities-test li + li {
  margin-left: 10px;
}
.responsive-utilities-test span {
  position: absolute;
  top:    -1px;
  left:   -1px;
  right:  -1px;
  bottom: -1px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.responsive-utilities-test span {
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}



/* Footer
-------------------------------------------------- */

525
.bs-footer {
526
527
  padding-top: 30px;
  padding-bottom: 30px;
Mark Otto's avatar
Mark Otto committed
528
529
530
  margin-top: 100px;
  border-top: 1px solid #e5e5e5;
}
531
.bs-footer p {
Mark Otto's avatar
Mark Otto committed
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
  margin-bottom: 0;
  color: #777;
}
.footer-links {
  margin: 10px 0;
}
.footer-links li {
  display: inline;
  padding: 0 2px;
}
.footer-links li:first-child {
  padding-left: 0;
}

/* Social proof buttons from GitHub & Twitter */
Mark Otto's avatar
Mark Otto committed
547
.bs-social {
Mark Otto's avatar
center    
Mark Otto committed
548
  margin-top: 80px;
Mark Otto's avatar
Mark Otto committed
549
550
  margin-bottom: 20px;
}
Mark Otto's avatar
Mark Otto committed
551
.bs-social-buttons {
Mark Otto's avatar
Mark Otto committed
552
553
554
555
  display: inline-block;
  margin: 0;
  list-style: none;
}
Mark Otto's avatar
Mark Otto committed
556
.bs-social-buttons li {
Mark Otto's avatar
Mark Otto committed
557
558
559
  display: inline-block;
  line-height: 1;
}
Mark Otto's avatar
Mark Otto committed
560
.bs-social-buttons li + li {
Mark Otto's avatar
Mark Otto committed
561
562
  margin-left: 15px;
}
Mark Otto's avatar
Mark Otto committed
563
.bs-social-buttons .twitter-follow-button {
Mark Otto's avatar
Mark Otto committed
564
565
  width: 225px !important;
}
Mark Otto's avatar
Mark Otto committed
566
.bs-social-buttons .twitter-share-button {
Mark Otto's avatar
Mark Otto committed
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
  width: 98px !important;
}



/* Misc docs stuff
-------------------------------------------------- */

/* Pseudo :focus state for showing how it looks in the docs */
input.focused {
  border-color: rgba(82,168,236,.8);
  outline: 0;
  outline: thin dotted \9; /* IE6-9 */
  -moz-box-shadow: 0 0 8px rgba(82,168,236,.6);
       box-shadow: 0 0 8px rgba(82,168,236,.6);
}

/* Scrollspy demo on fixed height div */
.scrollspy-example {
  position: relative;
  height: 200px;
  margin-top: 10px;
  overflow: auto;
}

592
.highlight {
593
  padding: 9px 14px;
594
  margin-bottom: 14px;
595
596
597
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  border-radius: 4px;
598
599
600
601
602
603
}
.highlight pre {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 0;
604
  white-space: nowrap;
605
606
}
.highlight pre code {
607
608
609
610
611
  font-size: inherit;
  color: #333; /* Effectively the base text color */
}
.highlight pre .lineno {
  display: inline-block;
612
  width: 22px;
613
614
615
616
  padding-right: 5px;
  margin-right: 10px;
  text-align: right;
  color: #bebec5;
617
618
}

Mark Otto's avatar
Mark Otto committed
619
620
621
622
/* Better spacing on download options in getting started */
.bs-docs-dl-options h4 {
  margin-top: 15px;
  margin-bottom: 5px;
Mark Otto's avatar
Mark Otto committed
623
624
625
}


Mark Otto's avatar
Mark Otto committed
626

Mark Otto's avatar
Mark Otto committed
627
628
629
/* Responsive variations
-------------------------------------------------- */

630
631
632
633
634
635
636
637
638
639
/* Hide code snippets on mobile devices */
@media screen and (max-width: 480px) {
  .bs-docs-example {
    border-radius: 4px;
  }
  .highlight {
    display: none;
  }
}

Mark Otto's avatar
Mark Otto committed
640
641
642
/* Tablets and up */
@media screen and (min-width: 768px) {

643
644
645
646
647
648
649
  /* Reaffix the fixed sidebar */
  .bs-sidebar.affix {
    position: fixed; /* Undo the static from mobile-first approach */
    top: 50px;
    width: 160px;
  }

650
  /* Back to top link */
Mark Otto's avatar
Mark Otto committed
651
  .bs-top {
652
653
654
655
656
657
658
    float: left;
    padding: 7px 15px;
    font-weight: 500;
    color: #999;
    background-color: #eee;
    border-radius: 4px;
  }
Mark Otto's avatar
Mark Otto committed
659
  .bs-top:hover {
660
661
662
663
    color: #fff;
    text-decoration: none;
    background-color: #999;
  }
Mark Otto's avatar
Mark Otto committed
664
  .bs-top.affix {
665
666
667
668
669
    position: fixed;
    right:  15px;
    bottom: 15px;
  }

Mark Otto's avatar
Mark Otto committed
670
  .bs-header {
Mark Otto's avatar
Mark Otto committed
671
    font-size: 21px;
Mark Otto's avatar
Mark Otto committed
672
    text-align: left;
Mark Otto's avatar
Mark Otto committed
673
  }
Mark Otto's avatar
Mark Otto committed
674
  .bs-header h1 {
Mark Otto's avatar
Mark Otto committed
675
    font-size: 60px;
676
677
678
    line-height: 1;
  }

679
  /* Show the docs nav */
680
  .bs-sidebar {
681
682
683
    display: block;
  }

Mark Otto's avatar
Mark Otto committed
684
  /* Tweak display of docs jumbotrons */
685
  .bs-masthead {
Mark Otto's avatar
Mark Otto committed
686
687
688
    padding-top:    100px;
    padding-bottom: 100px;
  }
689
  .bs-masthead h1 {
Mark Otto's avatar
Mark Otto committed
690
691
    font-size: 100px;
  }
692
  .bs-masthead p {
Mark Otto's avatar
center    
Mark Otto committed
693
694
    margin-left: 15%;
    margin-right: 15%;
Mark Otto's avatar
Mark Otto committed
695
696
697
    font-size: 30px;
  }

698
699
700
701
702
  .bs-navbar-top-example .navbar-fixed-top,
  .bs-navbar-bottom-example .navbar-fixed-bottom {
    position: absolute;
  }

Mark Otto's avatar
Mark Otto committed
703
704
705
706
}

/* Tablets/desktops and up */
@media screen and (min-width: 992px) {
Mark Otto's avatar
Mark Otto committed
707

708
709
710
711
712
  /* Widen the fixed sidebar */
  .bs-sidebar.affix {
    width: 213px;
  }

Mark Otto's avatar
Mark Otto committed
713
714
715
716
717
  /* Icons */
  .the-icons li {
    width: 12.5%;
  }

Mark Otto's avatar
Mark Otto committed
718
719
720
721
}

/* Large desktops and up */
@media screen and (min-width: 1200px) {
722

723
724
725
726
727
  /* Widen the fixed sidebar again */
  .bs-sidebar.affix {
    width: 270px;
  }

728
}