blob: 1409f31a48a7b3f804c03e44400285e0fee890f2 (
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
|
<link rel="stylesheet"
href="{{static_url}}pure-min.css"
integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ"
crossorigin="anonymous">
<style>
.talerbar {
text-align: center;
}
.tt {
font-family: 'Lucida Console', Monaco, monospace;
}
.content {
overflow-x: auto;
padding-left: 15%;
padding-right: 15%;
}
.qr {
margin: auto;
text-align: center;
}
.qrtext {
width: max-content;
margin: auto;
transition: font-size 0.2s;
font-family: 'Lucida Console', Monaco, monospace;
font-size: 0.5em;
}
.qrtext:hover {
font-size: 1em;
}
.talerbar {
margin: 0;
bottom: 0;
background-color: #033;
color: white;
width: 100%;
padding: 1em;
overflow: auto;
}
body {
overflow-y: scroll;
}
@media (min-width: 500px) {
.content {
padding-bottom: 2em;
margin-right: 1em;
overflow-y: auto;
}
}
#define EMPTY
EMPTY#main a:link, #main a:visited, #main a:hover, #main a:active {
color: black;
}
</style>
|