-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (55 loc) · 1.6 KB
/
Copy pathindex.html
File metadata and controls
62 lines (55 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ORRO — Coming Soon</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
width: 100%; height: 100%;
overflow: hidden;
background: #000;
}
.wallpaper {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
/* Default — desktop and tablet */
object-position: center center;
}
/* ── iPhone SE / small Android — 340–390px portrait ── */
@media (max-width: 390px) and (orientation: portrait) {
.wallpaper {
object-position: center 20%;
/* Anchors 20% from the top — keeps the upper portion
of the image in frame where logos/focal points usually sit.
Shift toward 50% to show more centre, 0% for very top. */
}
}
/* ── iPhone 14/15 standard — 390–430px portrait ── */
@media (min-width: 391px) and (max-width: 430px) and (orientation: portrait) {
.wallpaper {
object-position: center 25%;
}
}
/* ── iPhone Pro Max / Plus — 430px+ portrait ── */
@media (min-width: 431px) and (max-width: 600px) and (orientation: portrait) {
.wallpaper {
object-position: center 30%;
}
}
/* ── Any iPhone landscape ── */
@media (max-width: 900px) and (orientation: landscape) {
.wallpaper {
object-position: center 35%;
}
}
</style>
</head>
<body>
<img class="wallpaper" src="https://raw.githubusercontent.com/orroprotocol/core/refs/heads/main/assets/orro_wallpaper_3.png">
</body>
</html>