File size: 4,307 Bytes
c32f9a6 | 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 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UI Render</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #1a1f2b;
}
/* Status bar */
.statusbar {
height: 96px;
padding: 0 44px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 36px;
color: #2c2f36;
}
.status-icons {
display: flex;
gap: 24px;
align-items: center;
}
.status-icons svg { display: block; }
/* Header with pill */
.header {
position: relative;
height: 220px;
}
.back-btn {
position: absolute;
left: 32px;
top: 84px;
width: 56px;
height: 56px;
}
.fav-btn {
position: absolute;
right: 32px;
top: 90px;
width: 56px;
height: 56px;
}
.pill {
width: 820px;
height: 140px;
margin: 34px auto 0;
background: #EFF1F5;
border-radius: 70px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.pill .title {
font-weight: 600;
font-size: 46px;
color: #2b2f39;
margin-bottom: 8px;
}
.pill .subtitle {
font-size: 30px;
color: #8c94a1;
}
.divider {
height: 2px;
background: #E6E9EF;
width: 100%;
}
/* Content area */
.content {
text-align: center;
padding-top: 220px;
}
.img-placeholder {
width: 580px;
height: 420px;
margin: 0 auto 60px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
border-radius: 12px;
font-size: 28px;
}
.loading-text {
font-size: 40px;
color: #A3A9B4;
letter-spacing: 0.2px;
}
/* Bottom gesture bar */
.gesture {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 120px;
background: #000000;
}
.gesture .handle {
position: absolute;
left: 50%;
top: 32px;
width: 240px;
height: 12px;
margin-left: -120px;
background: #D8D8D8;
border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="statusbar">
<div class="time">10:52</div>
<div class="status-icons">
<!-- Simple network/wifi icon -->
<svg width="40" height="40" viewBox="0 0 40 40">
<path d="M6 16c8-8 20-8 28 0" stroke="#57606f" stroke-width="3" fill="none" stroke-linecap="round"/>
<path d="M10 20c6-6 14-6 20 0" stroke="#57606f" stroke-width="3" fill="none" stroke-linecap="round"/>
<circle cx="20" cy="26" r="3" fill="#57606f"/>
</svg>
<!-- Battery icon -->
<svg width="40" height="40" viewBox="0 0 40 40">
<rect x="6" y="12" width="24" height="16" rx="3" stroke="#57606f" stroke-width="3" fill="none"/>
<rect x="8" y="14" width="18" height="12" rx="2" fill="#57606f"/>
<rect x="31" y="16" width="4" height="8" rx="1" fill="#57606f"/>
</svg>
</div>
</div>
<!-- Header with pill -->
<div class="header">
<!-- Back chevron -->
<svg class="back-btn" viewBox="0 0 48 48">
<path d="M30 12 L18 24 L30 36" stroke="#10131a" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<!-- Favorite heart outline -->
<svg class="fav-btn" viewBox="0 0 48 48">
<path d="M24 40c-10-7-16-12-16-20 0-6 4-10 10-10 4 0 7 2 6 4 1-2 4-4 8-4 6 0 10 4 10 10 0 8-6 13-18 20z" stroke="#10131a" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="pill">
<div class="title">Berlin</div>
<div class="subtitle">23 Dec - 25 Dec • 1 room • 2 guests</div>
</div>
</div>
<div class="divider"></div>
<!-- Main content -->
<div class="content">
<div class="img-placeholder">[IMG: Hotel illustration]</div>
<div class="loading-text">Fetching Hotel Results...</div>
</div>
<!-- Bottom gesture bar -->
<div class="gesture">
<div class="handle"></div>
</div>
</div>
</body>
</html> |