Use at least some CSS instead of direct font and other definitions
authorJoey Schulze <joey@infodrom.org>
Sat, 30 Aug 2008 10:58:53 +0000 (10:58 +0000)
committerJoey Schulze <joey@infodrom.org>
Sat, 30 Aug 2008 10:58:53 +0000 (10:58 +0000)
src/infodrom.css [new file with mode: 0644]

diff --git a/src/infodrom.css b/src/infodrom.css
new file mode 100644 (file)
index 0000000..c6137e1
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * General settings
+ */
+body {
+  font-family: Verdana, Helvetica, Arial, sans-serif;
+  font-size: 13px;
+  line-height: 18px;
+  background-color: #cdf7d3;
+  color: #000000;
+}
+
+/*
+ * No underline for links
+ */
+a:link, a:visited {
+  text-decoration: none;
+  cursor: pointer;
+}
+a:link:hover, a:visited:hover {
+  color: #ff0000;
+}
+
+/*
+ * General layout
+ */
+.font {
+  font-size: 13px;
+}