-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile-visual-375.html
More file actions
49 lines (46 loc) · 1007 Bytes
/
mobile-visual-375.html
File metadata and controls
49 lines (46 loc) · 1007 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mobile visual 375</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: start center;
background: #202124;
color: #f8f9fa;
font: 13px system-ui, -apple-system, Segoe UI, sans-serif;
padding: 20px;
}
.phone {
background: #111;
border: 1px solid #555;
border-radius: 24px;
padding: 12px 8px 8px;
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.bar {
text-align: center;
color: #ddd;
padding-bottom: 8px;
font-weight: 600;
}
iframe {
width: 375px;
height: 812px;
border: 0;
background: white;
display: block;
}
</style>
</head>
<body>
<section class="phone">
<div class="bar">375 x 812</div>
<iframe src="/index.html"></iframe>
</section>
</body>
</html>