Commit | Line | Data |
---|---|---|
9099c61d RK |
1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this | |
3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
c710949d RK |
4 | |
5 | ||
6 | html { | |
7 | background: #000000; | |
8 | } | |
9 | ||
10 | body { | |
11 | margin: 0; | |
12 | padding: 0 1em; | |
13 | color: #FF9F00; | |
4ed82c79 | 14 | font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; |
c710949d RK |
15 | } |
16 | ||
17 | h1 { | |
02920d2b | 18 | margin: 0 0 .6em; |
c710949d RK |
19 | border-bottom: 1px solid #008484; |
20 | font-size: 160%; | |
21 | color: #FF0000; | |
22 | } | |
23 | ||
24 | h2 { | |
25 | font-size: 130%; | |
26 | background-color: #9C9CFF; | |
27 | color: #000000; | |
569543b3 | 28 | border-radius: 8px; |
8caa872d | 29 | -moz-padding-start: 10px; |
c710949d RK |
30 | } |
31 | ||
32 | #errorPageContainer { | |
33 | position: relative; | |
34 | min-width: 13em; | |
35 | max-width: 52em; | |
36 | margin: 4em auto; | |
37 | border: 2px solid #FFCF00; | |
569543b3 | 38 | border-radius: 10px; |
c710949d RK |
39 | padding: 3em; |
40 | -moz-padding-start: 30px; | |
41 | background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #000000; | |
d15f39a1 | 42 | background-origin: content-box; |
c710949d RK |
43 | } |
44 | ||
45 | body[dir="rtl"] #errorPageContainer { | |
46 | background-position: right 0; | |
47 | } | |
48 | ||
49 | #errorTitle { | |
50 | -moz-margin-start: 80px; | |
51 | } | |
52 | ||
53 | #errorLongContent { | |
54 | -moz-margin-start: 80px; | |
55 | } | |
56 | ||
57 | #technicalContent > h2, #expertContent > h2 { | |
8caa872d | 58 | -moz-padding-start: 20px; |
c710949d RK |
59 | cursor: pointer; |
60 | background-image: url("chrome://global/skin/tree/twisty-open-selected.gif"); | |
61 | background-position: 5px center; | |
62 | background-repeat: no-repeat; | |
63 | } | |
64 | ||
65 | #technicalContent > h2:hover, | |
66 | #technicalContent > h2:hover:active, | |
67 | #expertContent > h2:hover, | |
68 | #expertContent > h2:hover:active { | |
69 | background-color: #FFCF00; | |
70 | } | |
71 | ||
72 | #technicalContent[collapsed] > h2, | |
73 | #expertContent[collapsed] > h2 { | |
74 | background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif"); | |
75 | } | |
76 | ||
77 | #technicalContent[collapsed] > p, | |
78 | #expertContent[collapsed] > div { | |
79 | display: none; | |
80 | } | |
81 | ||
82 | #technicalContentText { | |
83 | overflow: auto; | |
84 | white-space: pre-wrap; | |
85 | } |