]> git.ipfire.org Git - thirdparty/squid.git/blame - errors/errorpage.css
Maintenance: update --with-heimdal-krb5 detection (#1687)
[thirdparty/squid.git] / errors / errorpage.css
CommitLineData
9a1b46cc 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
9a1b46cc
AJ
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
57e70e80
AJ
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*/
e8ebbb61 15
2efb44d2 16/* Page basics */
57e70e80
AJ
17* {
18 font-family: verdana, sans-serif;
19}
20
e8ebbb61 21html body {
57e70e80
AJ
22 margin: 0;
23 padding: 0;
24 background: #efefef;
25 font-size: 12px;
26 color: #1e1e1e;
e8ebbb61
AJ
27}
28
2efb44d2
AJ
29/* Page displayed title area */
30#titles {
57e70e80
AJ
31 margin-left: 15px;
32 padding: 10px;
33 padding-left: 100px;
06de590a 34 background: url('/squid-internal-static/icons/SN.png') no-repeat left;
e8ebbb61
AJ
35}
36
2efb44d2
AJ
37/* initial title */
38#titles h1 {
57e70e80 39 color: #000000;
2efb44d2
AJ
40}
41#titles h2 {
57e70e80 42 color: #000000;
2efb44d2
AJ
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 {
57e70e80
AJ
53 padding: 10px;
54 background: #ffffff;
e8ebbb61
AJ
55}
56
2efb44d2 57/* General text */
e8ebbb61
AJ
58p {
59}
60
2efb44d2 61/* error brief description */
e8ebbb61
AJ
62#error p {
63}
64
2efb44d2 65/* some data which may have caused the problem */
e8ebbb61
AJ
66#data {
67}
68
2efb44d2 69/* the error message received from the system or other software */
e8ebbb61
AJ
70#sysmsg {
71}
72
e8ebbb61 73pre {
e8ebbb61
AJ
74}
75
6ea12e8f 76/* special event: FTP directory listing */
0477a072 77#dirmsg {
42601cae 78 font-family: courier, monospace;
0477a072
AJ
79 color: black;
80 font-size: 10pt;
81}
82#dirlisting {
83 margin-left: 2%;
84 margin-right: 2%;
85}
24baabce 86#dirlisting tr.entry td.icon,td.filename,td.size,td.date {
5b3fb4a7
AJ
87 border-bottom: groove;
88}
24baabce 89#dirlisting td.size {
5b3fb4a7
AJ
90 width: 50px;
91 text-align: right;
92 padding-right: 5px;
93}
94
2efb44d2 95/* horizontal lines */
e8ebbb61 96hr {
57e70e80 97 margin: 0;
e8ebbb61
AJ
98}
99
2efb44d2 100/* page displayed footer area */
e8ebbb61 101#footer {
57e70e80
AJ
102 font-size: 9px;
103 padding-left: 10px;
e8ebbb61 104}