-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
index.html
103 lines (102 loc) · 3.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHIVA</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #ff007a, #ffb74d);
overflow: hidden;
}
.container {
text-align: center;
color: white;
}
.main-heading, .sub-heading {
font-size: 4rem;
margin: 0;
position: relative;
animation: glitch 1.5s infinite;
}
.main-heading {
font-size: 5rem;
}
.sub-heading {
font-size: 2rem;
margin-top: 10px;
}
.icons {
margin-top: 20px;
}
.icons a {
color: white;
margin: 0 15px;
font-size: 2rem;
text-decoration: none;
transition: color 0.3s;
}
.icons a:hover {
color: #ffb74d;
}
@keyframes glitch {
0% {
transform: translate(0);
text-shadow: 1px 1px 0 #fff, -1px -1px 0 #ff007a;
}
20% {
transform: translate(-5px, 5px);
text-shadow: 2px 2px 0 #ff007a, -2px -2px 0 #ffb74d;
}
40% {
transform: translate(5px, -5px);
text-shadow: 1px 1px 0 #ffb74d, -1px -1px 0 #ff007a;
}
60% {
transform: translate(-5px, -5px);
text-shadow: 2px 2px 0 #fff, -2px -2px 0 #ff007a;
}
80% {
transform: translate(5px, 5px);
text-shadow: 1px 1px 0 #ff007a, -1px -1px 0 #ffb74d;
}
100% {
transform: translate(0);
text-shadow: 1px 1px 0 #fff, -1px -1px 0 #ff007a;
}
}
@media (max-width: 768px) {
.main-heading {
font-size: 3rem;
}
.sub-heading {
font-size: 1rem;
}
.icons a {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="main-heading">SHIVA</div>
<div class="sub-heading">BOT GHOST STATUS REMOVER v3</div>
<div class="icons">
<a href="https://discord.com/invite/xQF9f9yUEM" target="_blank" title="Discord"><i class="fab fa-discord"></i></a>
<a href="https://www.youtube.com/@GlaceYT" target="_blank" title="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://github.com/GlaceYT" target="_blank" title="GitHub"><i class="fab fa-github"></i></a>
</div>
</div>
</body>
</html>