From ad9988663d9d916c324c69f87f4446b2aa77e371 Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Thu, 26 Oct 2006 06:54:51 +0000 Subject: [PATCH 1/1] Start using CSS --- Styles/service.style | 3 +- src/Infodrom/stats/firewall.wml | 4 +- src/Infodrom/stats/index.wml | 2 +- src/Infodrom/stats/mail-overview.wml | 8 ++-- src/Infodrom/stats/mail.wml | 2 +- src/Infodrom/stats/monthly.wml | 2 +- src/Infodrom/stats/spam-overview.wml | 8 ++-- src/Infodrom/stats/traffic.wml | 8 ++-- src/infodrom.css | 57 ++++++++++++++++++++++++++++ 9 files changed, 76 insertions(+), 18 deletions(-) create mode 100644 src/infodrom.css diff --git a/Styles/service.style b/Styles/service.style index 24d8913..2351840 100644 --- a/Styles/service.style +++ b/Styles/service.style @@ -33,8 +33,9 @@ <get-var pagetitle> + - + diff --git a/src/Infodrom/stats/firewall.wml b/src/Infodrom/stats/firewall.wml index b782c8f..90d4fef 100644 --- a/src/Infodrom/stats/firewall.wml +++ b/src/Infodrom/stats/firewall.wml @@ -2,7 +2,7 @@ -

Daily Statistics

+

Daily Statistics

[Firewall Violations] @@ -12,7 +12,7 @@ [Total Firewall Violations]
-

Monthly Statistics

+

Monthly Statistics

[Firewall Violations] diff --git a/src/Infodrom/stats/index.wml b/src/Infodrom/stats/index.wml index e382c2a..45c1ebd 100644 --- a/src/Infodrom/stats/index.wml +++ b/src/Infodrom/stats/index.wml @@ -2,7 +2,7 @@ -

Daily Statistics

+

Daily Statistics

\ diff --git a/src/Infodrom/stats/mail-overview.wml b/src/Infodrom/stats/mail-overview.wml index 7638a35..0b44138 100644 --- a/src/Infodrom/stats/mail-overview.wml +++ b/src/Infodrom/stats/mail-overview.wml @@ -2,25 +2,25 @@ -

Daily Statistics

+

Daily Statistics

[Daily Mails]\
-

Weekly Statistics

+

Weekly Statistics

[Weekly Mails]\
-

Monthly Statistics

+

Monthly Statistics

[Monthly Mails]\
-

Yearly Statistics

+

Yearly Statistics

[Yearly Mails]\ diff --git a/src/Infodrom/stats/mail.wml b/src/Infodrom/stats/mail.wml index ffc0799..210dfbc 100644 --- a/src/Infodrom/stats/mail.wml +++ b/src/Infodrom/stats/mail.wml @@ -2,7 +2,7 @@ -

Daily Statistics

+

Daily Statistics

\ diff --git a/src/Infodrom/stats/monthly.wml b/src/Infodrom/stats/monthly.wml index 90da3a3..0d94db6 100644 --- a/src/Infodrom/stats/monthly.wml +++ b/src/Infodrom/stats/monthly.wml @@ -2,7 +2,7 @@ -

Monthly Statistics

+

Monthly Statistics

[Monthly Traffic] diff --git a/src/Infodrom/stats/spam-overview.wml b/src/Infodrom/stats/spam-overview.wml index 43bc031..7a3e8fb 100644 --- a/src/Infodrom/stats/spam-overview.wml +++ b/src/Infodrom/stats/spam-overview.wml @@ -2,25 +2,25 @@ -

Daily Statistics

+

Daily Statistics

[Daily Spam]\
-

Weekly Statistics

+

Weekly Statistics

[Weekly Spam]\
-

Monthly Statistics

+

Monthly Statistics

[Monthly Spam]\
-

Yearly Statistics

+

Yearly Statistics

[Yearly Spam]\ diff --git a/src/Infodrom/stats/traffic.wml b/src/Infodrom/stats/traffic.wml index 2a88f83..8b2f0d0 100644 --- a/src/Infodrom/stats/traffic.wml +++ b/src/Infodrom/stats/traffic.wml @@ -2,7 +2,7 @@ -

Daily Statistics

+

Daily Statistics

[Daily Traffic] @@ -12,7 +12,7 @@ [Daily Traffic, bits/s]
-

Monthly Statistics

+

Monthly Statistics

[Monthly Traffic] @@ -22,7 +22,7 @@ [Monthly Traffic, bits/s]
-

Yearly Statistics

+

Yearly Statistics

[Yearly Traffic] @@ -32,7 +32,7 @@ [Yearly Traffic, bits/s]
-

Total Traffic

+

Total Traffic

[Total Traffic] diff --git a/src/infodrom.css b/src/infodrom.css new file mode 100644 index 0000000..16c1e2b --- /dev/null +++ b/src/infodrom.css @@ -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: +*/ -- 2.20.1