summaryrefslogtreecommitdiff
path: root/talerbank/app/static/bank.css
blob: cd2658cb4c20184245138c724cc5b7f1fa9ee5ec (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
72
73
74
75
76
h1.nav {
  width: 92%;
  display: inline-block;
}

div.pages-list {
  margin-top: 15px;
}

a.page-number {
  color: blue;
}

a.current-page-number {
  color: inherit;
}

a.pure-button {
  position: absolute;
  right: 20px;
  top: 23px;
}

.cancelled {
  text-decoration: line-through;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

#transfer-fields {
  display: flex;
  flex-wrap: wrap;
}

#id_amount {
  width: 6em;
  display: inline-block;
  border-radius: 4px 0px 0px 4px;
}

/**
 * Amount without the currency,
 * placed left to a .currency-indicator.
 */
.amount {
  width: 6em;
  display: inline-block;
  border-radius: 4px 0px 0px 4px;
}

/*
 * Currency indicator to the right of input fields,
 * with non-rounded corners to the left.
 */
.currency-indicator {
  color: black;
  display: inline-block;
  border-radius: 0px 4px 4px 0px;
}

.fieldlabel {
  display: block;
  padding-bottom: 0.5em;
}

.fieldbox {
  margin-right: 1em;
  margin-bottom: 0.5em;
}