hobo_bootstrap 2.0.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,834 @@
1
+ /* Add additional stylesheets below
2
+ -------------------------------------------------- */
3
+ /*
4
+ Bootstrap's documentation styles
5
+ Special styles for presenting Bootstrap's documentation and examples
6
+ */
7
+
8
+
9
+ /* Tweak navbar brand link to be super sleek
10
+ -------------------------------------------------- */
11
+ .navbar-fixed-top .brand {
12
+ padding-right: 0;
13
+ padding-left: 0;
14
+ margin-left: 20px;
15
+ float: right;
16
+ font-weight: bold;
17
+ color: #000;
18
+ text-shadow: 0 1px 0 rgba(255,255,255,.1), 0 0 30px rgba(255,255,255,.125);
19
+ -webkit-transition: all .2s linear;
20
+ -moz-transition: all .2s linear;
21
+ transition: all .2s linear;
22
+ }
23
+ .navbar-fixed-top .brand:hover {
24
+ text-decoration: none;
25
+ }
26
+
27
+
28
+ /* Space out sub-sections more
29
+ -------------------------------------------------- */
30
+ section {
31
+ padding-top: 60px;
32
+ }
33
+
34
+ /* Faded out hr */
35
+ hr.soften {
36
+ height: 1px;
37
+ margin: 54px 0;
38
+ background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0));
39
+ background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0));
40
+ background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0));
41
+ background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.1), rgba(0,0,0,0));
42
+ border: 0;
43
+ }
44
+
45
+
46
+ /* Jumbotrons
47
+ -------------------------------------------------- */
48
+ .jumbotron {
49
+ position: relative;
50
+ }
51
+ .jumbotron h1 {
52
+ margin-bottom: 9px;
53
+ font-size: 81px;
54
+ font-weight: bold;
55
+ letter-spacing: -1px;
56
+ line-height: 1;
57
+ }
58
+ .jumbotron p {
59
+ margin-bottom: 18px;
60
+ font-weight: 300;
61
+ }
62
+ .jumbotron .btn-large {
63
+ font-size: 20px;
64
+ font-weight: normal;
65
+ padding: 14px 24px;
66
+ margin-right: 10px;
67
+ -webkit-border-radius: 6px;
68
+ -moz-border-radius: 6px;
69
+ border-radius: 6px;
70
+ }
71
+ .jumbotron .btn-large small {
72
+ font-size: 14px;
73
+ }
74
+
75
+ /* Masthead (docs home) */
76
+ .masthead {
77
+ padding-top: 36px;
78
+ margin-bottom: 72px;
79
+ }
80
+ .masthead h1,
81
+ .masthead p {
82
+ text-align: center;
83
+ }
84
+ .masthead h1 {
85
+ margin-bottom: 18px;
86
+ }
87
+ .masthead p {
88
+ margin-left: 5%;
89
+ margin-right: 5%;
90
+ font-size: 30px;
91
+ line-height: 36px;
92
+ }
93
+
94
+
95
+ /* Specific jumbotrons
96
+ ------------------------- */
97
+ /* supporting docs pages */
98
+ .subhead {
99
+ padding-bottom: 0;
100
+ margin-bottom: 9px;
101
+ }
102
+ .subhead h1 {
103
+ font-size: 54px;
104
+ }
105
+
106
+ /* Subnav */
107
+ .subnav {
108
+ width: 100%;
109
+ height: 36px;
110
+ background-color: #eeeeee; /* Old browsers */
111
+ background-repeat: repeat-x; /* Repeat the gradient */
112
+ background-image: -moz-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* FF3.6+ */
113
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#eeeeee)); /* Chrome,Safari4+ */
114
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%,#eeeeee 100%); /* Chrome 10+,Safari 5.1+ */
115
+ background-image: -ms-linear-gradient(top, #f5f5f5 0%,#eeeeee 100%); /* IE10+ */
116
+ background-image: -o-linear-gradient(top, #f5f5f5 0%,#eeeeee 100%); /* Opera 11.10+ */
117
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
118
+ background-image: linear-gradient(top, #f5f5f5 0%,#eeeeee 100%); /* W3C */
119
+ border: 1px solid #e5e5e5;
120
+ -webkit-border-radius: 4px;
121
+ -moz-border-radius: 4px;
122
+ border-radius: 4px;
123
+ }
124
+ .subnav .nav {
125
+ margin-bottom: 0;
126
+ }
127
+ .subnav .nav > li > a {
128
+ margin: 0;
129
+ padding-top: 11px;
130
+ padding-bottom: 11px;
131
+ border-left: 1px solid #f5f5f5;
132
+ border-right: 1px solid #e5e5e5;
133
+ -webkit-border-radius: 0;
134
+ -moz-border-radius: 0;
135
+ border-radius: 0;
136
+ }
137
+ .subnav .nav > .active > a,
138
+ .subnav .nav > .active > a:hover {
139
+ padding-left: 13px;
140
+ color: #777;
141
+ background-color: #e9e9e9;
142
+ border-right-color: #ddd;
143
+ border-left: 0;
144
+ -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
145
+ -moz-box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
146
+ box-shadow: inset 0 3px 5px rgba(0,0,0,.05);
147
+ }
148
+ .subnav .nav > .active > a .caret,
149
+ .subnav .nav > .active > a:hover .caret {
150
+ border-top-color: #777;
151
+ }
152
+ .subnav .nav > li:first-child > a,
153
+ .subnav .nav > li:first-child > a:hover {
154
+ border-left: 0;
155
+ padding-left: 12px;
156
+ -webkit-border-radius: 4px 0 0 4px;
157
+ -moz-border-radius: 4px 0 0 4px;
158
+ border-radius: 4px 0 0 4px;
159
+ }
160
+ .subnav .nav > li:last-child > a {
161
+ border-right: 0;
162
+ }
163
+ .subnav .dropdown-menu {
164
+ -webkit-border-radius: 0 0 4px 4px;
165
+ -moz-border-radius: 0 0 4px 4px;
166
+ border-radius: 0 0 4px 4px;
167
+ }
168
+
169
+ /* Fixed subnav on scroll, but only for 980px and up (sorry IE!) */
170
+ @media (min-width: 980px) {
171
+ .subnav-fixed {
172
+ position: fixed;
173
+ top: 40px;
174
+ left: 0;
175
+ right: 0;
176
+ z-index: 1020; /* 10 less than .navbar-fixed to prevent any overlap */
177
+ border-color: #d5d5d5;
178
+ border-width: 0 0 1px; /* drop the border on the fixed edges */
179
+ -webkit-border-radius: 0;
180
+ -moz-border-radius: 0;
181
+ border-radius: 0;
182
+ -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
183
+ -moz-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
184
+ box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
185
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); /* IE6-9 */
186
+ }
187
+ .subnav-fixed .nav {
188
+ width: 938px;
189
+ margin: 0 auto;
190
+ padding: 0 1px;
191
+ }
192
+ .subnav .nav > li:first-child > a,
193
+ .subnav .nav > li:first-child > a:hover {
194
+ -webkit-border-radius: 0;
195
+ -moz-border-radius: 0;
196
+ border-radius: 0;
197
+ }
198
+ }
199
+
200
+
201
+ /* Quick links
202
+ -------------------------------------------------- */
203
+ .bs-links {
204
+ margin: 36px 0;
205
+ }
206
+ .quick-links {
207
+ min-height: 30px;
208
+ margin: 0;
209
+ padding: 5px 20px;
210
+ list-style: none;
211
+ text-align: center;
212
+ overflow: hidden;
213
+ }
214
+ .quick-links:first-child {
215
+ min-height: 0;
216
+ }
217
+ .quick-links li {
218
+ display: inline;
219
+ margin: 0 8px;
220
+ color: #999;
221
+ }
222
+ .quick-links .github-btn,
223
+ .quick-links .tweet-btn,
224
+ .quick-links .follow-btn {
225
+ position: relative;
226
+ top: 5px;
227
+ }
228
+
229
+
230
+ /* Marketing section of Overview
231
+ -------------------------------------------------- */
232
+ .marketing .row {
233
+ margin-bottom: 9px;
234
+ }
235
+ .marketing h1 {
236
+ margin: 36px 0 27px;
237
+ font-size: 40px;
238
+ font-weight: 300;
239
+ text-align: center;
240
+ }
241
+ .marketing h2,
242
+ .marketing h3 {
243
+ font-weight: 300;
244
+ }
245
+ .marketing h2 {
246
+ font-size: 22px;
247
+ }
248
+ .marketing p {
249
+ margin-right: 10px;
250
+ }
251
+ .marketing .bs-icon {
252
+ float: left;
253
+ margin: 7px 10px 0 0;
254
+ opacity: .8;
255
+ }
256
+ .marketing .small-bs-icon {
257
+ float: left;
258
+ margin: 4px 5px 0 0;
259
+ }
260
+
261
+
262
+
263
+ /* Footer
264
+ -------------------------------------------------- */
265
+ .footer {
266
+ margin-top: 45px;
267
+ padding: 35px 0 36px;
268
+ border-top: 1px solid #e5e5e5;
269
+ }
270
+ .footer p {
271
+ margin-bottom: 0;
272
+ color: #555;
273
+ }
274
+
275
+
276
+
277
+ /* Special grid styles
278
+ -------------------------------------------------- */
279
+ .show-grid {
280
+ margin-top: 10px;
281
+ margin-bottom: 20px;
282
+ }
283
+ .show-grid [class*="span"] {
284
+ background-color: #eee;
285
+ text-align: center;
286
+ -webkit-border-radius: 3px;
287
+ -moz-border-radius: 3px;
288
+ border-radius: 3px;
289
+ min-height: 30px;
290
+ line-height: 30px;
291
+ }
292
+ .show-grid:hover [class*="span"] {
293
+ background: #ddd;
294
+ }
295
+ .show-grid .show-grid {
296
+ margin-top: 0;
297
+ margin-bottom: 0;
298
+ }
299
+ .show-grid .show-grid [class*="span"] {
300
+ background-color: #ccc;
301
+ }
302
+
303
+
304
+ /* Render mini layout previews
305
+ -------------------------------------------------- */
306
+ .mini-layout {
307
+ border: 1px solid #ddd;
308
+ -webkit-border-radius: 6px;
309
+ -moz-border-radius: 6px;
310
+ border-radius: 6px;
311
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.075);
312
+ -moz-box-shadow: 0 1px 2px rgba(0,0,0,.075);
313
+ box-shadow: 0 1px 2px rgba(0,0,0,.075);
314
+ }
315
+ .mini-layout {
316
+ height: 240px;
317
+ margin-bottom: 20px;
318
+ padding: 9px;
319
+ }
320
+ .mini-layout div {
321
+ -webkit-border-radius: 3px;
322
+ -moz-border-radius: 3px;
323
+ border-radius: 3px;
324
+ }
325
+ .mini-layout .mini-layout-body {
326
+ background-color: #dceaf4;
327
+ margin: 0 auto;
328
+ width: 70%;
329
+ height: 240px;
330
+ }
331
+ .mini-layout.fluid .mini-layout-sidebar,
332
+ .mini-layout.fluid .mini-layout-header,
333
+ .mini-layout.fluid .mini-layout-body {
334
+ float: left;
335
+ }
336
+ .mini-layout.fluid .mini-layout-sidebar {
337
+ background-color: #bbd8e9;
338
+ width: 20%;
339
+ height: 240px;
340
+ }
341
+ .mini-layout.fluid .mini-layout-body {
342
+ width: 77.5%;
343
+ margin-left: 2.5%;
344
+ }
345
+
346
+
347
+ /* Popover docs
348
+ -------------------------------------------------- */
349
+ .popover-well {
350
+ min-height: 160px;
351
+ }
352
+ .popover-well .popover {
353
+ display: block;
354
+ }
355
+ .popover-well .popover-wrapper {
356
+ width: 50%;
357
+ height: 160px;
358
+ float: left;
359
+ margin-left: 55px;
360
+ position: relative;
361
+ }
362
+ .popover-well .popover-menu-wrapper {
363
+ height: 80px;
364
+ }
365
+ .large-bird {
366
+ margin: 5px 0 0 310px;
367
+ opacity: .1;
368
+ }
369
+
370
+
371
+ /* Download page
372
+ -------------------------------------------------- */
373
+ .download .page-header {
374
+ margin-top: 36px;
375
+ }
376
+ .page-header .toggle-all {
377
+ margin-top: 5px;
378
+ }
379
+
380
+ /* Space out h3s when following a section */
381
+ .download h3 {
382
+ margin-bottom: 5px;
383
+ }
384
+ .download-builder input + h3,
385
+ .download-builder .checkbox + h3 {
386
+ margin-top: 9px;
387
+ }
388
+
389
+ /* Fields for variables */
390
+ .download-builder input[type=text] {
391
+ margin-bottom: 9px;
392
+ font-family: Menlo, Monaco, "Courier New", monospace;
393
+ font-size: 12px;
394
+ color: #d14;
395
+ }
396
+ .download-builder input[type=text]:focus {
397
+ background-color: #fff;
398
+ }
399
+
400
+ /* Custom, larger checkbox labels */
401
+ .download .checkbox {
402
+ padding: 6px 10px 6px 25px;
403
+ color: #555;
404
+ background-color: #f9f9f9;
405
+ -webkit-border-radius: 3px;
406
+ -moz-border-radius: 3px;
407
+ border-radius: 3px;
408
+ cursor: pointer;
409
+ }
410
+ .download .checkbox:hover {
411
+ color: #333;
412
+ background-color: #f5f5f5;
413
+ }
414
+ .download .checkbox small {
415
+ font-size: 12px;
416
+ color: #777;
417
+ }
418
+
419
+ /* Variables section */
420
+ #variables label {
421
+ margin-bottom: 0;
422
+ }
423
+
424
+ /* Giant download button */
425
+ .download-btn {
426
+ margin: 36px 0 108px;
427
+ }
428
+ #download p,
429
+ #download h4 {
430
+ max-width: 50%;
431
+ margin: 0 auto;
432
+ color: #999;
433
+ text-align: center;
434
+ }
435
+ #download h4 {
436
+ margin-bottom: 0;
437
+ }
438
+ #download p {
439
+ margin-bottom: 18px;
440
+ }
441
+ .download-btn .btn {
442
+ display: block;
443
+ width: auto;
444
+ padding: 19px 24px;
445
+ margin-bottom: 27px;
446
+ font-size: 30px;
447
+ line-height: 1;
448
+ text-align: center;
449
+ -webkit-border-radius: 6px;
450
+ -moz-border-radius: 6px;
451
+ border-radius: 6px;
452
+ }
453
+
454
+
455
+
456
+ /* Color swatches on LESS docs page
457
+ -------------------------------------------------- */
458
+ /* Sets the width of the td */
459
+ .swatch-col {
460
+ width: 30px;
461
+ }
462
+ /* Le swatch */
463
+ .swatch {
464
+ display: inline-block;
465
+ width: 30px;
466
+ height: 20px;
467
+ margin: -6px 0;
468
+ -webkit-border-radius: 3px;
469
+ -moz-border-radius: 3px;
470
+ border-radius: 3px;
471
+ }
472
+ /* For white swatches, give a border */
473
+ .swatch-bordered {
474
+ width: 28px;
475
+ height: 18px;
476
+ border: 1px solid #eee;
477
+ }
478
+
479
+
480
+ /* Misc
481
+ -------------------------------------------------- */
482
+
483
+ /* Make tables spaced out a bit more */
484
+ h2 + table,
485
+ h3 + table,
486
+ h4 + table,
487
+ h2 + .row {
488
+ margin-top: 5px;
489
+ }
490
+
491
+ /* Example sites showcase */
492
+ .example-sites img {
493
+ max-width: 100%;
494
+ margin: 0 auto;
495
+ }
496
+ .marketing-byline {
497
+ margin: -18px 0 27px;
498
+ font-size: 18px;
499
+ font-weight: 300;
500
+ line-height: 24px;
501
+ color: #999;
502
+ text-align: center;
503
+ }
504
+
505
+ .scrollspy-example {
506
+ height: 200px;
507
+ overflow: auto;
508
+ position: relative;
509
+ }
510
+
511
+ /* Remove bottom margin on example forms in wells */
512
+ form.well {
513
+ padding: 14px;
514
+ }
515
+
516
+ /* Tighten up spacing */
517
+ .well hr {
518
+ margin: 18px 0;
519
+ }
520
+
521
+ /* Fake the :focus state to demo it */
522
+ .focused {
523
+ border-color: rgba(82,168,236,.8);
524
+ -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6);
525
+ -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6);
526
+ box-shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6);
527
+ outline: 0;
528
+ }
529
+
530
+ /* For input sizes, make them display block */
531
+ .docs-input-sizes select,
532
+ .docs-input-sizes input[type=text] {
533
+ display: block;
534
+ margin-bottom: 9px;
535
+ }
536
+
537
+ /* Icons
538
+ ------------------------- */
539
+ .the-icons {
540
+ margin-left: 0;
541
+ list-style: none;
542
+ }
543
+ .the-icons i:hover {
544
+ background-color: rgba(255,0,0,.25);
545
+ }
546
+
547
+ /* Eaxmples page
548
+ ------------------------- */
549
+ .bootstrap-examples .thumbnail {
550
+ margin-bottom: 9px;
551
+ background-color: #fff;
552
+ }
553
+
554
+ /* Responsive table
555
+ ------------------------- */
556
+ .responsive-utilities th small {
557
+ display: block;
558
+ font-weight: normal;
559
+ color: #999;
560
+ }
561
+ .responsive-utilities tbody th {
562
+ font-weight: normal;
563
+ }
564
+ .responsive-utilities td {
565
+ text-align: center;
566
+ }
567
+ .responsive-utilities td.is-visible {
568
+ color: #468847;
569
+ background-color: #dff0d8 !important;
570
+ }
571
+ .responsive-utilities td.is-hidden {
572
+ color: #ccc;
573
+ background-color: #f9f9f9 !important;
574
+ }
575
+
576
+ /* Responsive tests
577
+ ------------------------- */
578
+ .responsive-utilities-test {
579
+ margin-top: 5px;
580
+ margin-left: 0;
581
+ list-style: none;
582
+ overflow: hidden; /* clear floats */
583
+ }
584
+ .responsive-utilities-test li {
585
+ position: relative;
586
+ float: left;
587
+ width: 25%;
588
+ height: 43px;
589
+ font-size: 14px;
590
+ font-weight: bold;
591
+ line-height: 43px;
592
+ color: #999;
593
+ text-align: center;
594
+ border: 1px solid #ddd;
595
+ -webkit-border-radius: 4px;
596
+ -moz-border-radius: 4px;
597
+ border-radius: 4px;
598
+ }
599
+ .responsive-utilities-test li + li {
600
+ margin-left: 10px;
601
+ }
602
+ .responsive-utilities-test span {
603
+ position: absolute;
604
+ top: -1px;
605
+ left: -1px;
606
+ right: -1px;
607
+ bottom: -1px;
608
+ -webkit-border-radius: 4px;
609
+ -moz-border-radius: 4px;
610
+ border-radius: 4px;
611
+ }
612
+ .responsive-utilities-test span {
613
+ color: #468847;
614
+ background-color: #dff0d8;
615
+ border: 1px solid #d6e9c6;
616
+ }
617
+
618
+
619
+ /* Responsive Docs
620
+ -------------------------------------------------- */
621
+ @media (max-width: 480px) {
622
+
623
+ /* Reduce padding above jumbotron */
624
+ body {
625
+ padding-top: 70px;
626
+ }
627
+
628
+ /* Change up some type stuff */
629
+ h2 {
630
+ margin-top: 27px;
631
+ }
632
+ h2 small {
633
+ display: block;
634
+ line-height: 18px;
635
+ }
636
+ h3 {
637
+ margin-top: 18px;
638
+ }
639
+
640
+ /* icons */
641
+ .marketing .bs-icon {
642
+ margin: 0;
643
+ }
644
+
645
+ /* Adjust the jumbotron */
646
+ .jumbotron h1,
647
+ .jumbotron p {
648
+ text-align: center;
649
+ margin-right: 0;
650
+ }
651
+ .jumbotron h1 {
652
+ font-size: 45px;
653
+ margin-right: 0;
654
+ }
655
+ .jumbotron p {
656
+ margin-right: 0;
657
+ margin-left: 0;
658
+ font-size: 18px;
659
+ line-height: 24px;
660
+ }
661
+ .jumbotron .btn {
662
+ display: block;
663
+ font-size: 18px;
664
+ padding: 10px 14px;
665
+ margin: 0 auto 10px;
666
+ }
667
+ /* Masthead (home page jumbotron) */
668
+ .masthead {
669
+ padding-top: 0;
670
+ }
671
+
672
+ /* Don't space out quick links so much */
673
+ .quick-links {
674
+ margin: 40px 0 0;
675
+ }
676
+ /* hide the bullets on mobile since our horizontal space is limited */
677
+ .quick-links .divider {
678
+ display: none;
679
+ }
680
+
681
+ /* center example sites */
682
+ .example-sites {
683
+ margin-left: 0;
684
+ }
685
+ .example-sites > li {
686
+ float: none;
687
+ display: block;
688
+ max-width: 280px;
689
+ margin: 0 auto 18px;
690
+ text-align: center;
691
+ }
692
+ .example-sites .thumbnail > img {
693
+ max-width: 270px;
694
+ }
695
+
696
+ table code {
697
+ white-space: normal;
698
+ word-wrap: break-word;
699
+ word-break: break-all;
700
+ }
701
+
702
+ /* Modal example */
703
+ .modal-example .modal {
704
+ position: relative;
705
+ top: auto;
706
+ right: auto;
707
+ bottom: auto;
708
+ left: auto;
709
+ }
710
+
711
+ }
712
+
713
+
714
+ @media (max-width: 768px) {
715
+
716
+ /* Remove any padding from the body */
717
+ body {
718
+ padding-top: 0;
719
+ }
720
+
721
+ /* Jumbotron buttons */
722
+ .jumbotron .btn {
723
+ margin-bottom: 10px;
724
+ }
725
+
726
+ /* Subnav */
727
+ .subnav {
728
+ position: static;
729
+ top: auto;
730
+ z-index: auto;
731
+ width: auto;
732
+ height: auto;
733
+ background: #fff; /* whole background property since we use a background-image for gradient */
734
+ -webkit-box-shadow: none;
735
+ -moz-box-shadow: none;
736
+ box-shadow: none;
737
+ }
738
+ .subnav .nav > li {
739
+ float: none;
740
+ }
741
+ .subnav .nav > li > a {
742
+ border: 0;
743
+ }
744
+ .subnav .nav > li + li > a {
745
+ border-top: 1px solid #e5e5e5;
746
+ }
747
+ .subnav .nav > li:first-child > a,
748
+ .subnav .nav > li:first-child > a:hover {
749
+ -webkit-border-radius: 4px 4px 0 0;
750
+ -moz-border-radius: 4px 4px 0 0;
751
+ border-radius: 4px 4px 0 0;
752
+ }
753
+
754
+ /* Popovers */
755
+ .large-bird {
756
+ display: none;
757
+ }
758
+ .popover-well .popover-wrapper {
759
+ margin-left: 0;
760
+ }
761
+
762
+ /* Space out the show-grid examples */
763
+ .show-grid [class*="span"] {
764
+ margin-bottom: 5px;
765
+ }
766
+
767
+ /* Unfloat the back to top link in footer */
768
+ .footer .pull-right {
769
+ float: none;
770
+ }
771
+ .footer p {
772
+ margin-bottom: 9px;
773
+ }
774
+
775
+ }
776
+
777
+
778
+ @media (min-width: 480px) and (max-width: 768px) {
779
+
780
+ /* Scale down the jumbotron content */
781
+ .jumbotron h1 {
782
+ font-size: 54px;
783
+ }
784
+ .jumbotron p {
785
+ margin-right: 0;
786
+ margin-left: 0;
787
+ }
788
+
789
+ }
790
+
791
+
792
+ @media (min-width: 768px) and (max-width: 980px) {
793
+
794
+ /* Remove any padding from the body */
795
+ body {
796
+ padding-top: 0;
797
+ }
798
+
799
+ /* Scale down the jumbotron content */
800
+ .jumbotron h1 {
801
+ font-size: 72px;
802
+ }
803
+
804
+ }
805
+
806
+
807
+ @media (max-width: 980px) {
808
+
809
+ /* Unfloat brand */
810
+ .navbar-fixed-top .brand {
811
+ float: left;
812
+ margin-left: 0;
813
+ padding-left: 10px;
814
+ padding-right: 10px;
815
+ }
816
+
817
+ /* Inline-block quick links for more spacing */
818
+ .quick-links li {
819
+ display: inline-block;
820
+ margin: 5px;
821
+ }
822
+
823
+ }
824
+
825
+
826
+ /* LARGE DESKTOP SCREENS */
827
+ @media (min-width: 1210px) {
828
+
829
+ /* Update subnav container */
830
+ .subnav-fixed .nav {
831
+ width: 1168px; /* 2px less to account for left/right borders being removed when in fixed mode */
832
+ }
833
+
834
+ }