Skip to content

Instantly share code, notes, and snippets.

@planetoftheweb
Created November 1, 2012 15:31
Show Gist options
  • Select an option

  • Save planetoftheweb/3994348 to your computer and use it in GitHub Desktop.

Select an option

Save planetoftheweb/3994348 to your computer and use it in GitHub Desktop.
Navbar Adjustments
.navbar-inner {
background-color: #114B53;
background-image: -moz-linear-gradient(top, #0E3D43, #082327) !important;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0E3D43), to(#082327)) !important;
background-image: -webkit-linear-gradient(top, #0E3D43, #082327) !important;
background-image: -o-linear-gradient(top, #0E3D43, #E2E6AC) !important;
background-image: linear-gradient(to bottom, #0E3D43, #114B53) !important;
}
.navbar .brand {
font-family: "Lobster two";
font-size: 2.2em;
line-height: 1em;
color: white;
}
.navbar .nav > li > a {
margin-top: 22px;
padding: 5px 20px;
-webkit-border-radius: 10px 10px 0 0;
-moz-border-radius: 10px 10px 0 0;
border-radius: 10px 10px 0 0;
}
.navbar-inverse .nav > li > a {
color: #FFF;
}
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
background-color: #8A2E2E;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment