File size: 5,863 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>UI Render</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: linear-gradient(180deg, #4E86FF 0%, #3E6CF3 40%, #3A54E6 70%, #3A34D2 100%);
font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
color: #fff;
}
/* Status bar */
.status-bar {
position: absolute;
top: 18px;
left: 0;
width: 100%;
height: 80px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
opacity: 0.95;
}
.status-left { font-weight: 600; font-size: 40px; letter-spacing: 0.5px; }
.status-right {
display: flex;
align-items: center;
gap: 28px;
font-size: 34px;
}
.dot-sep {
width: 12px; height: 12px; background: rgba(255,255,255,0.6); border-radius: 50%;
}
.progress {
position: absolute;
top: 140px;
left: 0; right: 0;
display: flex;
justify-content: center;
gap: 24px;
}
.progress .p-dot {
width: 22px; height: 22px;
border-radius: 50%;
background: rgba(255,255,255,0.35);
}
.title {
position: absolute;
top: 300px;
left: 60px;
right: 60px;
text-align: center;
font-weight: 800;
font-size: 96px;
line-height: 1.15;
letter-spacing: -0.5px;
text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
/* Illustration hint (hair/shape behind) */
.hair-shape {
position: absolute;
bottom: 520px;
left: 140px;
width: 800px;
height: 480px;
background: radial-gradient(120% 100% at 50% 20%, #FFB439 0%, #F79A2E 70%, #E07C2A 100%);
border-radius: 240px 240px 120px 120px;
box-shadow: 0 30px 80px rgba(0,0,0,0.25);
transform: rotate(-2deg);
opacity: 0.95;
}
/* Bubbles */
.bubble {
position: absolute;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
color: #fff;
text-transform: none;
box-shadow: 0 12px 28px rgba(0,0,0,0.18);
background: transparent;
}
.bubble span { transform: translateY(2px); }
.b-yellow { border: 16px solid #F4D64F; }
.b-red { border: 16px solid #FF4F5A; }
.b-orange { border: 16px solid #FF9C3D; }
.b-green { border: 16px solid #43D17B; }
.b-teal { border: 16px solid #59D6E7; }
.b-lilac { border: 16px solid #C8A6D6; }
/* Button */
.cta {
position: absolute;
bottom: 160px;
left: 60px;
width: 960px;
height: 160px;
border-radius: 90px;
background: linear-gradient(90deg, #FF4FC3 0%, #C343F7 50%, #7D44FF 100%);
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 56px;
letter-spacing: 0.5px;
color: #fff;
box-shadow: 0 24px 60px rgba(90, 27, 190, 0.45);
}
.home-indicator {
position: absolute;
bottom: 62px;
left: 50%;
width: 320px;
height: 16px;
border-radius: 8px;
background: rgba(255,255,255,0.85);
transform: translateX(-50%);
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">6:42</div>
<div class="status-right">
<!-- Simple icons -->
<svg width="44" height="44" viewBox="0 0 24 24" fill="none">
<path d="M2 9c4-4 16-4 20 0" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M5 12c3-3 11-3 14 0" stroke="white" stroke-width="2" stroke-linecap="round"/>
<path d="M8 15c2-2 6-2 8 0" stroke="white" stroke-width="2" stroke-linecap="round"/>
</svg>
<div class="dot-sep"></div>
<svg width="44" height="44" viewBox="0 0 24 24" fill="none">
<path d="M2 7h16c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2H2V7z" stroke="white" stroke-width="2" stroke-linejoin="round"/>
<rect x="3" y="9" width="14" height="6" fill="white"/>
</svg>
<span style="font-weight:700;">100%</span>
</div>
</div>
<!-- Progress dots -->
<div class="progress">
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
<div class="p-dot"></div>
</div>
<!-- Title -->
<div class="title">Cannot memorize words?</div>
<!-- Decorative hair/shape -->
<div class="hair-shape"></div>
<!-- Word bubbles -->
<div class="bubble b-yellow" style="width:190px;height:190px;left:70px;top:990px;">
<span style="font-size:64px;">cão</span>
</div>
<div class="bubble b-yellow" style="width:260px;height:260px;left:40px;top:1140px;">
<span style="font-size:86px;">gato</span>
</div>
<div class="bubble b-red" style="width:240px;height:240px;left:320px;top:1060px;">
<span style="font-size:80px;">suco</span>
</div>
<div class="bubble b-lilac" style="width:200px;height:200px;left:500px;top:1260px;">
<span style="font-size:60px;">carro</span>
</div>
<div class="bubble b-teal" style="width:260px;height:260px;left:640px;top:1200px;">
<span style="font-size:100px;">dia</span>
</div>
<div class="bubble b-orange" style="width:280px;height:280px;right:120px;top:980px;">
<span style="font-size:104px;">chá</span>
</div>
<div class="bubble b-green" style="width:250px;height:250px;right:40px;top:1130px;">
<span style="font-size:96px;">café</span>
</div>
<div class="bubble b-red" style="width:190px;height:190px;right:180px;top:1270px;">
<span style="font-size:84px;">Oi.</span>
</div>
<!-- Continue button -->
<div class="cta">Continue</div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html> |