File size: 4,303 Bytes
98687c3 | 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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Mobile UI Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #243E4A; /* deep slate blue/teal */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 110px;
display: flex;
align-items: center;
padding: 24px 40px 0 40px;
box-sizing: border-box;
}
.sb-left, .sb-right {
display: flex;
align-items: center;
gap: 24px;
}
.sb-left {
flex: 1;
}
.time {
font-size: 42px;
font-weight: 600;
letter-spacing: 0.5px;
}
.dot {
width: 12px;
height: 12px;
background: #FFFFFF;
border-radius: 50%;
opacity: 0.95;
margin-left: 6px;
margin-right: 6px;
}
.icon {
width: 34px;
height: 34px;
display: inline-block;
}
.icon svg {
width: 100%;
height: 100%;
}
/* Bottom navigation pill */
.nav-pill {
position: absolute;
bottom: 72px;
left: 50%;
transform: translateX(-50%);
width: 420px;
height: 16px;
background: #FFFFFF;
border-radius: 16px;
opacity: 0.95;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="sb-left">
<div class="time">10:05</div>
<!-- Small status icons near time -->
<div class="icon">
<!-- Zigzag/Activity -->
<svg viewBox="0 0 24 24">
<path d="M3 14 L9 6 L12 11 L16 8 L21 16" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="icon">
<!-- Dots grid -->
<svg viewBox="0 0 24 24">
<g fill="#FFFFFF">
<circle cx="6" cy="6" r="2"/>
<circle cx="12" cy="6" r="2"/>
<circle cx="18" cy="6" r="2"/>
<circle cx="6" cy="12" r="2"/>
<circle cx="12" cy="12" r="2"/>
<circle cx="18" cy="12" r="2"/>
<circle cx="6" cy="18" r="2"/>
<circle cx="12" cy="18" r="2"/>
<circle cx="18" cy="18" r="2"/>
</g>
</svg>
</div>
<div class="icon">
<!-- Upload arrow -->
<svg viewBox="0 0 24 24">
<path d="M12 17 V7" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M7 11 L12 6 L17 11" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 19 H19" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div class="icon">
<!-- Stylized A -->
<svg viewBox="0 0 24 24">
<path d="M4 19 L12 5 L20 19" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 15 H16" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div class="dot"></div>
</div>
<div class="sb-right">
<div class="icon">
<!-- Wi-Fi -->
<svg viewBox="0 0 24 24">
<path d="M3 8 Q12 2 21 8" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M6 12 Q12 7 18 12" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<path d="M9 16 Q12 14 15 16" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="18.5" r="1.7" fill="#FFFFFF"/>
</svg>
</div>
<div class="icon">
<!-- Battery -->
<svg viewBox="0 0 24 24">
<rect x="3" y="6" width="16" height="12" rx="2" ry="2" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<rect x="5" y="8" width="12" height="8" fill="#FFFFFF"/>
<rect x="19" y="9" width="2.5" height="6" rx="1" ry="1" fill="#FFFFFF"/>
</svg>
</div>
</div>
</div>
<!-- Bottom Navigation Pill -->
<div class="nav-pill"></div>
</div>
</body>
</html> |