| 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 | /* ===== plugins.css ===================================================== |
| 6 | == Styles used by the about:plugins dialog. |
| 7 | ======================================================================= */ |
| 8 | |
| 9 | body { |
| 10 | background-color: #000000; |
| 11 | color: #FF9F00; |
| 12 | font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; |
| 13 | } |
| 14 | |
| 15 | a:link, a:visited, a:active { |
| 16 | border-radius: 3px; |
| 17 | color: #FFCF00; |
| 18 | background-color: #000000; |
| 19 | text-decoration: none; |
| 20 | -moz-padding-start: 1px; |
| 21 | -moz-padding-end: 1px; |
| 22 | } |
| 23 | |
| 24 | a:hover { |
| 25 | color: #000000; |
| 26 | background-color: #FFCF00; |
| 27 | } |
| 28 | |
| 29 | hr { |
| 30 | display: none; |
| 31 | } |
| 32 | |
| 33 | div#outside { |
| 34 | text-align: justify; |
| 35 | width: 90%; |
| 36 | -moz-margin-start: 5%; |
| 37 | -moz-margin-end: 5%; |
| 38 | } |
| 39 | |
| 40 | div#plugs { |
| 41 | border-radius: 15px; |
| 42 | background-color: #008484; |
| 43 | color: #000000; |
| 44 | padding: 3px; |
| 45 | text-align: center; |
| 46 | font-size: 24px; |
| 47 | font-weight: bold; |
| 48 | } |
| 49 | |
| 50 | div#noplugs { |
| 51 | color: #FF0000; |
| 52 | font-size: 18px; |
| 53 | font-weight: bold; |
| 54 | } |
| 55 | |
| 56 | div#findmore { |
| 57 | margin-top: 2em; |
| 58 | } |
| 59 | |
| 60 | div.plugname { |
| 61 | border-radius: 10px; |
| 62 | background-color: #E7ADE7; |
| 63 | color: #000000; |
| 64 | padding: 2px; |
| 65 | -moz-padding-start: 12px; |
| 66 | margin-top: 2em; |
| 67 | margin-bottom: 1em; |
| 68 | font-size: 16px; |
| 69 | text-align: left; |
| 70 | font-weight: bold; |
| 71 | } |
| 72 | |
| 73 | dl { |
| 74 | margin: 0px 0px 3px; |
| 75 | } |
| 76 | |
| 77 | span.label { |
| 78 | font-style: italic; |
| 79 | color: #8050B0; |
| 80 | } |
| 81 | |
| 82 | table { |
| 83 | background-color: #000000; |
| 84 | color: #E7ADE7; |
| 85 | text-align: left; |
| 86 | width: 100%; |
| 87 | border-radius: 10px; |
| 88 | border: 1px solid #9C9FFF; |
| 89 | border-spacing: 0px; |
| 90 | } |
| 91 | |
| 92 | th { |
| 93 | text-align: center; |
| 94 | background-color: #008484; |
| 95 | color: #FFCF00; |
| 96 | } |
| 97 | |
| 98 | th + th, |
| 99 | td + td { |
| 100 | border-left: 1px dotted #9C9FFF; |
| 101 | } |
| 102 | |
| 103 | td { |
| 104 | text-align: left; |
| 105 | border-top: 1px dotted #9C9FFF; |
| 106 | } |
| 107 | |
| 108 | th, td { |
| 109 | padding: 3px; |
| 110 | } |
| 111 | |
| 112 | th:first-child { |
| 113 | border-radius: 9px 0px 0px 0px; |
| 114 | } |
| 115 | |
| 116 | th.type, th.suff { |
| 117 | width: 25%; |
| 118 | } |
| 119 | |
| 120 | th.desc { |
| 121 | width: 50%; |
| 122 | } |
| 123 | |
| 124 | th:last-child { |
| 125 | border-radius: 0px 9px 0px 0px; |
| 126 | } |