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/. */ | |
6bcac19c RK |
4 | |
5 | html { | |
6 | background-color: #CCD0DD; | |
7 | color: #000000; | |
8 | font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; | |
9 | } | |
10 | ||
11 | body { | |
6bcac19c RK |
12 | width: 90%; |
13 | margin-left: 5%; | |
14 | margin-right: 5%; | |
15 | } | |
16 | ||
17 | .page-subtitle { | |
18 | margin-bottom: 3em; | |
19 | } | |
20 | ||
21 | .major-section { | |
22 | margin-top: 2em; | |
23 | margin-bottom: 1em; | |
24 | font-size: large; | |
25 | text-align: start; | |
26 | font-weight: bold; | |
27 | } | |
28 | ||
29 | table { | |
30 | background-color: #CCD0DD; | |
31 | color: #000000; | |
32 | text-align: start; | |
33 | width: 100%; | |
34 | border: 1px solid #9999CC; | |
35 | border-spacing: 0px; | |
36 | } | |
37 | ||
38 | th, td { | |
6bcac19c RK |
39 | padding: 3px; |
40 | } | |
41 | ||
42f50429 RK |
42 | th + th, |
43 | td + td { | |
44 | border-left: 1px dotted #9999CC; | |
45 | } | |
46 | ||
6bcac19c RK |
47 | thead th { |
48 | text-align: center; | |
49 | } | |
50 | ||
51 | th { | |
52 | text-align: start; | |
53 | background-color: #666699; | |
54 | color: #CCD0DD; | |
55 | } | |
56 | ||
57 | th.column { | |
58 | white-space: nowrap; | |
59 | width: 0px; | |
60 | } | |
61 | ||
62 | td { | |
63 | text-align: start; | |
64 | border-top: 1px dotted #9999CC; | |
65 | } | |
66 | ||
67 | .prefs-table { | |
68 | width: 100%; | |
69 | table-layout: fixed; | |
70 | } | |
71 | ||
72 | .pref-name { | |
73 | width: 70%; | |
74 | white-space: nowrap; | |
75 | overflow: hidden; | |
76 | } | |
77 | ||
78 | .pref-value { | |
79 | width: 30%; | |
80 | white-space: nowrap; | |
81 | overflow: hidden; | |
82 | } | |
a62af8a9 RK |
83 | |
84 | #reset-box { | |
85 | background-color: #CCD0DD; | |
86 | border: 1px solid #666699; | |
87 | color: #000000; | |
88 | float: right; | |
89 | margin-top: 2em; | |
90 | margin-bottom: 20px; | |
91 | -moz-margin-start: 20px; | |
92 | -moz-margin-end: 0; | |
93 | padding: 16px; | |
94 | width: 30%; | |
2e88f3cc | 95 | visibility: hidden; |
a62af8a9 RK |
96 | } |
97 | ||
54628835 | 98 | #reset-box:-moz-dir(rtl) { |
a62af8a9 RK |
99 | float: left; |
100 | } | |
101 | ||
102 | #reset-box > h3 { | |
103 | margin-top: 0; | |
104 | } | |
105 | ||
106 | #reset-box > button { | |
107 | display: block; | |
108 | margin: auto; | |
109 | } | |
2e88f3cc RK |
110 | |
111 | .block { | |
112 | display: block; | |
113 | } | |
114 | ||
115 | .hidden { | |
116 | display: none; | |
117 | } |