]> git.ipfire.org Git - thirdparty/squid.git/blob - errors/errorpage.css
SourceFormat Enforcement
[thirdparty/squid.git] / errors / errorpage.css
1 /*
2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 /*
10 Stylesheet for Squid Error pages
11 Adapted from design by Free CSS Templates
12 http://www.freecsstemplates.org
13 Released for free under a Creative Commons Attribution 2.5 License
14 */
15
16 /* Page basics */
17 * {
18 font-family: verdana, sans-serif;
19 }
20
21 html body {
22 margin: 0;
23 padding: 0;
24 background: #efefef;
25 font-size: 12px;
26 color: #1e1e1e;
27 }
28
29 /* Page displayed title area */
30 #titles {
31 margin-left: 15px;
32 padding: 10px;
33 padding-left: 100px;
34 background: url('http://www.squid-cache.org/Artwork/SN.png') no-repeat left;
35 }
36
37 /* initial title */
38 #titles h1 {
39 color: #000000;
40 }
41 #titles h2 {
42 color: #000000;
43 }
44
45 /* special event: FTP success page titles */
46 #titles ftpsuccess {
47 background-color:#00ff00;
48 width:100%;
49 }
50
51 /* Page displayed body content area */
52 #content {
53 padding: 10px;
54 background: #ffffff;
55 }
56
57 /* General text */
58 p {
59 }
60
61 /* error brief description */
62 #error p {
63 }
64
65 /* some data which may have caused the problem */
66 #data {
67 }
68
69 /* the error message received from the system or other software */
70 #sysmsg {
71 }
72
73 pre {
74 font-family:sans-serif;
75 }
76
77 /* special event: FTP / Gopher directory listing */
78 #dirmsg {
79 font-family: courier;
80 color: black;
81 font-size: 10pt;
82 }
83 #dirlisting {
84 margin-left: 2%;
85 margin-right: 2%;
86 }
87 #dirlisting tr.entry td.icon,td.filename,td.size,td.date {
88 border-bottom: groove;
89 }
90 #dirlisting td.size {
91 width: 50px;
92 text-align: right;
93 padding-right: 5px;
94 }
95
96 /* horizontal lines */
97 hr {
98 margin: 0;
99 }
100
101 /* page displayed footer area */
102 #footer {
103 font-size: 9px;
104 padding-left: 10px;
105 }