finish sync of LCARStrek with Firefox 13 winstripe changes
[themes.git] / LCARStrek / browser / aboutCertError.css
CommitLineData
319c6529
RK
1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is mozilla.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * the Mozilla Foundation.
18 * Portions created by the Initial Developer are Copyright (C) 2008
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * William Price <bugzilla@mob.rice.edu>
23 * Steven Garrity <steven@silverorange.com>
24 * Henrik Skupin <mozilla@hskupin.info>
25 * Johnathan Nightingale <johnath@mozilla.com>
26 * Ehsan Akhgari <ehsan.akhgari@gmail.com>
27 *
28 * Alternatively, the contents of this file may be used under the terms of
29 * either the GNU General Public License Version 2 or later (the "GPL"), or
30 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31 * in which case the provisions of the GPL or the LGPL are applicable instead
32 * of those above. If you wish to allow use of your version of this file only
33 * under the terms of either the GPL or the LGPL, and not to allow others to
34 * use your version of this file under the terms of the MPL, indicate your
35 * decision by deleting the provisions above and replace them with the notice
36 * and other provisions required by the GPL or the LGPL. If you do not delete
37 * the provisions above, a recipient may use your version of this file under
38 * the terms of any one of the MPL, the GPL or the LGPL.
39 *
40 * ***** END LICENSE BLOCK ***** */
41
42
43html {
44 background: #000000;
45}
46
47body {
48 margin: 0;
49 padding: 0 1em;
50 color: #FF9F00;
51 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
52}
53
54h1 {
55 margin: 0 0 .6em;
56 border-bottom: 1px solid #008484;
57 font-size: 160%;
58 color: #FF0000;
59}
60
61h2 {
62 font-size: 130%;
63 background-color: #9C9CFF;
64 color: #000000;
65 border-radius: 8px;
66 -moz-padding-start: 10px;
67}
68
69#errorPageContainer {
70 position: relative;
71 min-width: 13em;
72 max-width: 52em;
73 margin: 4em auto;
74 border: 2px solid #FFCF00;
75 border-radius: 10px;
76 padding: 3em;
77 -moz-padding-start: 30px;
78 background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #000000;
79 background-origin: content-box;
80}
81
82body[dir="rtl"] #errorPageContainer {
83 background-position: right 0;
84}
85
86#errorTitle {
87 -moz-margin-start: 80px;
88}
89
90#errorLongContent {
91 -moz-margin-start: 80px;
92}
93
8d7ef0d9 94.expander > button {
319c6529 95 -moz-padding-start: 20px;
8d7ef0d9
RK
96 -moz-margin-start: -20px;
97 background: url("chrome://global/skin/tree/twisty-open-selected.gif") left center no-repeat;
98 border: none;
99 font: inherit;
100 color: inherit;
319c6529 101 cursor: pointer;
319c6529
RK
102}
103
8d7ef0d9
RK
104.expander > button:hover,
105.expander > button:hover:active {
319c6529 106 background-color: #FFCF00;
8d7ef0d9 107 color: #000000;
319c6529
RK
108}
109
8d7ef0d9
RK
110body[dir="rtl"] .expander > button {
111 background-position: right center;
319c6529
RK
112}
113
8d7ef0d9
RK
114.expander[collapsed] > button {
115 background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif");
319c6529
RK
116}
117
8d7ef0d9
RK
118body[dir="rtl"] .expander[collapsed] > button {
119 background-image: url("chrome://global/skin/tree/twisty-closed-rtl-selected.gif");
319c6529 120}