# HG changeset patch # User Matti Hamalainen # Date 1250372110 -10800 # Node ID 9f02bf2207afddb731922d95f67d4c6af24557d6 # Parent e7e484c89dbcb31e8800c367926e88b048887b31 Addec example CSS stylesheet. diff -r e7e484c89dbc -r 9f02bf2207af example.css --- /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 + */ +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; +}