-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.html
130 lines (117 loc) · 2.91 KB
/
main.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
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: 'Roboto', 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #4e9f3d, #34d7b7, #55c7f7);
background-size: 300% 300%;
animation: gradientAnimation 10s ease infinite;
}
@keyframes gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
h1 {
color: white;
font-size: 3.5rem;
margin-bottom: 40px;
text-align: center;
letter-spacing: 3px;
text-transform: uppercase;
font-weight: 700;
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.btn {
width: 250px;
padding: 15px 25px;
margin: 10px;
background: transparent;
border-radius: 25px;
border: 2px solid #ffffff;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
color: white;
text-align: center;
position: relative;
overflow: hidden;
cursor: pointer;
transition: all 0.4s ease;
box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
/* Add shine effect on hover */
.btn::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
height: 200%;
width: 200%;
background: rgba(255, 255, 255, 0.3);
transform: skewX(45deg);
transition: all 0.5s;
}
.btn:hover::before {
top: 0;
left: 0;
height: 100%;
width: 100%;
}
.btn:hover {
background-color: #ffffff;
color: #333;
box-shadow: 0 10px 25px rgba(255, 255, 255, 0.5);
transform: scale(1.05);
}
.btn:active {
filter: brightness(0.9);
transform: scale(0.98);
}
/* Responsive Design */
@media (max-width: 600px) {
h1 {
font-size: 2.2rem;
}
.btn {
width: 80%;
padding: 12px 20px;
font-size: 16px;
}
}
@media (min-width: 600px) and (max-width: 1024px) {
h1 {
font-size: 2.8rem;
}
.btn {
width: 220px;
padding: 14px 22px;
}
}
@media (min-width: 1024px) {
h1 {
font-size: 3.5rem;
}
.btn {
width: 250px;
padding: 15px 25px;
}
}
</style>
</head>
<body>
<button onclick="window.open(`/qr`)" class="btn">QR Code</button>
<button onclick="window.open(`/pair`)" class="btn">Pair Code</button>
<button onclick="window.open(`https://github.com/GlobalTechInfo`)" class="btn">GitHub</button>
<button onclick="window.open(`https://whatsapp.com/channel/0029VagJIAr3bbVBCpEkAM07`)" class="btn">WhatsApp</button>
</body>
</html>