aboutsummaryrefslogtreecommitdiffstats
path: root/static/main.css
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-03-10 14:02:59 +0100
committerGravatar Tom Willemsen2012-03-10 14:02:59 +0100
commit63d1ed7d192e2e17665add4f70dca10c2681d704 (patch)
treeecf583a24eeecc98d1b5428ce1a9a0ad15fb7c83 /static/main.css
parentca93d7a2d20f2044bfe3a15ecd43160ba84d7ad2 (diff)
downloadryuslash.org-63d1ed7d192e2e17665add4f70dca10c2681d704.tar.gz
ryuslash.org-63d1ed7d192e2e17665add4f70dca10c2681d704.zip
Add a little 'design' to the site
Diffstat (limited to 'static/main.css')
-rw-r--r--static/main.css113
1 files changed, 113 insertions, 0 deletions
diff --git a/static/main.css b/static/main.css
new file mode 100644
index 0000000..243431d
--- /dev/null
+++ b/static/main.css
@@ -0,0 +1,113 @@
+* {
+ padding: 0;
+ margin: 0;
+ border: 0;
+}
+
+a {
+ text-decoration: none;
+ color: #bbbbbb;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+body {
+ background-color: #000000;
+ font-family: "DejaVu Sans", sans-serif;
+}
+
+.post {
+ background-color: #808080;
+ padding: 5px;
+ border: 1px #505050 solid;
+ margin-bottom: 15px;
+ color: #000000;
+}
+
+.post .posttitle {
+ margin-bottom: 10px;
+}
+
+#logo {
+ float: left;
+}
+
+#sitetitle {
+ background-color: #000000;
+ color: #ffffff;
+ height: 70px;
+ line-height: 70px;
+}
+
+#sitetitle #blue {
+ color: #4169E1;
+ position: relative;
+ top: -5px;
+}
+
+#sitetitle #orange {
+ color: #ff9800;
+ position: relative;
+ top: 5px;
+}
+
+#sitesubtitle {
+ background-color: #404040;
+ color: #dddddd;
+ text-align: right;
+ height: 30px;
+ line-height: 30px;
+ border-top: 1px #808080 solid;
+}
+
+#content {
+ width: 750px;
+ margin: 0 auto;
+ color: #ffffff;
+ margin-top: 2px;
+}
+
+#content h2 {
+ margin-bottom: 3px;
+}
+
+#feeds {
+ float: right;
+ background-color: #404040;
+}
+
+#feeds a {
+ color: #dddddd;
+ display: block;
+ padding: 5px;
+ text-decoration: none;
+}
+
+#feeds a:hover {
+ background-color: #dddddd;
+ color: #404040;
+}
+
+#pager {
+ background-color: #808080;
+ color: #000000;
+ padding: 0 5px;
+ position: relative;
+}
+
+#pager #previous {
+ position: absolute;
+ left: 5px;
+}
+
+#pager #next {
+ float: right;
+ position: absolute;
+ right: 5px;
+}
+
+#pager #current {
+ text-align: center;
+}