| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>All rooms UI</title> |
| <style> |
| body { margin:0; padding:0; background: transparent; font-family: 'Inter', Arial, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background:#ffffff; |
| } |
| |
| |
| .status-bar { |
| position:absolute; top:0; left:0; width:100%; height:120px; |
| background:#a89290; |
| } |
| .hero { |
| position:absolute; top:120px; left:0; width:100%; height:520px; |
| background:#ffd6dc; |
| border-bottom-left-radius:120px; |
| } |
| .hero-accent { |
| position:absolute; right:-160px; top:260px; |
| width:560px; height:560px; border-radius:50%; |
| background: radial-gradient(circle at 40% 40%, #ff6a6a, #ff6a6a 30%, #ff8a8a 60%, #ffb7b7 100%); |
| opacity:0.75; |
| } |
| .back-btn { |
| position:absolute; top:220px; left:48px; |
| width:110px; height:110px; border-radius:55px; |
| background:#ffffff; box-shadow:0 6px 16px rgba(0,0,0,0.15); |
| display:flex; align-items:center; justify-content:center; |
| } |
| .back-btn svg { width:44px; height:44px; } |
| .currency-pill { |
| position:absolute; top:210px; right:48px; |
| background:#fff; border-radius:48px; padding:18px 28px; |
| box-shadow:0 6px 16px rgba(0,0,0,0.15); |
| display:flex; align-items:center; gap:14px; font-weight:600; font-size:34px; color:#333; |
| } |
| .currency-pill .icon { width:40px; height:40px; } |
| .title { |
| position:absolute; top:320px; left:60px; |
| font-size:72px; font-weight:800; color:#222; |
| } |
| |
| |
| .search-card { |
| position:absolute; top:580px; left:40px; width:1000px; |
| background:#fff; border-radius:36px; box-shadow:0 16px 30px rgba(0,0,0,0.12); |
| } |
| .tabs { display:flex; align-items:center; gap:36px; padding:34px 36px 20px; font-size:40px; } |
| .tab { color:#7b7f89; font-weight:600; } |
| .tab.active { color:#2e6df6; } |
| .tab-underline { |
| height:6px; width:160px; background:#2e6df6; border-radius:3px; margin-left:36px; |
| } |
| .new-badge { |
| position:absolute; top:56px; left:270px; |
| background:#e6423b; color:#fff; font-size:30px; font-weight:700; |
| padding:12px 18px; border-radius:12px; box-shadow:0 4px 10px rgba(0,0,0,0.15); |
| } |
| .divider { height:1px; background:#e5e7eb; margin:0 0 26px; } |
| |
| .pill { background:#eef2fb; border-radius:60px; height:120px; display:flex; align-items:center; padding:0 34px; margin:22px 36px; color:#222; font-size:40px; font-weight:600; } |
| .pill svg { width:52px; height:52px; margin-right:24px; } |
| .pill-row { display:flex; gap:24px; padding:0 36px; } |
| .pill-half { flex:1; background:#eef2fb; border-radius:60px; height:120px; display:flex; align-items:center; padding:0 34px; color:#222; font-size:38px; font-weight:700; } |
| .action-row { display:flex; align-items:center; gap:26px; padding:34px 36px 40px; } |
| .locate-circle { |
| width:120px; height:120px; border-radius:60px; background:#ffffff; border:2px solid #e0e4ef; |
| display:flex; align-items:center; justify-content:center; box-shadow:0 6px 16px rgba(0,0,0,0.08); |
| } |
| .locate-circle svg { width:54px; height:54px; } |
| .search-btn { |
| flex:1; height:120px; border-radius:60px; background:#2e6df6; color:#fff; font-size:44px; font-weight:700; |
| display:flex; align-items:center; justify-content:center; box-shadow:0 10px 18px rgba(46,109,246,0.35); |
| } |
| |
| |
| .section-title { |
| position:absolute; top:1120px; left:60px; font-size:54px; font-weight:800; color:#222; |
| } |
| .coupon-row { |
| position:absolute; top:1220px; left:40px; width:1000px; display:flex; gap:26px; |
| } |
| .coupon-card { |
| flex:1; background:#fff; border:2px solid #dfE4ef; border-radius:30px; box-shadow:0 6px 16px rgba(0,0,0,0.05); |
| display:flex; padding:24px; |
| } |
| .coupon-image { |
| width:210px; height:210px; background:#E0E0E0; border:1px solid #BDBDBD; |
| border-radius:16px; display:flex; align-items:center; justify-content:center; color:#757575; font-size:30px; text-align:center; margin-right:20px; |
| } |
| .coupon-content { display:flex; flex-direction:column; justify-content:space-between; } |
| .coupon-title { font-size:40px; font-weight:800; color:#111; } |
| .coupon-sub { font-size:30px; color:#6b7280; line-height:1.3; margin-top:6px; } |
| .coupon-link { font-size:34px; font-weight:700; color:#2e6df6; margin-top:14px; } |
| |
| |
| .gesture { |
| position:absolute; bottom:42px; left:50%; transform:translateX(-50%); |
| width:300px; height:12px; background:#d1d5db; border-radius:6px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| <div class="status-bar"></div> |
| <div class="hero"> |
| <div class="hero-accent"></div> |
| </div> |
|
|
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M15 18l-6-6 6-6"/> |
| </svg> |
| </div> |
|
|
| <div class="currency-pill"> |
| <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <circle cx="12" cy="12" r="9"></circle> |
| <path d="M8 10h8M8 14h8"></path> |
| </svg> |
| INR |
| </div> |
|
|
| <div class="title">All rooms</div> |
|
|
| <div class="search-card"> |
| <div class="tabs"> |
| <div class="tab active">Overnight</div> |
| <div class="tab">Day Use</div> |
| </div> |
| <div class="tab-underline"></div> |
| <div class="new-badge">New!</div> |
| <div class="divider"></div> |
|
|
| <div class="pill"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <circle cx="11" cy="11" r="8"></circle> |
| <path d="M21 21l-4.3-4.3"></path> |
| </svg> |
| London |
| </div> |
|
|
| <div class="pill-row"> |
| <div class="pill-half"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <rect x="3" y="5" width="18" height="16" rx="2"></rect> |
| <path d="M3 9h18M8 5v4M16 5v4"></path> |
| </svg> |
| Thu, Dec 07 |
| </div> |
| <div class="pill-half"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <rect x="3" y="5" width="18" height="16" rx="2"></rect> |
| <path d="M3 9h18M8 5v4M16 5v4"></path> |
| </svg> |
| Fri, Dec 08 |
| </div> |
| </div> |
|
|
| <div class="pill"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <circle cx="12" cy="7" r="3"></circle> |
| <path d="M5 21c1.5-4 5.5-6 7-6s5.5 2 7 6"></path> |
| </svg> |
| 1 room 2 adults |
| </div> |
|
|
| <div class="action-row"> |
| <div class="locate-circle"> |
| <svg viewBox="0 0 24 24" fill="none" stroke="#2e6df6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M12 3c4.4 0 8 3.6 8 8 0 6-8 10-8 10S4 17 4 11c0-4.4 3.6-8 8-8z"></path> |
| <circle cx="12" cy="11" r="3"></circle> |
| </svg> |
| </div> |
| <div class="search-btn">Search</div> |
| </div> |
| </div> |
|
|
| <div class="section-title">Discount Coupons</div> |
|
|
| <div class="coupon-row"> |
| <div class="coupon-card"> |
| <div class="coupon-image">[IMG: Coupon 5% OFF - Blue]</div> |
| <div class="coupon-content"> |
| <div> |
| <div class="coupon-title">UP TO ₹8,000 …</div> |
| <div class="coupon-sub">* No minimum spend required. | Offer expires in 3 days!</div> |
| </div> |
| <div class="coupon-link">Get coupon</div> |
| </div> |
| </div> |
|
|
| <div class="coupon-card"> |
| <div class="coupon-image">[IMG: Coupon 8% OFF - Green]</div> |
| <div class="coupon-content"> |
| <div> |
| <div class="coupon-title">UP TO 8% …</div> |
| <div class="coupon-sub">Min. spend applies | Limited time offer</div> |
| </div> |
| <div class="coupon-link">Get coupon</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |