blob: 7218b7baf96265845077f02d9d3258e3cbf13333 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/**
* @author Gabor X. Toth
* @author Marcello Stanisci
* @author Florian Dold
*/
body {
min-height: 20em;
width: 30em;
margin: 0;
padding: 0;
max-height: 800px;
overflow: hidden;
}
.nav {
background-color: #ddd;
padding: 0.5em 0;
}
.nav a {
color: black;
padding: 0.5em;
text-decoration: none;
}
.nav a.active {
background-color: white;
font-weight: bold;
}
.container {
overflow-y: scroll;
max-height: 400px;
}
.abbrev {
text-decoration-style: dotted;
}
#content {
padding: 1em;
}
#wallet-table .amount {
text-align: right;
}
.hidden {
display: none;
}
#transactions-table th,
#transactions-table td {
padding: 0.2em 0.5em;
}
#reserve-create table {
width: 100%;
}
#reserve-create table td.label {
width: 5em;
}
#reserve-create table .input input[type="text"] {
width: 100%;
}
|