diff options
Diffstat (limited to 'static/website/css/main.css')
-rw-r--r-- | static/website/css/main.css | 151 |
1 files changed, 151 insertions, 0 deletions
diff --git a/static/website/css/main.css b/static/website/css/main.css new file mode 100644 index 0000000..887fa62 --- /dev/null +++ b/static/website/css/main.css @@ -0,0 +1,151 @@ +@font-face{ + font-family: cabin; + src: url("../fonts/Cabin-Regular.otf"); +} +@font-face{ + font-family: ubuntu; + src: url("../fonts/Cabin-Regular.otf"); +} +.clearfix{ + clear: both; +} +a{ + color: #366c9a; +} +h1, h2, h3, h4, h5, h6{ + font-family: cabin; +} +body{ + background-color: #f5f5f5; +} +#brand-logo{ + width: 75px; +} +#brand-text{ + position: relative; + top: 5px; + font-size: 2.2em; + font-family: cabin; +} +#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, #credits{ + max-width: 1200px; + margin: 0 auto; + padding: 10px 15px; +} +#header-wrapper{ + +} +#header-inner{ + border-bottom: 3px solid #f5f5f5; + height: 100px; +} +#main-nav{ + font-size: 1.3em; + position: relative; + top: 20px; + font-family: cabin; +} +#main-nav ul.nav li > a{ + color: #366c9a; +} +ul.nav li a:hover, ul.nav li a:focus{ + border-radius: 0; + background-color: #ffffff; +} +ul.nav > li > a:hover{ + border-bottom: 2px solid #ffca3a; +} +ul.nav li > a:focus{ + color: #ffca3a; + border-bottom: 0; +} +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus{ + background-color: #ffffff; +} +#content-wrapper{ +} +#content-inner{ + min-height: 500px; + padding-bottom: 25px; +} +#footer-wrapper{ + position: relative; + background-color: #2F353A; + color: #ffffff; +} +#footer-inner{ +} +#content{ + padding: 0 25px 0 0; + text-align: justify; +} +#sidebar{ + padding: 0; +} +#sidebar ul{ + list-style-type: none; + padding: 0; + margin: 0; +} +#sidebar ul li{ + padding: 3px 0 3px 5px; + border-bottom: 1px solid #2F353A; +} +#sidebar ul li:last-child{ + border-bottom: none; +} +#sidebar ul:last{ + border-bottom: 0px solid black; +} +#sidebar ul li a{ + color: #366c9a; + transition: padding .5s ease-out 0s; +} +#sidebar ul li a:hover{ + padding-left: 5px; +} +#django-logo{ + position: absolute; + width: 35px; + right: 10px; + bottom: 7px; +} +.block{ + margin-top: 25px; + border: 1px solid #f5f5f5; +} +.block-heading{ + background: #ffca3a; + padding: 5px 0; + text-align: center; + font-weight: bolder; + margin-top:0; + color: #ffffff; +} +.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; |