Skip to content

Instantly share code, notes, and snippets.

@ckizer
Created December 14, 2012 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckizer/4281720 to your computer and use it in GitHub Desktop.
Save ckizer/4281720 to your computer and use it in GitHub Desktop.
custom bootstrap navbar colors
/* custom navbar */
.navbar-inner {
min-height: 40px;
padding-left: 20px;
padding-right: 20px;
background-color: #d8e0e4;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(216, 224, 228)), to(rgb(152, 158, 161)));
background-image: -webkit-linear-gradient(top, rgb(216, 224, 228), rgb(152, 158, 161));
background-image: -moz-linear-gradient(top, rgb(216, 224, 228), rgb(152, 158, 161));
background-image: -ms-linear-gradient(top, rgb(216, 224, 228), rgb(152, 158, 161));
background-image: linear-gradient(top, rgb(216, 224, 228), rgb(152, 158, 161));
background-repeat: repeat-x;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
*zoom: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment