-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (54 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
64 lines (54 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MaliqGPT</title>
<!-- Poppins Bold -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap" rel="stylesheet">
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
background: #111;
}
.wrapper {
position: relative;
width: 100%;
height: 100%;
}
iframe {
width: 100%;
height: 100%;
border: none;
display: block;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 30%;
height: 70px;
background: #09090B;
z-index: 9999;
display: flex;
align-items: center;
justify-content: left;
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 22px;
color: #fff;
letter-spacing: 1px;
pointer-events: auto; /* INI YANG BIKIN GA TEMBUS */
}
</style>
</head>
<body>
<div class="wrapper">
<iframe src="https://shadcn-chatbot-kit.vercel.app/demo"></iframe>
<div class="overlay" style="padding: 0 32px;">
MaliqGPT
</div>
</div>
</body>
</html>