From f147212d8c31d969c12b3be73496a0cc3088b993 Mon Sep 17 00:00:00 2001 From: duergner Date: Sat, 3 May 2003 15:45:10 +0000 Subject: [PATCH] CSS information for templates/status.php added. --- lam/style/500_layout.css | 90 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/lam/style/500_layout.css b/lam/style/500_layout.css index 88f873c3..dc1dabf8 100644 --- a/lam/style/500_layout.css +++ b/lam/style/500_layout.css @@ -165,3 +165,93 @@ tr.account { } +/** + * Color and font definitions for templates/status.php + * + */ + +/* Background olor for the different Status Messages */ +div.status_info { + background-color:#5C7EC6; +} + +div.status_warn { + background-color:#CE8037; +} + +div.status_error { + background-color:#C65146; +} + +/* H1 (MessageTyp) font size, family, color, and some more settings for the different Status Messages */ +h1.status_info { + font-size:16pt; + font-family:arial; + color:#FFFFFF; + margin-left:20px; +} + +h1.status_warn { + font-size:16pt; + font-family:arial; + color:#FFFFFF; + margin-left:20px; +} + +h1.status_error { + font-size:16pt; + font-family:arial; + color:#FFFFFF; + margin-left:20px; +} + +/* H2 (MessageHeadline) font size, family, color, and some more settings for the different Status Messages */ +h2.status_info { + font-size:13pt; + font-family:arial; + color:#FFFFFF; + margin-left:25px; + margin-right:25px; +} + +h2.status_warn { + font-size:13pt; + font-family:arial; + color:#FFFFFF; + margin-left:25px; + margin-right:25px; +} + +h2.status_error { + font-size:13pt; + font-family:arial; + color:#FFFFFF; + margin-left:25px; + margin-right:25px; +} + +/* P (MessageText) font size, family, color, and some more settings for the different Status Messages */ +p.status_info { + font-size:11pt; + font-family:serif; + color:#FFFFFF; + margin-left:35px; + margin-right:35px; +} + +p.status_warn { + font-size:11pt; + font-family:serif; + color:#FFFFFF; + margin-left:35px; + margin-right:35px; +} + +p.status_error { + font-size:11pt; + font-family:serif; + color:#FFFFFF; + margin-left:35px; + margin-right:35px; +} +