|
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/. */ |
|
4 |
|
5 body { |
|
6 min-width: 330px; |
|
7 max-width: 100%; |
|
8 min-height: 330px; |
|
9 max-height: 100%; |
|
10 } |
|
11 |
|
12 #menu { |
|
13 position: absolute; |
|
14 top: 5px; |
|
15 color: gray; |
|
16 } |
|
17 |
|
18 .warningBackground { |
|
19 display: none; |
|
20 background: -moz-Dialog; |
|
21 width:100%; |
|
22 height:100%; |
|
23 z-index:10; |
|
24 top:0; |
|
25 left:0; |
|
26 position:fixed; |
|
27 } |
|
28 |
|
29 .warningMessage { |
|
30 color: -moz-FieldText; |
|
31 position: relative; |
|
32 min-width: 330px; |
|
33 max-width: 50em; |
|
34 margin: 4em auto; |
|
35 border: 1px solid ThreeDShadow; |
|
36 border-radius: 10px; |
|
37 padding: 3em; |
|
38 -moz-padding-start: 30px; |
|
39 background: -moz-Field; |
|
40 margin-left: auto; |
|
41 text-align: center; |
|
42 } |
|
43 |
|
44 .tab { |
|
45 display: none; |
|
46 } |
|
47 |
|
48 .active { |
|
49 display: block; |
|
50 } |
|
51 |
|
52 #menu .selected { |
|
53 color: blue; |
|
54 } |
|
55 |
|
56 #refreshdiv { |
|
57 top: 5px; |
|
58 position: absolute; |
|
59 right: 30px; |
|
60 } |