blob: 55e68cff66e9b2d3ba5c0633db40db682c2b6d16 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
body {
font-family: "sans-serif";
}
figcaption {
text-align: center;
font-size: 8px;
color: #808080;
}
figure {
display: inline-block;
}
p {
margin: 30px 0px 30px 0px;
}
div.status {
color: #FF0000;
}
textarea {
/*
height: 30vh;
padding: 1em;
font-size: 1.5em;
text-align: left;
border: 1px solid #000;
*/
box-sizing: border-box;
resize: none;
width: 100%;
height: 540px;
}
.qrwindow {
position: fixed;
top: 50%;
left: 50%;
width: 400px;
height: 400px;
margin-top: -200px;
margin-left: -200px;
background-color: #FFFFFF;
opacity: 1;
z-index: 10;
border-width: 3px;
border-style: solid;
border-color: #FFFFFF;
padding: 10pt;
box-sizing: border-box;
}
.qrcode {
width: 374px;
height: 374px;
image-rendering: optimizeSpeed; /* */
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */
image-rendering: pixelated; /* Chrome as of 2019 */
image-rendering: optimize-contrast; /* CSS3 Proposed */
-ms-interpolation-mode: nearest-neighbor; /* IE8+ */
}
.mobile {
width: 300px;
border-width: 80px 15px 80px 15px;
border-style: solid;
border-radius: 30px;
border-color: #000000;
}
.logo {
display: block;
margin: 0 auto;
}
.screenshot {
width: 400px;
border: 2px solid;
border-color: #8888AA;
}
img.banner {
vertical-align: -5px;
}
.button {
color:#FFFFFF;
background-color:#50B050;
text-decoration: none;
padding: 15px 20px;
font-size: 16px;
border: none;
border-radius: 6px;
cursor: pointer;
}
@media only screen and (min-width: 1px) and (max-width: 630px) {
.qrwindow {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
}
}
@media only screen and (min-width: 631px) and (max-width: 950px) {
}
@media only screen and (min-width: 951px) {
div.page {
max-width: 950px;
width: 100%;
margin: 0 auto;
}
}
|