File size: 3,587 Bytes
fa881a6 | 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 Skeleton</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Arial, Helvetica, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 140px;
background: #3a3a3a;
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
box-sizing: border-box;
font-weight: 600;
}
.sb-left, .sb-right {
display: flex;
align-items: center;
gap: 26px;
font-size: 46px;
}
.sb-left .temp {
opacity: 0.9;
font-weight: 700;
}
.icon {
width: 44px;
height: 44px;
}
/* Content area */
.content {
position: absolute;
top: 140px;
left: 0;
width: 1080px;
height: 2120px;
padding: 60px;
box-sizing: border-box;
}
.placeholder-line {
width: 760px;
height: 24px;
background: #f5f5f5;
border-radius: 20px;
margin: 26px 0;
}
.placeholder-line.short {
width: 420px;
}
.card {
width: 960px;
height: 520px;
background: #fbfbfb;
border-radius: 34px;
border: 1px solid #f1f1f1;
margin: 80px 0;
box-sizing: border-box;
}
/* Bottom navigation bar */
.nav-bar {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 140px;
background: #3a3a3a;
display: flex;
align-items: center;
justify-content: center;
}
.home-indicator {
width: 300px;
height: 14px;
background: #dcdcdc;
border-radius: 10px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<div class="status-bar">
<div class="sb-left">
<div>8:41</div>
<div class="temp">18°</div>
<!-- Simple badge icon -->
<svg class="icon" viewBox="0 0 24 24" fill="#ffffff" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<path d="M12 2l6 4v6c0 4.4-3.1 8.4-6 10-2.9-1.6-6-5.6-6-10V6l6-4zm-3 7h6v2H9V9z"/>
</svg>
<div class="temp">32°</div>
</div>
<div class="sb-right">
<!-- WiFi icon -->
<svg class="icon" viewBox="0 0 24 24" fill="#ffffff" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<path d="M12 18.5c.8 0 1.5.7 1.5 1.5S12.8 21.5 12 21.5s-1.5-.7-1.5-1.5.7-1.5 1.5-1.5z"/>
<path d="M4.5 11.5C7.8 9 12.2 9 15.5 11.5l1.5-1.6C13.8 7.7 10.2 7.7 6.9 9.9l-2.4 1.6z" opacity=".9"/>
<path d="M1.5 8C6.7 4.3 17.3 4.3 22.5 8l-1.7 1.7C16.2 6 7.8 6 3.2 9.7L1.5 8z" opacity=".9"/>
</svg>
<!-- Battery icon -->
<svg class="icon" viewBox="0 0 24 24" fill="#ffffff" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<path d="M18 7h1.5c.8 0 1.5.7 1.5 1.5v6c0 .8-.7 1.5-1.5 1.5H18V7z"/>
<rect x="3" y="7" width="14" height="10" rx="2" ry="2"/>
<rect x="5" y="9" width="8" height="6" fill="#3a3a3a"/>
<path d="M9 9l-2 3h3l-2 3" fill="#ffffff"/>
</svg>
</div>
</div>
<div class="content">
<div style="height: 140px;"></div>
<div class="placeholder-line"></div>
<div class="placeholder-line short"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
</div>
<div class="nav-bar">
<div class="home-indicator"></div>
</div>
</div>
</body>
</html> |