| 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 | |
| 6 | html { |
| 7 | background: #000000; |
| 8 | } |
| 9 | |
| 10 | body { |
| 11 | margin: 0; |
| 12 | padding: 0 1em; |
| 13 | color: #FF9F00; |
| 14 | font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; |
| 15 | } |
| 16 | |
| 17 | h1 { |
| 18 | margin: 0 0 .6em; |
| 19 | border-bottom: 1px solid #008484; |
| 20 | font-size: 160%; |
| 21 | color: #FF0000; |
| 22 | } |
| 23 | |
| 24 | h2 { |
| 25 | font-size: 130%; |
| 26 | background-color: #9C9CFF; |
| 27 | color: #000000; |
| 28 | border-radius: 10px; |
| 29 | -moz-padding-start: 10px; |
| 30 | } |
| 31 | |
| 32 | #errorPageContainer { |
| 33 | position: relative; |
| 34 | min-width: 13em; |
| 35 | max-width: 52em; |
| 36 | margin: 4em auto; |
| 37 | border: 2px solid #FFCF00; |
| 38 | border-radius: 10px; |
| 39 | padding: 3em; |
| 40 | -moz-padding-start: 30px; |
| 41 | background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #000000; |
| 42 | background-origin: content-box; |
| 43 | } |
| 44 | |
| 45 | #errorPageContainer:-moz-dir(rtl) { |
| 46 | background-position: right 0; |
| 47 | } |
| 48 | |
| 49 | #errorTitle { |
| 50 | -moz-margin-start: 80px; |
| 51 | } |
| 52 | |
| 53 | #errorLongContent { |
| 54 | -moz-margin-start: 80px; |
| 55 | } |
| 56 | |
| 57 | #getMeOutOfHereButton, |
| 58 | #exceptionDialogButton { |
| 59 | border-radius: 10px; |
| 60 | background: #C09070; |
| 61 | color: #000000; |
| 62 | border: none; |
| 63 | padding: 0 .5em; |
| 64 | } |
| 65 | |
| 66 | .expander > button { |
| 67 | -moz-padding-start: 22px; |
| 68 | -moz-margin-start: -22px; |
| 69 | border-radius: 10px; |
| 70 | background: url("chrome://global/skin/tree/twisty-open-selected.gif") 3px center no-repeat; |
| 71 | border: none; |
| 72 | font: inherit; |
| 73 | color: inherit; |
| 74 | cursor: pointer; |
| 75 | } |
| 76 | |
| 77 | #getMeOutOfHereButton:hover, |
| 78 | #exceptionDialogButton:hover, |
| 79 | .expander:hover, |
| 80 | .expander:hover > button, |
| 81 | .expander > button:hover, |
| 82 | .expander > button:hover:active { |
| 83 | background-color: #FFCF00; |
| 84 | color: #000000; |
| 85 | } |
| 86 | |
| 87 | .expander > button:-moz-dir(rtl) { |
| 88 | background-position: right center; |
| 89 | } |
| 90 | |
| 91 | .expander[collapsed] > button { |
| 92 | background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif"); |
| 93 | } |
| 94 | |
| 95 | .expander[collapsed] > button:-moz-dir(rtl) { |
| 96 | background-image: url("chrome://global/skin/tree/twisty-closed-rtl-selected.gif"); |
| 97 | } |