]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Basic error page CSS file
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 15 Sep 2008 14:38:53 +0000 (02:38 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 15 Sep 2008 14:38:53 +0000 (02:38 +1200)
errors/errorpage.css [new file with mode: 0644]

diff --git a/errors/errorpage.css b/errors/errorpage.css
new file mode 100644 (file)
index 0000000..2774114
--- /dev/null
@@ -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%
+}