-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.1 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Iframe Embed Test Host</title>
<style>
body {
background: #121212;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* Simulating a fixed-size container common in social feeds */
.embed-container {
width: 500px;
height: 700px;
/* border-box keeps the 1px border inside the 500×700 dims */
box-sizing: border-box;
border: 1px solid #333;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<div class="embed-container">
<!-- Replace with your local dev URL or deployed URL -->
<iframe src="https://rootstock-nft.winks.fun" id="wink-iframe" allow="clipboard-write; wallet"></iframe>
</div>
</body>
</html>