[517] | 1 | /* Default/global defs for specific tags */
|
---|
| 2 | fieldset {
|
---|
| 3 | border: none;
|
---|
| 4 | padding: 0px;
|
---|
| 5 | margin: 0px;
|
---|
| 6 | }
|
---|
| 7 |
|
---|
| 8 | #debug {
|
---|
| 9 | background-color: #990066;
|
---|
| 10 | padding: 2px;
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | /* Specific divs */
|
---|
| 14 | #bodyheader {
|
---|
| 15 | margin-left: 4px;
|
---|
| 16 | position: relative;
|
---|
| 17 | }
|
---|
| 18 | #homelink {
|
---|
| 19 | font-size: 13px;
|
---|
| 20 | font-weight: bold;
|
---|
| 21 | position: absolute;
|
---|
| 22 | right: 10px;
|
---|
| 23 | bottom: 2px;
|
---|
| 24 | text-align: right;
|
---|
| 25 | }
|
---|
| 26 | #subheader {
|
---|
| 27 | background-color: #D0E0E0;
|
---|
| 28 | font-size: 90%;
|
---|
| 29 | padding: 3px;
|
---|
| 30 | border-top: thin solid #000000;
|
---|
| 31 | /* apparently this is required to keep "contained" position: absolute divs from escaping. O_o */
|
---|
| 32 | position: relative;
|
---|
| 33 | }
|
---|
| 34 | #csearch {
|
---|
| 35 | float: right;
|
---|
| 36 | padding: 3px;
|
---|
| 37 | }
|
---|
| 38 | #newlink {
|
---|
| 39 | position: absolute;
|
---|
| 40 | right: 10px;
|
---|
| 41 | top: 6px;
|
---|
| 42 | text-align: right;
|
---|
| 43 | }
|
---|
| 44 | #main {
|
---|
| 45 | padding: 10px;
|
---|
| 46 | border-top: thin solid #000000;
|
---|
| 47 | /* text-align: center;*/
|
---|
| 48 | padding-top: 20px;
|
---|
| 49 | position: relative;
|
---|
| 50 | }
|
---|
| 51 | #utils {
|
---|
| 52 | font-size: 13px;
|
---|
| 53 | font-weight: bold;
|
---|
| 54 | position: absolute;
|
---|
| 55 | right: 10px;
|
---|
| 56 | top: 2px;
|
---|
| 57 | text-align: right;
|
---|
| 58 | }
|
---|
[697] | 59 | #breadcrumb {
|
---|
| 60 | font-size: 13px;
|
---|
| 61 | font-weight: bold;
|
---|
| 62 | position: absolute;
|
---|
| 63 | top: 2px;
|
---|
| 64 | }
|
---|
[517] | 65 | #adminlink {
|
---|
| 66 | position: absolute;
|
---|
| 67 | right: 10px;
|
---|
| 68 | bottom: 5px;
|
---|
| 69 | }
|
---|
| 70 | #footer {
|
---|
| 71 | border-top: thin solid #000000;
|
---|
| 72 | }
|
---|
| 73 | #contact {
|
---|
| 74 | font-size: 10px;
|
---|
| 75 | position: absolute;
|
---|
| 76 | right: 10px;
|
---|
| 77 | text-align: right;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
[413] | 80 | body {
|
---|
| 81 | background-color: #ffffff;
|
---|
[517] | 82 | color: #000000;
|
---|
[413] | 83 | font-family: helvetica;
|
---|
| 84 | margin: 0;
|
---|
[4] | 85 | }
|
---|
| 86 |
|
---|
[413] | 87 | a { text-decoration: underline; }
|
---|
| 88 | a:link { color:#3333ff; } /* unvisited link */
|
---|
| 89 | a:visited { color:#663366; } /* visited link */
|
---|
| 90 | a:hover { color:#dd00dd; } /* mouse over link */
|
---|
| 91 | a:active { color:#cc0000; } /* selected link */
|
---|
[4] | 92 |
|
---|
[517] | 93 | table.center {
|
---|
| 94 | margin-left: auto;
|
---|
| 95 | margin-right: auto;
|
---|
| 96 | text-align: center;
|
---|
[279] | 97 | }
|
---|
| 98 |
|
---|
[517] | 99 | /* Defs for bulk-data rows */
|
---|
| 100 | /* for reasons of Please The Validation Gods, these may be applied to
|
---|
| 101 | things that are not technically table rows */
|
---|
| 102 | .row0 {
|
---|
| 103 | background-color: #D0E0E0;
|
---|
| 104 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
[4] | 105 | font-size: 90%;
|
---|
| 106 | }
|
---|
[517] | 107 | .row1 {
|
---|
[4] | 108 | background-color: #A8C4D0;
|
---|
| 109 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 110 | font-size: 90%;
|
---|
| 111 | }
|
---|
| 112 |
|
---|
[688] | 113 | /* Funny how not caring about IE suddenly makes all kinds of neat things possible... */
|
---|
| 114 | /* class group for tables with alternating row colours */
|
---|
| 115 | /* note extra tbody selector for implicit tbody tag in between <table> and <tr> */
|
---|
| 116 | /* fallback for Stoopid Browsers */
|
---|
| 117 | .altrows > tbody > tr {
|
---|
| 118 | background-color: #D0E0E0;
|
---|
| 119 | }
|
---|
| 120 | .altrows > tbody > tr:nth-child(odd) {
|
---|
| 121 | background-color: #A8C4D0;
|
---|
[777] | 122 | font-size: 90%;
|
---|
[688] | 123 | }
|
---|
| 124 | .altrows > tbody > tr:nth-child(even) {
|
---|
| 125 | background-color: #D0E0E0;
|
---|
[777] | 126 | font-size: 90%;
|
---|
[688] | 127 | }
|
---|
| 128 | /* because ordering. *sigh* could just set to something,
|
---|
| 129 | but this lets the primary background colour through */
|
---|
| 130 | .altrows > tbody > tr:first-child {
|
---|
| 131 | background: inherit;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | /* and because we can't do things the simple way... a no-headings version */
|
---|
| 135 | .altrowsnh tr {
|
---|
| 136 | background-color: #D0E0E0;
|
---|
| 137 | }
|
---|
| 138 | .altrowsnh tr:nth-child(odd) {
|
---|
| 139 | background-color: #A8C4D0;
|
---|
[777] | 140 | font-size: 90%;
|
---|
[688] | 141 | }
|
---|
| 142 | .altrowsnh tr:nth-child(even) {
|
---|
| 143 | background-color: #D0E0E0;
|
---|
[777] | 144 | font-size: 90%;
|
---|
[688] | 145 | }
|
---|
| 146 |
|
---|
[770] | 147 | tr.tableheader {
|
---|
| 148 | background-color: #CCCCCC;
|
---|
| 149 | padding: 3px;
|
---|
| 150 | text-align: left;
|
---|
| 151 | }
|
---|
| 152 | tr.skip {
|
---|
| 153 | background: inherit;
|
---|
| 154 | }
|
---|
| 155 |
|
---|
[688] | 156 | /* Need to normalize down to onw of these someday */
|
---|
[703] | 157 | .delwarning {
|
---|
[688] | 158 | background-color: #000000;
|
---|
| 159 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 160 | font-weight: bold;
|
---|
| 161 | color: red;
|
---|
| 162 | padding: 2px;
|
---|
| 163 | }
|
---|
[703] | 164 | .warning {
|
---|
| 165 | border: solid 2px #FFFF00;
|
---|
| 166 | color: #333300;
|
---|
| 167 | background-color: #e0e0e0;
|
---|
| 168 | text-align: center;
|
---|
| 169 | padding: 5px;
|
---|
| 170 | }
|
---|
| 171 |
|
---|
[544] | 172 | .warnmsg {
|
---|
| 173 | border: solid 2px #FFFF00;
|
---|
| 174 | color: #333300;
|
---|
| 175 | background-color: #e0e0e0;
|
---|
| 176 | text-align: center;
|
---|
| 177 | padding: 5px;
|
---|
| 178 | width: 70%;
|
---|
| 179 | }
|
---|
| 180 |
|
---|
[703] | 181 | /* some standard width widgets */
|
---|
[818] | 182 | .w90 { width: 90%; }
|
---|
[703] | 183 | .w70 { width: 70%; }
|
---|
| 184 | .w60 { width: 60%; }
|
---|
| 185 | .w30 { width: 30%; }
|
---|
[517] | 186 |
|
---|
[689] | 187 | /* Reverse DNS odds and ends. Commented bits are either info-reminders or
|
---|
| 188 | don't work as expected */
|
---|
[674] | 189 | div.rdns {
|
---|
| 190 | max-height: 20em;
|
---|
[689] | 191 | /* overflow-y: scroll; */
|
---|
[674] | 192 | overflow-x: hidden;
|
---|
[689] | 193 | /* display:inline-block; */
|
---|
[674] | 194 | width: 600px;
|
---|
[689] | 195 | /* width: 16em; */
|
---|
[674] | 196 | border: solid 1px #000000;
|
---|
| 197 | }
|
---|
| 198 | /* Abuse collapsible list tree for hideable page segment */
|
---|
| 199 | /* hide the content <li> */
|
---|
| 200 | .collapsible li > input + * {
|
---|
| 201 | display: none;
|
---|
| 202 | }
|
---|
| 203 | /* when the input is checked, show the content <li> */
|
---|
| 204 | .collapsible li > input:checked + * {
|
---|
| 205 | display: block;
|
---|
| 206 | }
|
---|
| 207 | /* hide the checkbox */
|
---|
[782] | 208 | .nocheckbox li > input {
|
---|
[674] | 209 | display: none;
|
---|
| 210 | margin: 0em;
|
---|
| 211 | padding: 0px;
|
---|
| 212 | }
|
---|
| 213 | /* mostly just making the input label clickable */
|
---|
| 214 | .collapsible label {
|
---|
| 215 | cursor: pointer;
|
---|
| 216 | display: inline;
|
---|
| 217 | margin: 0em;
|
---|
| 218 | padding: 0px;
|
---|
| 219 | padding-left: 10px;
|
---|
| 220 | }
|
---|
| 221 | /* be nice if we could make this work without the HTML list structure... */
|
---|
| 222 | .notalist {
|
---|
| 223 | list-style: none;
|
---|
| 224 | margin: 0;
|
---|
| 225 | padding: 3px;
|
---|
| 226 | }
|
---|
| 227 | /* done hideable page segment */
|
---|
| 228 |
|
---|
| 229 | /* Per-IP rDNS listings on edit allocation page */
|
---|
| 230 | .revdata {
|
---|
| 231 | background-color: #C8D3DE;
|
---|
[703] | 232 | position: relative;
|
---|
[674] | 233 | }
|
---|
| 234 | .host {
|
---|
| 235 | width: 450px;
|
---|
| 236 | // width: 35em;
|
---|
| 237 | }
|
---|
[703] | 238 | /* and tack on some positioning magic for an action button or two */
|
---|
| 239 | .button_l {
|
---|
| 240 | position: absolute;
|
---|
| 241 | bottom: 0;
|
---|
| 242 | left: 4px;
|
---|
| 243 | }
|
---|
| 244 | .button_r {
|
---|
| 245 | position: absolute;
|
---|
| 246 | bottom: 0;
|
---|
| 247 | right: 4px;
|
---|
| 248 | }
|
---|
[674] | 249 |
|
---|
[689] | 250 | /* Legacy leftovers? */
|
---|
[517] | 251 | td {
|
---|
| 252 | padding-right: 2px;
|
---|
| 253 | padding-left: 2px;
|
---|
| 254 | }
|
---|
| 255 |
|
---|
| 256 | /* Generic classes */
|
---|
[4] | 257 | .indent {
|
---|
| 258 | margin-left: 5%;
|
---|
| 259 | font-size: 90%;
|
---|
| 260 | }
|
---|
| 261 |
|
---|
| 262 | .regular {
|
---|
| 263 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
[254] | 264 | font-size: 100%;
|
---|
[4] | 265 | }
|
---|
| 266 |
|
---|
| 267 | .heading {
|
---|
| 268 | font-size: 110%;
|
---|
| 269 | font-weight: bold;
|
---|
| 270 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 271 | }
|
---|
[770] | 272 | div.heading {
|
---|
| 273 | margin-top: 1em;
|
---|
| 274 | }
|
---|
[4] | 275 |
|
---|
[517] | 276 | .tbltitle {
|
---|
| 277 | text-align: center;
|
---|
| 278 | font-size: 110%;
|
---|
| 279 | font-weight: bold;
|
---|
| 280 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 281 | }
|
---|
| 282 | .tblsubtitle {
|
---|
| 283 | font-size: 105%;
|
---|
| 284 | font-weight: bold;
|
---|
| 285 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 286 | }
|
---|
| 287 |
|
---|
| 288 | .ljust {
|
---|
| 289 | text-align: left;
|
---|
| 290 | }
|
---|
[691] | 291 | .rjust {
|
---|
| 292 | text-align: right;
|
---|
| 293 | float: right;
|
---|
| 294 | }
|
---|
[517] | 295 | .topalign {
|
---|
| 296 | vertical-align: top;
|
---|
| 297 | }
|
---|
| 298 |
|
---|
[4] | 299 | .small {
|
---|
| 300 | font-size: 60%;
|
---|
| 301 | }
|
---|
| 302 |
|
---|
| 303 | .center {
|
---|
| 304 | text-align: center;
|
---|
| 305 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 306 | font-size: 100%;
|
---|
| 307 | }
|
---|
| 308 |
|
---|
[517] | 309 | .err {
|
---|
| 310 | text-align: center;
|
---|
| 311 | font-size: 1em;
|
---|
| 312 | }
|
---|
| 313 |
|
---|
[4] | 314 | .red {
|
---|
| 315 | font-weight: bold;
|
---|
| 316 | font-family: Verdana, Arial, Helvetica, sans-serif;
|
---|
| 317 | font-size:100%;
|
---|
| 318 | color: red;
|
---|
| 319 | }
|
---|
[371] | 320 |
|
---|
| 321 | .mask {
|
---|
| 322 | background: #00ff00;
|
---|
| 323 | }
|
---|
| 324 |
|
---|
| 325 | .wildcard {
|
---|
| 326 | background: #ffff00;
|
---|
| 327 | }
|
---|
[517] | 328 |
|
---|
| 329 | .altbg {
|
---|
| 330 | background: #d0e0e0;
|
---|
| 331 | }
|
---|
| 332 |
|
---|
| 333 | .noshow {
|
---|
[580] | 334 | visibility: hidden;
|
---|
[517] | 335 | height: 0;
|
---|
| 336 | width: 0;
|
---|
| 337 | }
|
---|