forked from kingmalvn/malvin.session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
94 lines (84 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Malvin King </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-image: url("https://telegra.ph/file/dc73e16b9988c7c56b56f.jpg"); /* Set the background image */
background-repeat: no-repeat;
background-position: center;
background-size: cover;
font-family: Arial, sans-serif;
}
.btn {
--color: #e5f5f1;
--color2: rgb(0, 0, 0);
width: 200px;
padding: 0.8em 1.75em;
background-color: black;
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>
<body><marquee style="color:blue;background-color:royal;height:75px;">
Hello 👋 welcome to Paul web site 🍀</marquee>
<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://wa.me/2347067023422`)" class="btn">Whatsapp</button>
<button onclick="window.open(`https://whatsapp.com/channel`)" class="btn">Wa Group</button>
<button onclick="window.open(`https://www.tiktok.com/`)" class="btn" >TikTok</button>
<button onclick="window.open(`https://t.me/`)" class="btn">Telegram</button>
</body>
</html>