File size: 3,924 Bytes
0e1717f | 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 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Recipe Steps Screen</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #2c2d31; /* dark app surface */
}
/* Top status area */
.status-bg {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 220px;
background: #b31c4c; /* deep pink/red */
}
.status-content {
position: absolute;
top: 60px;
left: 48px;
right: 48px;
height: 100px;
color: #ffffff;
font-size: 42px;
display: flex;
align-items: center;
justify-content: space-between;
}
.status-right {
display: flex;
align-items: center;
gap: 24px;
font-size: 42px;
}
.status-icon {
width: 52px;
height: 52px;
fill: none;
stroke: #fff;
stroke-width: 4;
}
/* Main rounded surface below status bar */
.main-surface {
position: absolute;
top: 140px;
left: 0;
width: 1080px;
height: 2260px;
background: #2c2d31;
border-top-left-radius: 40px;
border-top-right-radius: 40px;
}
/* Step header */
.step-header {
position: relative;
padding: 56px 48px 24px 48px;
color: #e8e8ea;
}
.step-row {
display: flex;
align-items: center;
justify-content: space-between;
}
.step-row .left {
font-weight: 700;
font-size: 48px;
color: #f1f1f3;
}
.step-row .right {
font-weight: 700;
font-size: 48px;
color: #f39aa9; /* soft pink */
}
.progress-track {
width: 100%;
height: 10px;
background: #1f2024;
border-radius: 5px;
margin-top: 24px;
overflow: hidden;
}
.progress-fill {
height: 100%;
width: 96px; /* 1 of 10 */
background: #b31c4c;
}
/* Instruction text */
.instructions {
padding: 80px 60px 0 60px;
color: #e5e5e7;
font-size: 64px;
line-height: 1.35;
letter-spacing: -0.2px;
}
/* Bottom system navigation area */
.system-bar {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 160px;
background: #000;
}
.gesture-pill {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 320px;
height: 16px;
background: #e5e5e5;
border-radius: 10px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top status bar -->
<div class="status-bg"></div>
<div class="status-content">
<div class="status-left">7:51</div>
<div class="status-right">
<!-- Wi-Fi icon -->
<svg class="status-icon" viewBox="0 0 24 24">
<path d="M2 8c10-8 20 0 20 0" />
<path d="M5 12c7-6 14 0 14 0" />
<path d="M9 16c4-4 8 0 8 0" />
<circle cx="12" cy="19" r="1.5" fill="#fff" stroke="none"/>
</svg>
<!-- Battery icon -->
<svg class="status-icon" viewBox="0 0 24 24">
<rect x="2" y="6" width="18" height="12" rx="2" />
<rect x="20" y="9" width="2" height="6" rx="1" />
<rect x="4" y="8" width="12" height="8" fill="#fff" stroke="none"/>
</svg>
<div>100%</div>
</div>
</div>
<!-- Main surface -->
<div class="main-surface">
<div class="step-header">
<div class="step-row">
<div class="left">1 of 10</div>
<div class="right">Ingredients</div>
</div>
<div class="progress-track">
<div class="progress-fill"></div>
</div>
</div>
<div class="instructions">
Preheat the oven to 350ºF (180ºC). Grease a 9 x 13-inch baking dish with nonstick spray.
</div>
</div>
<!-- Bottom system navigation -->
<div class="system-bar">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html> |