From: Amos Jeffries Date: Mon, 15 Sep 2008 14:38:53 +0000 (+1200) Subject: Basic error page CSS file X-Git-Tag: SQUID_3_1_0_1~45^2~24^2~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8ebbb6105726cde550b99c0f25d4fa6cdc74dc4;p=thirdparty%2Fsquid.git Basic error page CSS file --- 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% +}