-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
230 lines (206 loc) · 7.31 KB
/
index.html
File metadata and controls
230 lines (206 loc) · 7.31 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phone detector Alarm </title>
<style>
/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #001a33 100%);
}
/* Animated RGB glow background */
body::before {
content: '';
position: absolute;
width: 200%;
height: 200%;
background: radial-gradient(circle at 20% 50%, rgba(255, 0, 100, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
radial-gradient(circle at 50% 80%, rgba(100, 0, 255, 0.15) 0%, transparent 50%);
animation: glowMove 15s ease-in-out infinite;
z-index: 0;
}
@keyframes glowMove {
0%, 100% {
transform: translate(0, 0) rotate(0deg);
}
33% {
transform: translate(-5%, 5%) rotate(120deg);
}
66% {
transform: translate(5%, -5%) rotate(240deg);
}
}
/* Container */
.container {
position: relative;
z-index: 1;
text-align: center;
width: 90%;
max-width: 600px;
}
/* Heading */
h1 {
font-size: clamp(3rem, 10vw, 6rem);
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 4rem;
background: linear-gradient(90deg, #ff0000 0%, #00ff00 50%, #0000ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
filter: drop-shadow(0 0 20px rgba(255, 0, 100, 0.5))
drop-shadow(0 0 40px rgba(0, 255, 100, 0.3))
drop-shadow(0 0 60px rgba(0, 100, 255, 0.3));
transition: filter 0.3s ease;
}
h1:hover {
filter: drop-shadow(0 0 30px rgba(255, 0, 100, 0.8))
drop-shadow(0 0 60px rgba(0, 255, 100, 0.6))
drop-shadow(0 0 90px rgba(0, 100, 255, 0.6));
}
/* Glassmorphism box */
.glass-box {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 30px;
padding: 3rem 2rem;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 0 40px rgba(255, 0, 100, 0.2),
0 0 80px rgba(0, 200, 255, 0.2),
0 0 120px rgba(100, 0, 255, 0.2);
animation: borderGlow 3s ease-in-out infinite;
}
@keyframes borderGlow {
0%, 100% {
box-shadow: 0 0 40px rgba(255, 0, 100, 0.3),
0 0 80px rgba(0, 200, 255, 0.2),
0 0 120px rgba(100, 0, 255, 0.2);
}
50% {
box-shadow: 0 0 60px rgba(255, 0, 100, 0.4),
0 0 100px rgba(0, 200, 255, 0.3),
0 0 140px rgba(100, 0, 255, 0.3);
}
}
/* Input display */
.input-display {
background: rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 1.5rem;
margin-bottom: 2rem;
color: rgba(255, 255, 255, 0.6);
font-size: 1rem;
word-break: break-all;
min-height: 60px;
display: flex;
align-items: center;
justify-content: center;
}
/* Button */
.view-button {
background: linear-gradient(135deg, #00f5ff 0%, #a000ff 50%, #ff00bf 100%);
border: none;
border-radius: 50px;
padding: 1.2rem 4rem;
font-size: 1.5rem;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.15em;
color: #ffffff;
cursor: pointer;
box-shadow: 0 0 30px rgba(0, 245, 255, 0.4),
0 0 60px rgba(160, 0, 255, 0.3),
0 0 90px rgba(255, 0, 191, 0.2);
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.view-button:hover {
transform: scale(1.05);
box-shadow: 0 0 50px rgba(0, 245, 255, 0.7),
0 0 100px rgba(160, 0, 255, 0.6),
0 0 150px rgba(255, 0, 191, 0.5);
}
/* Footer text */
.footer-text {
margin-top: 2.5rem;
color: rgba(255, 255, 255, 0.6);
font-size: 1rem;
letter-spacing: 0.05em;
}
/* Watermark */
.watermark {
position: fixed;
bottom: 20px;
right: 20px;
color: rgba(255, 255, 255, 0.3);
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 0.1em;
z-index: 10;
text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}
/* Responsive design */
@media (max-width: 768px) {
.container {
width: 95%;
}
h1 {
margin-bottom: 3rem;
}
.glass-box {
padding: 2rem 1.5rem;
}
.view-button {
padding: 1rem 3rem;
font-size: 1.2rem;
}
.watermark {
bottom: 15px;
right: 15px;
font-size: 0.8rem;
}
.footer-text {
font-size: 0.9rem;
padding: 0 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Main heading -->
<h1>Phone detector Alarm </h1>
<!-- Glassmorphism content box -->
<div class="glass-box">
<!-- Google Drive link display -->
<div class="input-display">
https://drive.google.com/drive/folders/1nTlslrnVXKFYcKwxublUlreGV55QpkCW?usp=sharing
</div>
<!-- View button -->
<a href="https://drive.google.com/drive/folders/1nTlslrnVXKFYcKwxublUlreGV55QpkCW?usp=sharing" target="_blank" class="view-button">VIEW</a>
</div>
<!-- Footer text -->
<p class="footer-text">Thank you for visiting.</p>
</div>
<!-- Watermark -->
<div class="watermark">made by k4hav</div>
</body>
</html>