summaryrefslogtreecommitdiff
path: root/website/static/css
diff options
context:
space:
mode:
authorJayaram Pai2013-10-28 19:59:33 +0530
committerJayaram Pai2013-10-28 19:59:33 +0530
commit606014066e861338497f8897cca77dabc78c40ba (patch)
treea9aa1f1a325d963d090ebd249f09452f1ed669ce /website/static/css
parent473aee43e87fa34f2aa71bddd7452482aaf5f54e (diff)
downloadpyfoss-606014066e861338497f8897cca77dabc78c40ba.tar.gz
pyfoss-606014066e861338497f8897cca77dabc78c40ba.tar.bz2
pyfoss-606014066e861338497f8897cca77dabc78c40ba.zip
Basic Blocks added
Diffstat (limited to 'website/static/css')
-rw-r--r--website/static/css/main.css117
1 files changed, 117 insertions, 0 deletions
diff --git a/website/static/css/main.css b/website/static/css/main.css
new file mode 100644
index 0000000..7417bbe
--- /dev/null
+++ b/website/static/css/main.css
@@ -0,0 +1,117 @@
+@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{
+ /* font-family: ubuntu; */
+}
+#brand-logo{
+ width: 75px;
+}
+#brand-text{
+ position: relative;
+ top: 5px;
+ font-size: 2.2em;
+ font-family: cabin;
+}
+#page-wrapper{
+ border-top: 5px solid #366c9a;
+}
+#header-inner, #content-inner, #extra-inner, #footer-inner{
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 10px 0;
+}
+#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: 0 0 25px 0;
+}
+#footer-wrapper{
+ height: 300px;
+ background-color: #2F353A;
+}
+#footer-inner{
+ height: 300px;
+}
+#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;
+}
+.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;
+} \ No newline at end of file