diff options
author | Cheese Cookie | 2013-10-30 23:22:58 +0530 |
---|---|---|
committer | Cheese Cookie | 2013-10-30 23:22:58 +0530 |
commit | c2657bc0d4b5410a9810e77da306da0dd72451fe (patch) | |
tree | 83b490c30698779383c3494be8da93b29827e3f0 /website/static/css | |
parent | 142cf148b57f0d262e8bda64630c6d7c2b0c2a6e (diff) | |
download | pyfoss-c2657bc0d4b5410a9810e77da306da0dd72451fe.tar.gz pyfoss-c2657bc0d4b5410a9810e77da306da0dd72451fe.tar.bz2 pyfoss-c2657bc0d4b5410a9810e77da306da0dd72451fe.zip |
Footer Block Implemented
Diffstat (limited to 'website/static/css')
-rw-r--r-- | website/static/css/main.css | 39 |
1 files changed, 33 insertions, 6 deletions
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; |