Merge branch 'master' of linz:/srv/git/themes
[themes.git] / LCARStrek / browser / aboutCertError.css
CommitLineData
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/. */
319c6529
RK
4
5
6html {
7 background: #000000;
8}
9
10body {
11 margin: 0;
12 padding: 0 1em;
13 color: #FF9F00;
14 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
15}
16
17h1 {
18 margin: 0 0 .6em;
19 border-bottom: 1px solid #008484;
20 font-size: 160%;
21 color: #FF0000;
22}
23
24h2 {
25 font-size: 130%;
26 background-color: #9C9CFF;
27 color: #000000;
28 border-radius: 8px;
29 -moz-padding-start: 10px;
30}
31
32#errorPageContainer {
33 position: relative;
34 min-width: 13em;
35 max-width: 52em;
36 margin: 4em auto;
37 border: 2px solid #FFCF00;
38 border-radius: 10px;
39 padding: 3em;
40 -moz-padding-start: 30px;
41 background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #000000;
42 background-origin: content-box;
43}
44
c29b709d 45#errorPageContainer:-moz-dir(rtl) {
319c6529
RK
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
8d7ef0d9 57.expander > button {
319c6529 58 -moz-padding-start: 20px;
8d7ef0d9
RK
59 -moz-margin-start: -20px;
60 background: url("chrome://global/skin/tree/twisty-open-selected.gif") left center no-repeat;
61 border: none;
62 font: inherit;
63 color: inherit;
319c6529 64 cursor: pointer;
319c6529
RK
65}
66
8d7ef0d9
RK
67.expander > button:hover,
68.expander > button:hover:active {
319c6529 69 background-color: #FFCF00;
8d7ef0d9 70 color: #000000;
319c6529
RK
71}
72
c29b709d 73.expander > button:-moz-dir(rtl) {
8d7ef0d9 74 background-position: right center;
319c6529
RK
75}
76
8d7ef0d9
RK
77.expander[collapsed] > button {
78 background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif");
319c6529
RK
79}
80
c29b709d 81.expander[collapsed] > button:-moz-dir(rtl) {
8d7ef0d9 82 background-image: url("chrome://global/skin/tree/twisty-closed-rtl-selected.gif");
319c6529 83}