aboutsummaryrefslogtreecommitdiff
path: root/dist/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-07-31 18:02:12 -0700
committerMark Otto <[email protected]>2013-07-31 18:02:12 -0700
commit3c39bc0d9609389f5e2e0357a677f50058d02a8a (patch)
treebeb61d2b623c07ab629e01e2eb2ce08532ce622d /dist/css/bootstrap.css
parent60e1f5e0e80602f3e1d00a77920b41c794175c0a (diff)
downloadbootstrap-3c39bc0d9609389f5e2e0357a677f50058d02a8a.tar.xz
bootstrap-3c39bc0d9609389f5e2e0357a677f50058d02a8a.zip
start on navbar
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index 9997f3975..e506b634e 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -4826,4 +4826,24 @@ td.visible-print {
border-color: #2aabd2;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
+
+.navbar {
+ background-color: #eeeeee;
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#eeeeee));
+ background-image: -webkit-linear-gradient(top, #ffffff, 0%, #eeeeee, 100%);
+ background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
+ background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
+}
+
+.navbar-inverse {
+ background-color: #222222;
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3c3c3c), to(#222222));
+ background-image: -webkit-linear-gradient(top, #3c3c3c, 0%, #222222, 100%);
+ background-image: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
+ background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
} \ No newline at end of file