File size: 4,700 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 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Weather Depth UI</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
color: #FFFFFF;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: linear-gradient(180deg, #1f3f4b 0%, #163742 100%);
border-radius: 24px;
box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
/* Status bar */
.status-bar {
height: 96px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: rgba(255,255,255,0.9);
font-weight: 600;
font-size: 30px;
letter-spacing: 0.3px;
}
.status-right {
display: flex;
align-items: center;
gap: 22px;
}
.status-dot {
width: 8px;
height: 8px;
background: rgba(255,255,255,0.7);
border-radius: 50%;
margin: 0 4px;
}
/* Title */
.title {
margin: 60px 40px 40px;
text-align: center;
font-size: 54px;
line-height: 66px;
font-weight: 800;
color: #F5F9FB;
}
/* Cards */
.cards {
padding: 0 40px;
}
.card {
background: rgba(54, 78, 90, 0.85);
border-radius: 28px;
padding: 34px 36px;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 36px;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.card-text {
max-width: 600px;
}
.card-title {
font-size: 38px;
font-weight: 800;
margin-bottom: 16px;
}
.card-title.general,
.card-title.intermediate {
color: #1fd0a2;
}
.card-title.advanced {
color: #f5a623;
}
.card-desc {
font-size: 30px;
line-height: 40px;
color: rgba(220,235,240,0.9);
}
.card-img {
width: 420px;
height: 160px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 12px;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
font-size: 26px;
text-align: center;
}
/* Confirm button */
.confirm-btn {
position: absolute;
left: 40px;
right: 40px;
bottom: 190px;
height: 120px;
background: rgba(64, 88, 100, 0.7);
border-radius: 28px;
display: flex;
align-items: center;
justify-content: center;
color: #2C3F48;
font-size: 40px;
font-weight: 800;
}
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 10px;
background: rgba(255,255,255,0.9);
border-radius: 6px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="status-bar">
<div class="status-left">10:06</div>
<div class="status-right">
<!-- WiFi Icon -->
<svg width="40" height="26" viewBox="0 0 36 24" xmlns="http://www.w3.org/2000/svg">
<path d="M2 6c8-7 24-7 32 0l-2.3 2.3c-6.7-5.7-20.7-5.7-27.4 0L2 6zm6 6c5.4-4.2 14.6-4.2 20 0l-2.2 2.2c-4-3.1-11.6-3.1-15.6 0L8 12zm8 6a4 4 0 0 1 4 4h-8a4 4 0 0 1 4-4z" fill="#fff" opacity="0.85"/>
</svg>
<!-- Battery Icon -->
<svg width="40" height="26" viewBox="0 0 36 24" xmlns="http://www.w3.org/2000/svg">
<rect x="3" y="5" width="26" height="14" rx="3" ry="3" stroke="#fff" stroke-width="2" fill="none"/>
<rect x="31" y="9" width="4" height="6" fill="#fff"/>
<rect x="6" y="9" width="17" height="6" fill="#fff" opacity="0.8"/>
</svg>
</div>
</div>
<h1 class="title">How deep do you go when you check the weather?</h1>
<div class="cards">
<div class="card">
<div class="card-text">
<div class="card-title general">General</div>
<div class="card-desc">I quickly check the essential parameters</div>
</div>
<div class="card-img">[IMG: Wavy graph - basic]</div>
</div>
<div class="card">
<div class="card-text">
<div class="card-title intermediate">Intermediate</div>
<div class="card-desc">I review forecasts from several models</div>
</div>
<div class="card-img">[IMG: Wavy graph - multiple models]</div>
</div>
<div class="card">
<div class="card-text">
<div class="card-title advanced">Advanced</div>
<div class="card-desc">Compare multiple weather sources and hyperlocal forecasts</div>
</div>
<div class="card-img">[IMG: Wavy graph - detailed comparisons]</div>
</div>
</div>
<div class="confirm-btn">Confirm</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |