| 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 | @import url('chrome://help/content/platformClasses.css'); |
| 6 | |
| 7 | body, td, th, input { |
| 8 | font-family: verdana, sans-serif; |
| 9 | font-size: small; |
| 10 | } |
| 11 | |
| 12 | body { |
| 13 | margin: 2ex; |
| 14 | max-width: 120ex; |
| 15 | } |
| 16 | |
| 17 | :link:hover, |
| 18 | :visited:hover { |
| 19 | color: -moz-activehyperlinktext; |
| 20 | } |
| 21 | |
| 22 | hr { |
| 23 | height: 1px; |
| 24 | background-color: #000; |
| 25 | color: #000; |
| 26 | margin: 2em 0; |
| 27 | } |
| 28 | |
| 29 | a[href^="http://"]:after, |
| 30 | a[href^="https://"]:after { |
| 31 | content: url('chrome://help/skin/Weblink.png'); |
| 32 | } |
| 33 | |
| 34 | :link { color: #039; } |
| 35 | :visited { color: #636; } |
| 36 | :link:hover, :visited:hover { color: #333; } |
| 37 | :link:active, :link:active { color: #000; } |
| 38 | |
| 39 | h1 { font-size: 160%; font-weight: normal; } |
| 40 | h2 { font-size: 150%; font-weight: normal; } |
| 41 | h3 { font-size: 120%; } |
| 42 | h4 { font-size: 100%; } |
| 43 | h5 { font-size: 90%; } |
| 44 | h6 { font-size: 90%; border: 0; } |
| 45 | |
| 46 | h1, h2, h3, h4, h5, h6 { |
| 47 | margin: 1em 0 0.2em; |
| 48 | border-bottom: 1px solid #ccc; |
| 49 | font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; |
| 50 | } |
| 51 | |
| 52 | li h1, li h2, li h3, li h4, li h5, li h6 { |
| 53 | border: none; |
| 54 | } |
| 55 | |
| 56 | |
| 57 | dt { font-weight: bold; } |
| 58 | |
| 59 | sup { |
| 60 | font-size: 70%; |
| 61 | } |
| 62 | |
| 63 | :link img, |
| 64 | :visited img { |
| 65 | border: 0; |
| 66 | } |
| 67 | |
| 68 | .contentsBox, |
| 69 | .contentsBox > ul, |
| 70 | li { |
| 71 | text-indent: 0px; |
| 72 | } |
| 73 | |
| 74 | .contentsBox > ul, |
| 75 | .contentsBox ul > ul{ |
| 76 | margin: 0; |
| 77 | list-style-type: none; |
| 78 | } |
| 79 | |
| 80 | .contentsBox { |
| 81 | margin-top: 12px; |
| 82 | background-color: #eee; |
| 83 | border: 1px solid #ccc; |
| 84 | width: 300px; |
| 85 | padding: 1em; |
| 86 | } |
| 87 | |
| 88 | .menuPath { |
| 89 | background: #c4d0f4; /* bluish color */ |
| 90 | color: inherit; |
| 91 | -moz-padding-start: 1px; /* else bgcolor ends at last char - no space */ |
| 92 | -moz-padding-end: 1px; |
| 93 | } |
| 94 | |
| 95 | table { |
| 96 | border-collapse: collapse; |
| 97 | } |
| 98 | |
| 99 | td, th { |
| 100 | border: 1px solid #ddd; /* grey */ |
| 101 | padding: 6px; |
| 102 | vertical-align: top; |
| 103 | } |
| 104 | |
| 105 | th { |
| 106 | background-color: #eee; /* light grey */ |
| 107 | font-weight: bold; |
| 108 | text-align: startt; |
| 109 | } |
| 110 | |
| 111 | .noTableBorder, |
| 112 | .noTableBorder td, |
| 113 | .noTableBorder th { |
| 114 | background-color: transparent; |
| 115 | border: 0px solid transparent; |
| 116 | } |