Switch to CSS
authorJoey Schulze <joey@infodrom.org>
Fri, 20 Oct 2006 07:50:01 +0000 (07:50 +0000)
committerJoey Schulze <joey@infodrom.org>
Fri, 20 Oct 2006 07:50:01 +0000 (07:50 +0000)
Styles/infodrom.style
src/infodrom.css [new file with mode: 0644]

index f74dd60..72bea29 100644 (file)
@@ -23,6 +23,7 @@
 <meta name="Keywords"  content="<get-var keywords>">
 >
 <info style=meta domainname="infodrom.org" copyright="(c) Martin Schulze, Infodrom Oldenburg, reuse has to be negotiated">
 <meta name="Keywords"  content="<get-var keywords>">
 >
 <info style=meta domainname="infodrom.org" copyright="(c) Martin Schulze, Infodrom Oldenburg, reuse has to be negotiated">
+<link href="<root_prefix>infodrom.css" rel="stylesheet" type="text/css">
 </head>
 <body bgcolor="#<bgcolor>" text="#<textcolor>" vlink="#000090" alink="#e709f7" link="#1717ef">
 
 </head>
 <body bgcolor="#<bgcolor>" text="#<textcolor>" vlink="#000090" alink="#e709f7" link="#1717ef">
 
diff --git a/src/infodrom.css b/src/infodrom.css
new file mode 100644 (file)
index 0000000..16c1e2b
--- /dev/null
@@ -0,0 +1,57 @@
+/*
+ * General settings
+ */
+body {
+  font-family: Verdana, Helvetica, Arial, sans-serif;
+  font-size: 13px;
+  line-height: 20px;
+  background-color: #f7f7f7;
+  color: #000000;
+}
+
+/*
+ * No underline for links
+ */
+a:link {
+  text-decoration: none;
+  cursor: pointer;
+}
+a:visited {
+  text-decoration: none;
+  cursor: pointer;
+}
+
+/*
+ * General layout
+ */
+.font {
+  font-size: 13px;
+}
+h3.bar {
+  padding-left: 5px;
+  font-size: 16px;
+  background: #e5e5e5;
+}
+
+/*
+ * Footer
+ */
+div.footer {
+  clear: both;
+  border-top: 1px solid #707070;
+}
+div.footerleft {
+  float: left;
+  font-size: xx-small;
+}
+div.footerright {
+  float: right;
+  font-size: xx-small;
+}
+
+/*
+ * Local variables:
+ * mode: indented-text
+ * mode: auto-fill
+ * End:
+*/