changeset 33:9f02bf2207af

Addec example CSS stylesheet.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 16 Aug 2009 00:35:10 +0300
parents e7e484c89dbc
children e4ffe2ce29a3
files example.css
diffstat 1 files changed, 60 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/example.css	Sun Aug 16 00:35:10 2009 +0300
@@ -0,0 +1,60 @@
+/* Example CSS stylesheet for Maltfilter
+ * by Matti 'ccr' Hamalainen <ccr tnsp org>
+ */
+body {
+	margin: 1em;
+	background-color: #467;
+	color: white;
+}
+
+
+body, p, ul, td, th {
+	font-family: Verdana, Arial, helvetica, sans-serif;
+	font-size: 10pt;
+}
+
+
+a, a:visited, a:active {
+	color: #fc0;
+}
+
+a:hover {
+	text-decoration: underline;
+	color: white;
+}	
+
+
+h1, h2, h3 {
+	font-family: Arial, sans-serif;
+	font-weight: normal;
+	color: #035;
+	background: #79a;
+	padding: 4px;
+	border-bottom: 2px solid black;
+}
+
+th {
+	padding: 2px;
+	margin: 2px;
+	background: #689;
+	color: #035;
+	text-align: center;
+}
+
+td {
+	padding: 4px;
+	margin: 2px;
+}
+
+table.detailed, table.summary {
+	border: 1px solid white;
+}
+
+table.detailed td, table.summary td {
+	font-size: 8pt;
+}
+
+td.blocked {
+	background: #400;
+	color: red;
+}