2017-01-15 16:27:22 +01:00
|
|
|
html {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
padding: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: 5px double grey;
|
|
|
|
}
|
|
|
|
|
2017-01-28 14:00:20 +01:00
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td, table th {
|
|
|
|
border: 1px solid darkgrey;
|
|
|
|
}
|
|
|
|
|
2017-01-15 16:27:22 +01:00
|
|
|
table tr:nth-child(even) {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
table tr:nth-child(odd) {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.accounts col.transfer {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.accounts td > a {
|
|
|
|
font-variant: small-caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td.centered {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td.number {
|
|
|
|
text-align: right;
|
2017-01-25 22:38:39 +01:00
|
|
|
font-family: monospace, monospace; /* Hack to prevent browser default size reduction of monospace font */
|
|
|
|
font-size:1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td.mark {
|
|
|
|
background-color:rgba(255,0,0,0.1);
|
2017-01-15 16:27:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a.transfer-btn {
|
|
|
|
background-color:rgba(224,32,0,0.4);
|
|
|
|
font-weight: bold;
|
|
|
|
border: 2px outset rgb(224,32,0);
|
|
|
|
text-decoration: none;
|
2017-01-15 22:03:06 +01:00
|
|
|
border-radius: 3px;
|
2017-01-15 16:27:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
table td.even_until {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-01-31 22:14:32 +01:00
|
|
|
table.history p {
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
table.history p.linked-credit {
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
2017-02-01 21:34:01 +01:00
|
|
|
input, textarea {
|
|
|
|
border: 1px solid #ddd;
|
2017-02-02 22:23:23 +01:00
|
|
|
padding: 2px;
|
2017-02-01 21:34:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dl dt {
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
|
|
|
width: 7em;
|
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
dl dd {
|
|
|
|
margin: 0 0 0 8em;
|
|
|
|
padding: 0 0 0.5em 0;
|
2017-01-15 16:27:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
2017-02-01 21:34:01 +01:00
|
|
|
border: 1px solid #ddd;
|
2017-01-15 16:27:22 +01:00
|
|
|
background-color:transparent;
|
2017-02-02 22:23:23 +01:00
|
|
|
padding: 2px;
|
2017-01-15 16:27:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.help {
|
|
|
|
color: lightgrey;
|
|
|
|
font-size: .8em;
|
|
|
|
}
|
2017-01-28 14:00:20 +01:00
|
|
|
|
|
|
|
img.icon {
|
|
|
|
vertical-align:middle;
|
|
|
|
height: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.targettable { display:none }
|
|
|
|
.targettable:target { display: block; }
|
|
|
|
|
|
|
|
#bottommenu {
|
|
|
|
font-size:smaller;
|
|
|
|
background-color: #eee;
|
|
|
|
border-top: 5px double grey;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
font-size:smaller;
|
|
|
|
color: darkgrey;
|
|
|
|
text-align: center;
|
|
|
|
}
|