2009-07-06 11:31:40 +00:00
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2010-04-20 01:24:36 +00:00
|
|
|
* things common to all pages *
|
2009-07-06 11:31:40 +00:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
BODY {
|
|
|
|
background: #EEE;
|
2009-08-24 00:56:04 +00:00
|
|
|
font-family: sans-serif;
|
2009-07-06 11:31:40 +00:00
|
|
|
font-size: 14px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
H1 {
|
|
|
|
background: #BBB;
|
|
|
|
text-align: center;
|
2010-04-20 01:24:36 +00:00
|
|
|
border: 1px solid #AAA;
|
2009-07-06 11:31:40 +00:00
|
|
|
}
|
|
|
|
H1 A {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
H3 {
|
|
|
|
text-align: center;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2010-04-20 01:24:36 +00:00
|
|
|
.hrr {
|
|
|
|
background: #CCC;
|
|
|
|
border: 1px solid #BBB;
|
|
|
|
}
|
|
|
|
.brr, .thumb {
|
|
|
|
background: #DDD;
|
|
|
|
border: 1px solid #CCC;
|
|
|
|
}
|
|
|
|
.brr, .hrr, H1, #footer, .thumb {
|
|
|
|
margin: 8px;
|
|
|
|
padding: 8px;
|
2010-04-20 01:51:38 +00:00
|
|
|
border-radius: 12px; /* standard, webkit, opera */
|
|
|
|
-moz-border-radius: 12px; /* mozilla haven't committed yet */
|
|
|
|
box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* standard, opera */
|
|
|
|
-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* webkit haven't committed yet */
|
|
|
|
-moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* mozilla haven't committed yet */
|
2010-04-20 01:24:36 +00:00
|
|
|
}
|
2009-07-06 11:31:40 +00:00
|
|
|
THEAD {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
TD {
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
CODE {
|
|
|
|
background: #DEDEDE;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
#body SELECT {width: 150px;}
|
|
|
|
TD>INPUT[type="submit"] {width: 100%;}
|
|
|
|
TD>INPUT[type="text"] {width: 100%;}
|
|
|
|
TD>INPUT[type="password"] {width: 100%;}
|
2009-09-27 11:34:58 +00:00
|
|
|
TD>TEXTAREA {width: 100%;}
|
2009-07-06 11:31:40 +00:00
|
|
|
TD>SELECT {width: 100%;}
|
2009-10-09 11:07:13 +00:00
|
|
|
[onclick] {cursor:pointer;}
|
2009-07-06 11:31:40 +00:00
|
|
|
|
2009-08-24 02:57:18 +00:00
|
|
|
TABLE.zebra {border-spacing: 0px; border: 2px solid #CCC;}
|
2009-07-06 11:31:40 +00:00
|
|
|
TABLE.zebra TD, TABLE.zebra TH {vertical-align: middle; padding: 4px;}
|
|
|
|
TABLE.zebra THEAD TD, TABLE.zebra THEAD TH {border-bottom: 2px solid #CCC;}
|
|
|
|
TABLE.zebra TFOOT TD, TABLE.zebra TFOOT TH {border-top: 2px solid #CCC;}
|
2009-08-24 02:57:18 +00:00
|
|
|
TABLE.zebra TR TD {border-bottom: 1px solid #DDD;}
|
2009-07-06 11:31:40 +00:00
|
|
|
TABLE.zebra TR.odd {background: #EFEFEF;}
|
|
|
|
TABLE.zebra TR.even {background: #E0E0E0;}
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
clear: both;
|
|
|
|
font-size: 0.7em;
|
|
|
|
text-align: center;
|
|
|
|
background: #BBB;
|
2010-04-20 01:24:36 +00:00
|
|
|
border: 1px solid #AAA;
|
2009-07-06 11:31:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*[onclick] {cursor: pointer;}
|
|
|
|
IMG {border: none;}
|
|
|
|
FORM {margin: 0px;}
|
|
|
|
A {text-decoration: none;}
|
|
|
|
A:hover {text-decoration: underline;}
|
|
|
|
|
|
|
|
BLOCKQUOTE {
|
|
|
|
border: 1px solid black;
|
|
|
|
padding: 8px;
|
|
|
|
background: #DDD;
|
|
|
|
}
|
|
|
|
|
|
|
|
UL {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* the navigation bar, and all its blocks *
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
#nav {
|
|
|
|
width: 200px;
|
|
|
|
float: left;
|
|
|
|
text-align: center;
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
|
|
|
#nav .blockbody {
|
|
|
|
font-size: 0.85em;
|
|
|
|
text-align: center;
|
2010-04-20 01:24:36 +00:00
|
|
|
overflow: hidden;
|
2009-07-06 11:31:40 +00:00
|
|
|
}
|
|
|
|
#nav TABLE {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
#nav TD {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
#nav INPUT {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
#nav SELECT {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#comments P {
|
|
|
|
text-align: left;
|
|
|
|
width: 150px;
|
|
|
|
max-width: 150px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2009-07-06 15:51:34 +00:00
|
|
|
.comment {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2012-02-06 14:42:38 +00:00
|
|
|
.comment .info {
|
|
|
|
display: none;
|
2011-12-31 14:21:02 +00:00
|
|
|
}
|
2009-07-06 11:31:40 +00:00
|
|
|
|
|
|
|
.more:after {
|
|
|
|
content: " >>>";
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag_count:before {
|
|
|
|
content: "(";
|
|
|
|
}
|
|
|
|
.tag_count:after {
|
|
|
|
content: ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
.paginator {
|
|
|
|
clear: both;
|
|
|
|
padding: 4px;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* the main part of each page *
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
#body {
|
|
|
|
margin-left: 226px;
|
|
|
|
margin-right: 16px;
|
|
|
|
text-align: center;
|
|
|
|
height: 1%;
|
|
|
|
}
|
|
|
|
#body TABLE {
|
|
|
|
width: 90%;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* specific page types *
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
#pagelist {
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tagmap A {
|
|
|
|
padding: 8px 4px 8px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setupblock {
|
2009-07-06 11:44:52 +00:00
|
|
|
text-align: center;
|
2009-07-06 11:31:40 +00:00
|
|
|
width: 350px;
|
|
|
|
}
|
2009-07-06 11:44:52 +00:00
|
|
|
.setupblock TEXTAREA {
|
|
|
|
width: 300px;
|
2009-07-06 12:07:57 +00:00
|
|
|
font-size: 0.75em;
|
2009-07-06 11:44:52 +00:00
|
|
|
}
|
2009-07-06 11:31:40 +00:00
|
|
|
|
|
|
|
.helpable {
|
|
|
|
border-bottom: 1px dashed gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ok {
|
|
|
|
background: #AFA;
|
|
|
|
}
|
|
|
|
.bad {
|
|
|
|
background: #FAA;
|
|
|
|
}
|
|
|
|
|
2009-07-19 06:32:56 +00:00
|
|
|
#nav .thumbblock {
|
|
|
|
float: none;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
#nav .thumb {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2009-07-06 11:31:40 +00:00
|
|
|
.thumbblock {
|
|
|
|
width: 220px;
|
|
|
|
height: 220px;
|
|
|
|
display: inline-block;
|
2010-04-20 01:24:36 +00:00
|
|
|
text-align: center;
|
2009-07-06 11:31:40 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.thumb {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
2009-08-03 18:58:12 +00:00
|
|
|
#downtime #message, #downtime #login {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#downtime H3 {
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
#downtime #login_table {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|