| | @@ -1,148 +1,200 @@ |
| 1 | | -/* General settings for the entire page */ |
| 2 | | -body { |
| 3 | | - margin: 0ex 1ex; |
| 4 | | - padding: 0px; |
| 5 | | - background-color: white; |
| 6 | | - font-family: sans-serif; |
| 7 | | - -moz-text-size-adjust: none; |
| 8 | | - -webkit-text-size-adjust: none; |
| 9 | | - -mx-text-size-adjust: none; |
| 10 | | -} |
| 11 | | - |
| 12 | | -/* The project logo in the upper left-hand corner of each page */ |
| 13 | | -div.logo { |
| 14 | | - display: table-cell; |
| 15 | | - text-align: center; |
| 16 | | - vertical-align: bottom; |
| 17 | | - font-weight: bold; |
| 18 | | - color: #558195; |
| 19 | | - min-width: 200px; |
| 20 | | - white-space: nowrap; |
| 21 | | -} |
| 22 | | - |
| 23 | | -/* The page title centered at the top of each page */ |
| 24 | | -div.title { |
| 25 | | - display: table-cell; |
| 26 | | - font-size: 2em; |
| 27 | | - font-weight: bold; |
| 28 | | - text-align: center; |
| 29 | | - padding: 0 0 0 1em; |
| 30 | | - color: #558195; |
| 31 | | - vertical-align: bottom; |
| 32 | | - width: 100%; |
| 33 | | -} |
| 34 | | - |
| 35 | | -/* The login status message in the top right-hand corner */ |
| 36 | | -div.status { |
| 37 | | - display: table-cell; |
| 38 | | - text-align: right; |
| 39 | | - vertical-align: bottom; |
| 40 | | - color: #558195; |
| 41 | | - font-size: 0.8em; |
| 42 | | - font-weight: bold; |
| 43 | | - min-width: 200px; |
| 44 | | - white-space: nowrap; |
| 45 | | -} |
| 46 | | - |
| 47 | | -/* The header across the top of the page */ |
| 48 | | -div.header { |
| 49 | | - display: table; |
| 50 | | - width: 100%; |
| 51 | | -} |
| 52 | | - |
| 53 | | -/* The main menu bar that appears at the top of the page beneath |
| 54 | | -** the header */ |
| 55 | | -div.mainmenu { |
| 56 | | - padding: 5px 10px 5px 10px; |
| 57 | | - font-size: 0.9em; |
| 58 | | - font-weight: bold; |
| 59 | | - text-align: center; |
| 60 | | - letter-spacing: 1px; |
| 61 | | - background-color: #558195; |
| 62 | | - border-top-left-radius: 8px; |
| 63 | | - border-top-right-radius: 8px; |
| 64 | | - color: white; |
| 65 | | -} |
| 66 | | - |
| 67 | | -/* The submenu bar that *sometimes* appears below the main menu */ |
| 68 | | -div.submenu, div.sectionmenu { |
| 69 | | - padding: 3px 10px 3px 0px; |
| 70 | | - font-size: 0.9em; |
| 71 | | - text-align: center; |
| 72 | | - background-color: #456878; |
| 73 | | - color: white; |
| 74 | | -} |
| 75 | | -div.mainmenu a, div.mainmenu a:visited, div.submenu a, div.submenu a:visited, |
| 76 | | -div.sectionmenu>a.button:link, div.sectionmenu>a.button:visited { |
| 77 | | - padding: 3px 10px 3px 10px; |
| 78 | | - color: white; |
| 79 | | - text-decoration: none; |
| 80 | | -} |
| 81 | | -div.mainmenu a:hover, div.submenu a:hover, div.sectionmenu>a.button:hover { |
| 82 | | - color: #558195; |
| 83 | | - background-color: white; |
| 84 | | -} |
| 85 | | - |
| 86 | | -/* All page content from the bottom of the menu or submenu down to |
| 87 | | -** the footer */ |
| 88 | | -div.content { |
| 89 | | - padding: 0ex 1ex 1ex 1ex; |
| 90 | | - border: solid #aaa; |
| 91 | | - border-width: 1px; |
| 92 | | -} |
| 93 | | - |
| 94 | | -/* Some pages have section dividers */ |
| 95 | | -div.section { |
| 96 | | - margin-bottom: 0px; |
| 97 | | - margin-top: 1em; |
| 98 | | - padding: 1px 1px 1px 1px; |
| 99 | | - font-size: 1.2em; |
| 100 | | - font-weight: bold; |
| 101 | | - background-color: #558195; |
| 102 | | - color: white; |
| 103 | | - white-space: nowrap; |
| 104 | | -} |
| 105 | | - |
| 106 | | -/* The "Date" that occurs on the left hand side of timelines */ |
| 107 | | -div.divider { |
| 108 | | - background: #a1c4d4; |
| 109 | | - border: 2px #558195 solid; |
| 110 | | - font-size: 1em; font-weight: normal; |
| 111 | | - padding: .25em; |
| 112 | | - margin: .2em 0 .2em 0; |
| 113 | | - float: left; |
| 114 | | - clear: left; |
| 115 | | - white-space: nowrap; |
| 116 | | -} |
| 117 | | - |
| 118 | | -/* The footer at the very bottom of the page */ |
| 119 | | -div.footer { |
| 120 | | - clear: both; |
| 121 | | - font-size: 0.8em; |
| 122 | | - padding: 5px 10px 5px 10px; |
| 123 | | - text-align: right; |
| 124 | | - background-color: #558195; |
| 125 | | - border-bottom-left-radius: 8px; |
| 126 | | - border-bottom-right-radius: 8px; |
| 127 | | - color: white; |
| 128 | | -} |
| 129 | | - |
| 130 | | -/* Hyperlink colors in the footer */ |
| 131 | | -div.footer a { color: white; } |
| 132 | | -div.footer a:link { color: white; } |
| 133 | | -div.footer a:visited { color: white; } |
| 134 | | -div.footer a:hover { background-color: white; color: #558195; } |
| 135 | | - |
| 136 | | -/* verbatim blocks */ |
| 137 | | -pre.verbatim { |
| 138 | | - background-color: #f5f5f5; |
| 139 | | - padding: 0.5em; |
| 140 | | - white-space: pre-wrap; |
| 141 | | -} |
| 142 | | - |
| 143 | | -/* The label/value pairs on (for example) the ci page */ |
| 144 | | -table.label-value th { |
| 145 | | - vertical-align: top; |
| 146 | | - text-align: right; |
| 147 | | - padding: 0.2ex 2ex; |
| 1 | +body { |
| 2 | + margin: 0 auto; |
| 3 | + min-width: 800px; |
| 4 | + padding: 0px 20px; |
| 5 | + background-color: white; |
| 6 | + font-family: sans-serif; |
| 7 | + font-size:14pt; |
| 8 | + -moz-text-size-adjust: none; |
| 9 | + -webkit-text-size-adjust: none; |
| 10 | + -mx-text-size-adjust: none; |
| 11 | +} |
| 12 | + |
| 13 | +a { |
| 14 | + color: #4183C4; |
| 15 | + text-decoration: none; |
| 16 | +} |
| 17 | +a:hover { |
| 18 | + color: #4183C4; |
| 19 | + text-decoration: underline; |
| 20 | +} |
| 21 | + |
| 22 | +hr { |
| 23 | + color: #eee; |
| 24 | +} |
| 25 | + |
| 26 | +.title { |
| 27 | + color: #4183C4; |
| 28 | + float:left; |
| 29 | + padding-top: 30px; |
| 30 | + padding-bottom: 10px; |
| 31 | +} |
| 32 | +.title h1 { |
| 33 | + display:inline; |
| 34 | +} |
| 35 | +.title h1:after { |
| 36 | + content: " / "; |
| 37 | + color: #777; |
| 38 | + font-weight: normal; |
| 39 | +} |
| 40 | + |
| 41 | +.content h1 { |
| 42 | + font-size: 1.25em; |
| 43 | +} |
| 44 | +.content h2 { |
| 45 | + font-size: 1.15em; |
| 46 | +} |
| 47 | +.content h2 { |
| 48 | + font-size: 1.05em; |
| 49 | + font-weight: bold; |
| 50 | +} |
| 51 | + |
| 52 | +.section { |
| 53 | + font-size: 1em; |
| 54 | + font-weight: bold; |
| 55 | + background-color: #f5f5f5; |
| 56 | + border: 1px solid #d8d8d8; |
| 57 | + border-radius: 3px 3px 0 0; |
| 58 | + padding: 9px 10px 10px; |
| 59 | + margin: 10px 0; |
| 60 | +} |
| 61 | + |
| 62 | +.sectionmenu { |
| 63 | + border: 1px solid #d8d8d8; |
| 64 | + border-radius: 0 0 3px 3px; |
| 65 | + border-top: 0; |
| 66 | + margin-top: -10px; |
| 67 | + margin-bottom: 10px; |
| 68 | + padding: 10px; |
| 69 | +} |
| 70 | +.sectionmenu a { |
| 71 | + display: inline-block; |
| 72 | + margin-right: 1em; |
| 73 | +} |
| 74 | + |
| 75 | +.status { |
| 76 | + float:right; |
| 77 | + font-size:.7em; |
| 78 | + padding-top:50px; |
| 79 | +} |
| 80 | + |
| 81 | +.mainmenu { |
| 82 | + font-size:.8em; |
| 83 | + clear:both; |
| 84 | + padding:10px; |
| 85 | + background:#eaeaea linear-gradient(#fafafa, #eaeaea) repeat-x; |
| 86 | + border:1px solid #eaeaea; |
| 87 | + border-radius:5px; |
| 88 | +} |
| 89 | + |
| 90 | +.mainmenu a { |
| 91 | + padding: 10px 20px; |
| 92 | + text-decoration:none; |
| 93 | + color: #777; |
| 94 | + border-right:1px solid #eaeaea; |
| 95 | +} |
| 96 | +.mainmenu a.active, |
| 97 | +.mainmenu a:hover { |
| 98 | + color: #000; |
| 99 | + border-bottom:2px solid #D26911; |
| 100 | +} |
| 101 | + |
| 102 | +.submenu { |
| 103 | + font-size: .7em; |
| 104 | + margin-top: 10px; |
| 105 | + padding: 10px; |
| 106 | + border-bottom: 1px solid #ccc; |
| 107 | +} |
| 108 | + |
| 109 | +.submenu a { |
| 110 | + padding: 10px 11px; |
| 111 | + text-decoration:none; |
| 112 | + color: #777; |
| 113 | +} |
| 114 | + |
| 115 | +.submenu a:hover { |
| 116 | + padding: 6px 10px; |
| 117 | + border: 1px solid #ccc; |
| 118 | + border-radius: 5px; |
| 119 | + color: #000; |
| 120 | +} |
| 121 | + |
| 122 | +.content { |
| 123 | + padding-top: 10px; |
| 124 | + font-size:.8em; |
| 125 | + color: #444; |
| 126 | +} |
| 127 | + |
| 128 | +.udiff, .sbsdiff { |
| 129 | + font-size: .85em !important; |
| 130 | + overflow: auto; |
| 131 | + border: 1px solid #ccc; |
| 132 | + border-radius: 5px; |
| 133 | +} |
| 134 | +.content blockquote { |
| 135 | + padding: 0 15px; |
| 136 | +} |
| 137 | + |
| 138 | +table.report { |
| 139 | + cursor: auto; |
| 140 | + border-radius: 5px; |
| 141 | + border: 1px solid #ccc; |
| 142 | + margin: 1em 0; |
| 143 | +} |
| 144 | +.report td, .report th { |
| 145 | + border: 0; |
| 146 | + font-size: .8em; |
| 147 | + padding: 10px; |
| 148 | +} |
| 149 | +.report td:first-child { |
| 150 | + border-top-left-radius: 5px; |
| 151 | +} |
| 152 | +.report tbody tr:last-child td:first-child { |
| 153 | + border-bottom-left-radius: 5px; |
| 154 | +} |
| 155 | +.report td:last-child { |
| 156 | + border-top-right-radius: 5px; |
| 157 | +} |
| 158 | +.report tbody tr:last-child { |
| 159 | + border-bottom-left-radius: 5px; |
| 160 | + border-bottom-right-radius: 5px; |
| 161 | +} |
| 162 | +.report tbody tr:last-child td:last-child { |
| 163 | + border-bottom-right-radius: 5px; |
| 164 | +} |
| 165 | +.report th { |
| 166 | + cursor: pointer; |
| 167 | +} |
| 168 | +.report thead+tbody tr:hover { |
| 169 | + background-color: #f5f9fc !important; |
| 170 | +} |
| 171 | + |
| 172 | +td.tktDspLabel { |
| 173 | + width: 70px; |
| 174 | + text-align: right; |
| 175 | + overflow: hidden; |
| 176 | +} |
| 177 | +td.tktDspValue { |
| 178 | + text-align: left; |
| 179 | + vertical-align: top; |
| 180 | + background-color: #f8f8f8; |
| 181 | + border: 1px solid #ccc; |
| 182 | +} |
| 183 | +td.tktDspValue pre { |
| 184 | + white-space: pre-wrap; |
| 185 | +} |
| 186 | + |
| 187 | +.footer { |
| 188 | + border-top: 1px solid #ccc; |
| 189 | + padding: 10px; |
| 190 | + font-size:.7em; |
| 191 | + margin-top: 10px; |
| 192 | + color: #ccc; |
| 193 | +} |
| 194 | +div.timelineDate { |
| 195 | + font-weight: bold; |
| 196 | + white-space: nowrap; |
| 197 | +} |
| 198 | +span.submenuctrl, span.submenuctrl input, select.submenuctrl { |
| 199 | + color: #777; |
| 148 | 200 | } |
| 149 | 201 | |