index.css
1.12 KB
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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.export-button-mobile {
display: none !important;
position: fixed;
bottom: 85px;
right: 0;
min-width: 50px;
box-shadow: 0px 4px 4px 0px #00000040;
}
.export-button-mobile span {
display: none;
}
.vuzo_container {
text-align: center;
padding: 5px;
display: inline-flex;
margin: 10px auto;
bottom: 0;
position: absolute;
}
.vuzo_img, .vuzo_gpay, .vuzo_qr {
padding: 0 2px;
}
@media screen and (max-width: 640px) {
.export-button-mobile {
display: flex !important;
}
}
@media screen and (max-height: 768px) {
.vuzo_container {
margin: 15px auto 0 !important;
position: inherit !important;
}
}
@media screen and (max-height: 720px) {
.vuzo_container {
margin: 10px auto 0 !important;
position: inherit !important;
}
}