forked from Cheroo51/ENZO-MD-SESSIONS-GENERATOR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwasipage.html
112 lines (101 loc) · 2.93 KB
/
wasipage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>POPKID-MD</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: blue; /* Black bars on top and bottom */
color: black; /* Black text color */
font-weight: bold; /* Bold font */
}
.content-wrapper {
text-align: center;
position: relative;
z-index: 1;
}
.background-image {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: auto;
transform: translate(-50%, -50%);
z-index: -1;
max-height: 100%;
max-width: 100%;
}
.btn {
--color: blue; /* Text color inside button */
--color2: white; /* Hover text color */
width: 200px;
padding: 0.8em 1.75em;
background-color: red;
border-radius: 6px;
border: .3px solid var(--color);
transition: .5s;
position: relative;
overflow: hidden;
cursor: pointer;
z-index: 1;
font-weight: bold; /* Bold text inside button */
font-size: 17px;
font-family: 'Roboto', 'Segoe UI', sans-serif;
text-transform: uppercase;
color: var(--color);
margin-bottom: 24px;
}
.btn::after, .btn::before {
content: '';
display: block;
height: 100%;
width: 100%;
transform: skew(90deg) translate(-50%, -50%);
position: absolute;
inset: 50%;
left: 25%;
z-index: -1;
transition: .5s ease-out;
background-color: var(--color);
}
.btn::before {
top: -50%;
left: -25%;
transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}
.btn:hover::before {
transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}
.btn:hover::after {
transform: skew(45deg) translate(-50%, -50%);
}
.btn:hover {
color: var(--color2);
}
.btn:active {
filter: brightness(.7);
transform: scale(.98);
}
</style>
</head>
<body>
<div class="content-wrapper">
<img src="https://i.ibb.co/FDW0FBj/a2febc9a4ed8f43ff47546fb45312cae-2.jpg" alt="Background Image" class="background-image">
<div>
<button onclick="window.open(`/wasiqr`)" class="btn">QR Code</button>
<button onclick="window.open(`/pair`)" class="btn">Pair Code</button>
<button onclick="window.open(`https://github.com/Popkiddevs/NORMAL-BOT-MD`)" class="btn">Bot Repo</button>
<button onclick="window.open(`https://wa.me/254111385747?text=`)" class="btn">Contact Me</button>
<button onclick="window.open(`https://whatsapp.com/channel/0029VadQrNI8KMqo79BiHr3l`)" class="btn">Wa Channel</button>
<button onclick="window.open(`https://Instagram.com/@pop_kid`)" class="btn">INSTAGRAM</button>
</div>
</div>
</body>
</html>