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