From e8ebbb6105726cde550b99c0f25d4fa6cdc74dc4 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Tue, 16 Sep 2008 02:38:53 +1200 Subject: [PATCH] Basic error page CSS file --- errors/errorpage.css | 49 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 errors/errorpage.css diff --git a/errors/errorpage.css b/errors/errorpage.css new file mode 100644 index 0000000000..277411499f --- /dev/null +++ b/errors/errorpage.css @@ -0,0 +1,49 @@ + +// page basics +html body { + background-color:#ffffff; + font-family:verdana,sans-serif +} + +// initial title +h1 { +} + +// page sub-title +h2 { +} + +// general text +p { +} + +// error brief description +#error p { +} + +// some data which may have caused the prblem +#data { +} + +// the error message received from the system or other software +#sysmsg { +} + + +pre { + font-family:sans-serif +} + +// horizontal lines +hr { +} + +// page footer +#footer { +} + +// special event: FTP success page titles +ftpsuccess { + background-color:#00ff00; + width:100% +} -- 2.47.3