-
Notifications
You must be signed in to change notification settings - Fork 61
/
main.html
91 lines (81 loc) · 2.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GiftedMDv2Session Generator</title>
<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;
background-color: black;
}
.btn {
--color: #e5f5f1;
--color2: rgb(0, 0, 0);
width: 200px;
padding: 0.8em 1.75em;
background-color: green;
border-radius: 6px;
border: .3px solid var(--color);
transition: .5s;
position: relative;
overflow: hidden;
cursor: pointer;
z-index: 1;
font-weight: 300;
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>
<button onclick="window.open(`https://session.giftedtechnexus.co.ke/qr`)" class="btn">QR Code</button>
<button onclick="window.open(`https://session.giftedtechnexus.co.ke/pair`)" class="btn">Pair Code</button>
<button onclick="window.open(`https://github.com/Giftedmaurice/gifted-mdV2`)" class="btn">Bot Repo</button>
<button onclick="window.open(`https://github.com/Giftedmaurice/gifted-bot-md-plugins`)" class="btn">Plugins</button>
<button onclick="window.open(`https://wa.me/message/NHCZC5DSOEUXB1`)" class="btn">Contact Me</button>
<button onclick="window.open(`https://chat.whatsapp.com/L0ctUUVLlsrFYwBHApKfew`)" class="btn">Wa Group</button>
<button onclick="window.open(`https://whatsapp.com/channel/0029VaJmfmTDJ6H7CmuBss0o`)" class="btn">Wa Channel</button>
<button onclick="window.open(`https://instagram.com/giftedtechnexus`)" class="btn">Instagram</button>
<button onclick="window.open(`https://youtube.com/@giftedtechnexus`)" class="btn">Youtube</button>
</body>
</html>