-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselect.html
99 lines (86 loc) · 2.46 KB
/
select.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Select Scan/Generate</title>
<link rel="manifest" href="manifest.json">
<link rel="icon" href="qr-code.png" type="image/png" />
<style>
body {
font-family: 'Roboto', sans-serif;
background :linear-gradient(45deg, #06c8ef 0% 10%, black 10% 12% , #1396b7 12% 13%,#eeff00 13% 14%,black 14% 16%,#1396b7 16% 18%,black 18% 22%,#1396b7 22% 26%,black 26% 27%,#1396b7 27% 29%,black 29% 31%,#1396b7 31% 65%,black 65% 65.5% ,#eeff00 66% 67% ,black 67% 68%,#eeff00 68% 70%,black 70% 71%,#eeff00 71% 85%,black 85% 86%, #eeff00 86% 100%);
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 50px 40px;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
text-align: center;
animation: fadeIn 1s ease-in-out;
max-width: 400px;
width: 100%;
}
.container h1 {
font-size: 2em;
margin-bottom: 30px;
color: #fff;
letter-spacing: 1px;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.options {
display: flex;
flex-direction: column;
gap: 15px;
}
.options a {
font-size: 1.1em;
padding: 12px 20px;
border: none;
border-radius: 25px;
text-decoration: none;
color: #ffffff;
background: linear-gradient(135deg, #ff7e5f, #feb47b);
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.options a:hover {
background: background: linear-gradient(#e66465, #9198e5);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
transform: translateY(-3px);
}
.options a:active {
transform: translateY(2px);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
/* Keyframes for animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<h1>Choose an option:</h1>
<div class="options">
<a href="scan.html">Scan QR Code</a>
<a href="generate.html">Generate QR Code</a>
</div>
</div>
</body>
</html>