aboutsummaryrefslogtreecommitdiffstats
path: root/styles
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2009-07-07 20:16:51 +0200
committerStefan Ritter <xeno@thehappy.de>2009-07-07 20:16:51 +0200
commitc1b3799c19d4251f8b6f446c7e7d62de1da0d3b0 (patch)
tree10bb0580728ed710360292743865888f5a5415d8 /styles
parentb60d9c00a74a99cabb7acb145c5e26e290768f36 (diff)
First version of a third style (box)
Diffstat (limited to 'styles')
-rw-r--r--styles/box.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/styles/box.css b/styles/box.css
new file mode 100644
index 0000000..7a5f9bb
--- /dev/null
+++ b/styles/box.css
@@ -0,0 +1,59 @@
+/*
+ * Author: Stefan Ritter <xeno@thehappy.de>
+ */
+
+body {
+ background: #444444;
+ font-family: Monospace;
+ font-size: 9px;
+ color: #CCCCCC;
+ margin: auto;
+ margin-top: 5px;
+ margin-bottom: 5px;
+ width: 600px;
+ border: 1px solid #000000;
+}
+
+img {
+ border: 0px;
+}
+
+a {
+ color: #999999;
+}
+
+/* HEADER */
+
+div.header {
+ height: 25px;
+ width: 600px;
+ margin: auto;
+ text-align: center;
+ background: #222222;
+ border-bottom: 1px solid #000000;
+}
+
+div.header_title {
+ letter-spacing: 2px;
+}
+
+/* RSS and ATOM */
+
+div.rss {
+ position: absolute;
+ top: 5px;
+}
+
+a.rss_link {
+ text-decoration: none;
+}
+
+div.atom {
+ position: relative;
+ top: -27px;
+ left: 18px;
+}
+
+a.atom_link {
+ text-decoration: none;
+}