| 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 #A09090; |
| 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 | border: solid 1px #9C9CFF; |
| 22 | margin: 3px; |
| 23 | } |
| 24 | |
| 25 | #color-value-box { |
| 26 | background-color: #000000; |
| 27 | border-radius: 1px; |
| 28 | width: 150px; |
| 29 | } |
| 30 | |
| 31 | #color-value { |
| 32 | padding: 0.3em; |
| 33 | } |
| 34 | |
| 35 | #color-value.highlight { |
| 36 | font-family: inherit; |
| 37 | } |
| 38 | |
| 39 | window { |
| 40 | /* inexplicably, otherwise background shows up on Linux */ |
| 41 | border: 1px solid transparent; |
| 42 | background-color: transparent; |
| 43 | } |