File size: 4,595 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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Plants Album - Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #2b2b2b;
color: #eaeaea;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 90px;
padding: 0 32px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #ffffff;
font-size: 32px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 22px;
font-size: 28px;
}
.icon {
display: inline-flex;
width: 44px;
height: 44px;
}
/* App bar */
.app-bar {
position: absolute;
top: 90px;
left: 0;
right: 0;
padding: 28px 28px 22px 28px;
box-sizing: border-box;
display: flex;
align-items: center;
gap: 18px;
}
.app-title-group {
display: flex;
flex-direction: column;
}
.title {
font-size: 52px;
font-weight: 600;
color: #eaeaea;
line-height: 1.2;
}
.subtitle {
margin-top: 8px;
font-size: 28px;
color: #bdbdbd;
}
.app-actions {
margin-left: auto;
display: flex;
align-items: center;
gap: 10px;
}
/* Content */
.content {
position: absolute;
top: 210px;
left: 0;
right: 0;
padding: 20px 28px 120px 28px;
box-sizing: border-box;
}
.section-title {
font-size: 34px;
font-weight: 700;
color: #d5d5d5;
margin: 22px 0 20px 12px;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 24px;
padding-left: 12px;
}
.thumb {
width: 480px;
height: 360px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 6px;
color: #757575;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
text-align: center;
}
/* Bottom gesture bar area */
.gesture-bar {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 110px;
background: #000000;
}
.gesture-pill {
position: absolute;
width: 220px;
height: 12px;
border-radius: 12px;
background: #e6e6e6;
left: 50%;
transform: translateX(-50%);
bottom: 38px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">6:16</div>
<div class="status-right">
<!-- Simple Wi-Fi icon -->
<svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2">
<path d="M2 8c6-5 14-5 20 0"></path>
<path d="M5 12c4-3 10-3 14 0"></path>
<path d="M8 16c3-2 5-2 8 0"></path>
<circle cx="12" cy="19" r="1.6" fill="#ffffff" stroke="none"></circle>
</svg>
<!-- Battery icon with percent text -->
<svg class="icon" viewBox="0 0 28 18">
<rect x="1" y="3" width="22" height="12" rx="2" fill="none" stroke="#ffffff" stroke-width="2"></rect>
<rect x="3" y="5" width="16" height="8" rx="1.5" fill="#ffffff"></rect>
<rect x="24" y="7" width="3" height="6" rx="1" fill="#ffffff"></rect>
</svg>
<span>100%</span>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<!-- Back arrow -->
<svg class="icon" viewBox="0 0 48 48" fill="none" stroke="#eaeaea" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
<path d="M28 10 L14 24 L28 38"></path>
</svg>
<div class="app-title-group">
<div class="title">Plants</div>
<div class="subtitle">2 items · 8.3 MB</div>
</div>
<div class="app-actions">
<!-- More vertical -->
<svg class="icon" viewBox="0 0 24 24" fill="#eaeaea">
<circle cx="12" cy="5" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="19" r="2"></circle>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="section-title">September</div>
<div class="grid">
<div class="thumb">[IMG: Tall indoor plant by window]</div>
<div class="thumb">[IMG: Planter with green plants]</div>
</div>
</div>
<!-- Bottom gesture bar -->
<div class="gesture-bar">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html> |