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
77
78
79
80
81
|
body {
background: #f8f8f8;
color: #000000;
font-size: 1em;
font-family: sans-serif;
}
h3 {
font-size: 1.5em;
font-weight: 400;
line-height: 1.1;
color: #444;
}
a {
color: #1863a1;
}
li {
padding-bottom: 0.75em;
}
.btn:hover, .btn:focus, .btn.focus {
color: #666;
text-decoration: none;
}
.btn-primary {
background: #252e3f;
color: #f2f2f2;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
background: #353e5f;
color: #b7c1d5;
box-shadow: none;
}
.btn-primary:active, .btn-primary.active {
background: #353e5f;
box-shadow: none;
}
.text-center {
text-align: center;
}
.hint {
font-size: 0.9em;
color: #444;
}
.img-center {
display: flex;
/* FIXME Why margin: auto; is not equal on all sides?
margin-right: 8%;
margin-left: 8%; */
width: 3%;
}
.img-center > span {
font-size: 0.7em;
padding: 1.4em;
margin: 40%;
}
.img-center > span:hover {
border-radius: 4px;
background: rgb(230, 230, 230);
}
.img-center > span > a {
text-decoration: solid;
}
.qrcode {
padding: 20px 5px 5px 5px;
width: 42.5%;
height: 100%;
margin: auto;
}
|