-
Notifications
You must be signed in to change notification settings - Fork 0
/
qr.html
118 lines (105 loc) · 3.35 KB
/
qr.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="GURU BOT" />
<link rel="shortcut icon" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5UU6cV2tYLJO93KkaniWk2zmQ8AYlyv6LpA&usqp=CAU" type="image/x-icon" />
<title>TRACERTECH-MD | QR Code</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap" rel="stylesheet" />
<style>
body,
html {
height: 100%;
margin: 0;
padding: 0;
font-family: "Outfit", sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-image: url('https://image.lexica.art/full_webp/bf43e634-900b-44f2-8ed9-7749073c2856');
background-size: cover;
background-position: center;
position: relative;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
body::before {
content: "GURU BOT";
position: fixed;
font-size: 3em;
color: rgba(255, 255, 255, 0.2);
z-index: -1;
}
main.code {
border-radius: 8px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
max-width: 400px;
width: 100%;
}
div.card {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
img.code_1 {
width: 70%;
max-width: 200px;
border-radius: 8px;
margin-top: 20px;
}
h1.title {
color: #128c7e;
font-weight: 700;
font-size: 1.5em;
margin-top: 20px;
}
p.legend {
color: #777;
font-size: 1em;
margin-top: 10px;
text-align: center;
}
@keyframes scanAnimation {
0% {
transform: translateY(0);
}
50% {
transform: translateY(10px);
}
100% {
transform: translateY(0);
}
}
img.code_1:hover {
animation: scanAnimation 1s ease infinite;
}
</style>
</head>
<body>
<div class="overlay">
<main class="code">
<div class="card">
<img id="qr-code" class="code_1" src="https://qrcode.guruapi.tech/" alt="GURU BOT" title="Scan the QR code to connect with WhatsApp" />
<h1 class="title">TRACERTECH-MD QR</h1>
<p class="legend">Scan The QR To Get Session id For Tracertech Bot</p>
</div>
</main>
</div>
</body>
</html>