From c2657bc0d4b5410a9810e77da306da0dd72451fe Mon Sep 17 00:00:00 2001 From: Cheese Cookie Date: Wed, 30 Oct 2013 23:22:58 +0530 Subject: Footer Block Implemented --- website/static/css/main.css | 39 +++++++++++++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 6 deletions(-) (limited to 'website/static/css') diff --git a/website/static/css/main.css b/website/static/css/main.css index 7417bbe..f8c0904 100644 --- a/website/static/css/main.css +++ b/website/static/css/main.css @@ -16,7 +16,7 @@ h1, h2, h3, h4, h5, h6{ font-family: cabin; } body{ - /* font-family: ubuntu; */ + background-color: #f5f5f5; } #brand-logo{ width: 75px; @@ -29,11 +29,17 @@ body{ } #page-wrapper{ border-top: 5px solid #366c9a; + + /* */ + max-width: 1200px; + margin: 25px auto; + box-shadow: 1px 1px 15px #cccccc; + background: #ffffff; } #header-inner, #content-inner, #extra-inner, #footer-inner{ max-width: 1200px; margin: 0 auto; - padding: 10px 0; + padding: 10px 15px; } #header-wrapper{ @@ -69,14 +75,13 @@ ul.nav li > a:focus{ } #content-inner{ min-height: 500px; - padding: 0 0 25px 0; + padding-bottom: 25px; } #footer-wrapper{ - height: 300px; background-color: #2F353A; + color: #ffffff; } #footer-inner{ - height: 300px; } #content{ padding: 0 25px 0 0; @@ -102,6 +107,10 @@ ul.nav li > a:focus{ } #sidebar ul li a{ color: #366c9a; + transition: padding .5s ease-out 0s; +} +#sidebar ul li a:hover{ + padding-left: 10px; } .block{ margin-top: 25px; @@ -114,4 +123,22 @@ ul.nav li > a:focus{ font-weight: bolder; margin-top:0; color: #ffffff; -} \ No newline at end of file +} +.foot{ + margin-top: 25px; +} +.foot-heading{ + text-align: center; + font-weight: bolder; +} +.foot ul{ + list-style-type: square; +} +.foot ul li{ + border-bottom: 1px solid #252525; + + + padding: 7px 0 7px 10px; +} +.foot ul li a{ + color: #ffffff; -- cgit