|
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 #canvas { |
|
6 image-rendering: -moz-crisp-edges; |
|
7 cursor: none; |
|
8 border: 3px solid #E0E0E0; |
|
9 border-radius: 50%; |
|
10 } |
|
11 |
|
12 #canvas-overflow { |
|
13 overflow: hidden; |
|
14 width: 96px; |
|
15 height: 96px; |
|
16 } |
|
17 |
|
18 #color-preview { |
|
19 width: 16px; |
|
20 height: 16px; |
|
21 box-shadow: 0px 0px 0px black; |
|
22 border: solid 1px #fff; |
|
23 margin: 3px; |
|
24 } |
|
25 |
|
26 #color-value-box { |
|
27 background-color: #E0E0E0; |
|
28 border-radius: 1px; |
|
29 width: 150px; |
|
30 } |
|
31 |
|
32 #color-value { |
|
33 padding: 0.3em; |
|
34 text-shadow: 1px 1px 1px #fff; |
|
35 } |
|
36 |
|
37 #color-value.highlight { |
|
38 font-family: inherit; |
|
39 } |
|
40 |
|
41 window { |
|
42 /* inexplicably, otherwise background shows up on Linux */ |
|
43 border: 1px solid transparent; |
|
44 background-color: transparent; |
|
45 } |