File size: 8,738 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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | <html lang="en">
<head>
<meta charset="UTF-8">
<title>AccuWeather Side Menu</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: #12171a;
}
/* Side panel */
.side-panel {
position: absolute;
left: 0;
top: 0;
width: 760px;
height: 2400px;
background: #21272b;
color: #fff;
padding: 40px 40px;
box-sizing: border-box;
}
/* Brand */
.brand {
display: flex;
align-items: center;
gap: 24px;
margin-bottom: 24px;
}
.brand .logo {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
.brand .title {
font-size: 64px;
font-weight: 700;
letter-spacing: 0.5px;
}
.brand .subtitle {
font-size: 28px;
color: #bfc7ce;
margin-left: 104px;
margin-top: -10px;
}
/* Premium banner */
.banner {
width: 680px;
border-radius: 16px;
overflow: hidden;
background: #2a3136;
border: 1px solid #3a4146;
margin-top: 24px;
margin-bottom: 28px;
}
.banner .image {
height: 240px;
background: #E0E0E0;
border-bottom: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 28px;
}
.banner .text {
padding: 28px;
font-size: 44px;
font-weight: 700;
line-height: 1.2;
}
.premium-btn {
margin: 0 28px 28px 28px;
height: 100px;
border-radius: 12px;
background: linear-gradient(90deg,#3aa37b,#2f6bb2);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 34px;
font-size: 36px;
font-weight: 700;
}
.premium-btn .arrow {
width: 36px; height: 36px;
}
/* Menu items */
.menu-group {
margin-top: 18px;
}
.menu-item {
display: flex;
align-items: center;
gap: 28px;
padding: 28px 10px;
font-size: 44px;
color: #ffffff;
}
.menu-item .icon {
width: 60px;
height: 60px;
display: inline-flex;
align-items: center;
justify-content: center;
color: #cfd6dd;
}
.new-pill {
margin-left: 8px;
background: #ff7a2c;
color: #fff;
font-size: 28px;
padding: 10px 18px;
border-radius: 28px;
font-weight: 700;
}
.divider {
height: 1px;
background: #3a4146;
margin: 18px 0 8px;
width: 680px;
}
.secondary-item {
padding: 26px 10px;
font-size: 40px;
color: #dbe1e6;
}
/* Footer links */
.footer-links {
position: absolute;
left: 40px;
bottom: 70px;
display: flex;
align-items: center;
gap: 18px;
color: #c6cbd0;
font-size: 34px;
}
.dot {
width: 8px;
height: 8px;
background: #c6cbd0;
border-radius: 50%;
}
/* Right app preview */
.app-preview {
position: absolute;
right: 0;
top: 0;
width: 320px;
height: 2400px;
background: radial-gradient(ellipse at center, #133a64 0%, #0d223b 65%, #091a30 100%);
border-left: 1px solid #26313a;
}
.hamburger {
position: absolute;
left: 30px;
top: 90px;
width: 56px;
height: 56px;
opacity: 0.6;
}
.preview-widget {
position: absolute;
bottom: 220px;
left: 40px;
width: 240px;
height: 260px;
background: rgba(255,255,255,0.06);
border-radius: 20px;
border: 1px solid rgba(255,255,255,0.12);
padding: 20px;
color: #cfe0f3;
box-sizing: border-box;
}
.preview-widget .temp {
font-size: 80px;
font-weight: 700;
margin-top: 20px;
}
.calendar {
position: absolute;
bottom: 60px;
left: 40px;
width: 160px;
height: 120px;
border-radius: 18px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
color: #cfe0f3;
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="side-panel">
<div class="brand">
<div class="logo">
<svg width="80" height="80" viewBox="0 0 80 80">
<circle cx="40" cy="40" r="18" fill="#ff7a2c"></circle>
<g stroke="#ff7a2c" stroke-width="4">
<line x1="40" y1="6" x2="40" y2="18"></line>
<line x1="40" y1="62" x2="40" y2="74"></line>
<line x1="6" y1="40" x2="18" y2="40"></line>
<line x1="62" y1="40" x2="74" y2="40"></line>
<line x1="14" y1="14" x2="22" y2="22"></line>
<line x1="58" y1="58" x2="66" y2="66"></line>
<line x1="58" y1="22" x2="66" y2="14"></line>
<line x1="14" y1="66" x2="22" y2="58"></line>
</g>
</svg>
</div>
<div>
<div class="title">AccuWeather</div>
<div class="subtitle">Superior Accuracy</div>
</div>
</div>
<div class="banner">
<div class="image">[IMG: Aurora Premium Banner]</div>
<div class="text">Upgrade to a Better Weather Experience</div>
<div class="premium-btn">
<span>Get Premium+</span>
<svg class="arrow" viewBox="0 0 24 24">
<path d="M8 5l8 7-8 7" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
<div class="menu-group">
<div class="menu-item">
<div class="icon">
<svg width="40" height="40" viewBox="0 0 24 24">
<rect x="4" y="5" width="16" height="14" rx="2" fill="none" stroke="currentColor" stroke-width="2"></rect>
<line x1="7" y1="9" x2="17" y2="9" stroke="currentColor" stroke-width="2"></line>
<line x1="7" y1="13" x2="17" y2="13" stroke="currentColor" stroke-width="2"></line>
</svg>
</div>
<div>News</div>
</div>
<div class="menu-item">
<div class="icon">
<svg width="40" height="40" viewBox="0 0 24 24">
<polygon points="6,5 19,12 6,19" fill="currentColor"></polygon>
</svg>
</div>
<div>Video</div>
</div>
<div class="menu-item">
<div class="icon">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="3" fill="none" stroke="currentColor" stroke-width="2"></circle>
<path d="M4 12a8 8 0 0 1 1-4l3 1 1-2-3-2a8 8 0 0 1 4-2l1 3h2l1-3a8 8 0 0 1 4 2l-3 2 1 2 3-1a8 8 0 0 1 1 4l-3-1-1 2 3 2a8 8 0 0 1-4 2l-1-3h-2l-1 3a8 8 0 0 1-4-2l3-2-1-2-3 1z" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg>
</div>
<div>Settings</div>
</div>
<div class="menu-item" style="justify-content: space-between; width: 680px;">
<div style="display:flex; align-items:center; gap:28px;">
<div class="icon">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-width="2"></circle>
<text x="12" y="16" text-anchor="middle" font-size="10" fill="currentColor">NEW</text>
</svg>
</div>
<div>What's New</div>
</div>
<span class="new-pill">NEW</span>
</div>
</div>
<div class="divider"></div>
<div class="secondary-item">How We Forecast</div>
<div class="secondary-item">About AccuWeather</div>
<div class="secondary-item">Contact Us</div>
<div class="secondary-item">Help</div>
<div class="secondary-item">Rate our app</div>
<div class="secondary-item">Share Our App</div>
<div class="footer-links">
<span>Terms of Use</span>
<span class="dot"></span>
<span>Privacy Policy</span>
</div>
</div>
<div class="app-preview">
<svg class="hamburger" viewBox="0 0 24 24">
<line x1="3" y1="6" x2="21" y2="6" stroke="#fff" stroke-width="2"></line>
<line x1="3" y1="12" x2="21" y2="12" stroke="#fff" stroke-width="2"></line>
<line x1="3" y1="18" x2="21" y2="18" stroke="#fff" stroke-width="2"></line>
</svg>
<div class="preview-widget">
<div style="font-size:30px; opacity:0.8;">AFTERNOON</div>
<div style="margin-top:20px;">
<svg width="70" height="70" viewBox="0 0 24 24">
<circle cx="8" cy="10" r="5" fill="none" stroke="#cfe0f3" stroke-width="2"></circle>
<path d="M14 14h6v4h-8" fill="none" stroke="#cfe0f3" stroke-width="2"></path>
</svg>
</div>
<div class="temp">66°</div>
<div style="opacity:0.8; font-size:28px;">RealFeel 65°</div>
</div>
<div class="calendar">Today</div>
</div>
</div>
</body>
</html> |