Created
December 14, 2012 01:22
-
-
Save ckizer/4281720 to your computer and use it in GitHub Desktop.
custom bootstrap navbar colors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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