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

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

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

/**
 * NOTE: could not set input width with "normal"
 * 'size' and 'maxlength' HTML attributes because
 * they are ignored for "number"-typed inputs. */
input#id_amount {
  width: 230px;
  padding-right: 160px;
}

/* Styling the wrapper */
span.currency-symbol {
  position: absolute;
  margin-top: 13px;
  margin-left: 90px;
}

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;
}