update bootstrap to 3.0.0-rc2
[bootswatch] / bower_components / bootstrap / examples / justified-nav / justified-nav.css
1 body {
2   padding-top: 20px;
3 }
4
5 /* Everything but the jumbotron gets side spacing for mobile-first views */
6 .masthead,
7 .footer {
8   padding-left: 15px;
9   padding-right: 15px;
10 }
11
12 .footer {
13   border-top: 1px solid #eee;
14   margin-top: 40px;
15   padding-top: 40px;
16   padding-bottom: 40px;
17 }
18
19 /* Main marketing message and sign up button */
20 .jumbotron {
21   text-align: center;
22   background-color: transparent;
23 }
24 .jumbotron .btn {
25   font-size: 21px;
26   padding: 14px 24px;
27 }
28
29 /* Customize the nav-justified links to be fill the entire space of the .navbar */
30
31 .nav-justified {
32   background-color: #eee;
33   border-radius: 5px;
34   border: 1px solid #ccc;
35 }
36 .nav-justified > li > a {
37   padding-top: 15px;
38   padding-bottom: 15px;
39   color: #777;
40   font-weight: bold;
41   text-align: center;
42   border-bottom: 1px solid #d5d5d5;
43   background-color: #e5e5e5; /* Old browsers */
44   background-repeat: repeat-x; /* Repeat the gradient */
45   background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); /* FF3.6+ */
46   background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
47   background-image: -webkit-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Chrome 10+,Safari 5.1+ */
48   background-image: -ms-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* IE10+ */
49   background-image: -o-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Opera 11.10+ */
50   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
51   background-image: linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* W3C */
52 }
53 .nav-justified > .active > a,
54 .nav-justified > .active > a:hover,
55 .nav-justified > .active > a:focus {
56   background-color: #ddd;
57   background-image: none;
58   box-shadow: inset 0 3px 7px rgba(0,0,0,.15);
59 }
60 .nav-justified > li:first-child > a {
61   border-radius: 5px 5px 0 0;
62 }
63 .nav-justified > li:last-child > a {
64   border-bottom: 0;
65   border-radius: 0 0 5px 5px;
66 }
67
68 @media (min-width: 768px) {
69   .nav-justified {
70     max-height: 52px;
71   }
72   .nav-justified > li > a {
73     border-left: 1px solid #fff;
74     border-right: 1px solid #d5d5d5;
75   }
76   .nav-justified > li:first-child > a {
77     border-left: 0;
78     border-radius: 5px 0 0 5px;
79   }
80   .nav-justified > li:last-child > a {
81     border-radius: 0 5px 5px 0;
82     border-right: 0;
83   }
84 }
85
86
87
88 /* Responsive: Portrait tablets and up */
89 @media screen and (min-width: 768px) {
90   /* Remove the padding we set earlier */
91   .masthead,
92   .marketing,
93   .footer {
94     padding-left: 0;
95     padding-right: 0;
96   }
97 }