make HTML-based video controls work while keeping the XUL-based ones intact - this...
[themes.git] / LCARStrek / communicator / certError.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/. */
c710949d
RK
4
5
6html {
7 background: #000000;
8}
9
10body {
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
17h1 {
02920d2b 18 margin: 0 0 .6em;
c710949d
RK
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;
569543b3 28 border-radius: 8px;
dae45075 29 padding-inline-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 39 padding: 3em;
dae45075 40 padding-inline-start: 30px;
c710949d 41 background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #000000;
d15f39a1 42 background-origin: content-box;
c710949d
RK
43}
44
45body[dir="rtl"] #errorPageContainer {
46 background-position: right 0;
47}
48
49#errorTitle {
dae45075 50 margin-inline-start: 80px;
c710949d
RK
51}
52
53#errorLongContent {
dae45075 54 margin-inline-start: 80px;
c710949d
RK
55}
56
57#technicalContent > h2, #expertContent > h2 {
dae45075 58 padding-inline-start: 20px;
c710949d 59 cursor: pointer;
7729765c 60 background-image: url("chrome://global/skin/tree/twisty.svg#open-hover");
c710949d
RK
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 {
7729765c 74 background-image: url("chrome://global/skin/tree/twisty.svg#clsd-hover");
c710949d
RK
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}