1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
/*
* This defines the look-and-feel styling of the error pages.
* (see: netError.xhtml)
*
* Original styling by William Price <bugzilla@mob.rice.edu>
* Updated by: Steven Garrity <steven@silverorange.com>
* Henrik Skupin <mozilla@hskupin.info>
*/
html {
background: #181411;
}
body {
margin: 0;
padding: 0 1em;
color: #bfbbb6;
font: message-box;
}
h1 {
margin: 0 0 .6em 0;
border-bottom: 1px solid rgb(64,64,64);
font-size: 160%;
}
ul, ol {
margin: 0;
margin-inline-start: 1.5em;
padding: 0;
}
ul > li, ol > li {
margin-bottom: .5em;
}
ul {
list-style: square;
}
#errorPageContainer {
position: relative;
min-width: 13em;
max-width: 52em;
margin: 4em auto;
border: 1px solid rgb(64,64,64);
border-radius: 10px;
padding: 3em;
padding-inline-start: 30px;
background: url("chrome://global/skin/icons/warning-large.png") left 0 no-repeat rgb(43,43,43);
background-origin: content-box;
}
#errorPageContainer.certerror {
background-image: url("chrome://global/skin/icons/sslWarning.png");
}
body[dir="rtl"] #errorPageContainer {
background-position: right 0;
}
#errorTitle {
margin-inline-start: 80px;
}
#errorLongContent {
margin-inline-start: 80px;
}
#errorShortDesc > p {
overflow: auto;
border-bottom: 1px solid rgb(64,64,64);
padding-bottom: 1em;
font-size: 130%;
white-space: pre-wrap;
}
#errorLongDesc {
padding-inline-end: 3em;
font-size: 110%;
}
#errorLongDesc > p {
}
#errorTryAgain {
margin-top: 2em;
margin-inline-start: 80px;
}
#brand {
position: absolute;
right: 0;
bottom: -1.5em;
margin-inline-end: 10px;
opacity: .4;
}
#brand:-moz-dir(rtl) {
right: auto;
left: 0;
}
#brand > p {
margin: 0;
}
#errorContainer {
display: none;
}
#securityOverrideDiv {
padding-top: 10px;
}
#securityOverrideContent {
background-color: #181411;
color: #bfbbb6;
padding: 10px;
border-radius: 10px;
}
/* Custom styling for 'blacklist' error class */
:root.blacklist #errorTitle, :root.blacklist #errorLongContent,
:root.blacklist #errorShortDesc, :root.blacklist #errorLongDesc,
:root.blacklist a {
background-color: #722; /* Dark red */
color: white;
}
:root.blacklist #errorPageContainer {
background-image: url("chrome://global/skin/icons/blacklist_large.png");
background-color: #722;
}
:root.blacklist {
background: #000;
}
:root.blacklist #errorTryAgain {
display: none;
}
|