diff options
author | Thomas Park <thomas@thomaspark.me> | 2012-03-10 16:10:19 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2012-03-10 16:10:19 -0500 |
commit | 30b7d33a6af92df9989765f192afeada2b377168 (patch) | |
tree | e1b1c4d454907b0526877431985da3ac5cd48dbf | |
parent | 78a84c3b2cfeadf2f338044213b504162a8fabf2 (diff) |
amelia: fixed footer
-rw-r--r-- | amelia/bootstrap.css | 5 | ||||
-rw-r--r-- | amelia/bootstrap.min.css | 3 | ||||
-rwxr-xr-x | amelia/bootswatch.less | 7 |
3 files changed, 11 insertions, 4 deletions
diff --git a/amelia/bootstrap.css b/amelia/bootstrap.css index a4d28b0c..e77662ff 100644 --- a/amelia/bootstrap.css +++ b/amelia/bootstrap.css @@ -3533,11 +3533,14 @@ body { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f8790', endColorstr='#4397a2', GradientType=0); } hr { - border-bottom: 1px solid rgba(256, 256, 256, 0.5); + border-bottom: 1px solid rgba(256, 256, 256, 0.3); } .page-header { border-bottom: 0px solid transparent; } +footer.footer { + border-top: 1px solid rgba(256, 256, 256, 0.3); +} .navbar .navbar-inner { -webkit-border-radius: 0; -moz-border-radius: 0; diff --git a/amelia/bootstrap.min.css b/amelia/bootstrap.min.css index 2ddbdd2b..5e0fb00b 100644 --- a/amelia/bootstrap.min.css +++ b/amelia/bootstrap.min.css @@ -635,8 +635,9 @@ h1,h2,h3,h4,h5,h6,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:rg input,button,select,textarea,.navbar-search .search-query{font-family:'Cabin',Verdana,sans-serif;} .muted{color:rgba(256, 256, 256, 0.5);} body{background-color:#4397A2;background-color:#248d97;background-image:-moz-linear-gradient(top, #0f8790, #4397a2);background-image:-ms-linear-gradient(top, #0f8790, #4397a2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0f8790), to(#4397a2));background-image:-webkit-linear-gradient(top, #0f8790, #4397a2);background-image:-o-linear-gradient(top, #0f8790, #4397a2);background-image:linear-gradient(top, #0f8790, #4397a2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f8790', endColorstr='#4397a2', GradientType=0);} -hr{border-bottom:1px solid rgba(256, 256, 256, 0.5);} +hr{border-bottom:1px solid rgba(256, 256, 256, 0.3);} .page-header{border-bottom:0px solid transparent;} +footer.footer{border-top:1px solid rgba(256, 256, 256, 0.3);} .navbar .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .navbar .brand{padding-top:12px;font-size:24px;} .navbar .nav>li>a{padding-top:17px;padding-bottom:14px;text-shadow:none;color:rgba(256, 256, 256, 0.9);} diff --git a/amelia/bootswatch.less b/amelia/bootswatch.less index 41b1de67..f7a1fc92 100755 --- a/amelia/bootswatch.less +++ b/amelia/bootswatch.less @@ -32,14 +32,17 @@ body { } hr { - border-bottom: 1px solid rgba(256, 256, 256, 0.5); + border-bottom: 1px solid rgba(256, 256, 256, 0.3); } - .page-header { border-bottom: 0px solid transparent; } +footer.footer { + border-top: 1px solid rgba(256, 256, 256, 0.3); +} + // NAVBAR // ----------------------------------------------------- |