| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>eBay Mobile Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: #000000; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| color: #ffffff; |
| } |
| |
| |
| .status-bar { |
| height: 96px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 40px; |
| color: #e6e6e6; |
| font-size: 34px; |
| opacity: 0.9; |
| } |
| .status-icons { display: flex; align-items: center; gap: 24px; } |
| .dot { width: 10px; height: 10px; background: #e6e6e6; border-radius: 50%; display: inline-block; } |
| |
| |
| .brand { |
| margin: 30px 40px 24px; |
| font-size: 120px; |
| font-weight: 700; |
| letter-spacing: -2px; |
| } |
| .brand .e { color: #e53935; } |
| .brand .b { color: #1e88e5; } |
| .brand .a { color: #fdd835; } |
| .brand .y { color: #43a047; } |
| |
| .search-wrap { |
| margin: 20px 40px 26px; |
| position: relative; |
| } |
| .search-bar { |
| height: 120px; |
| background: #1b1b1b; |
| border: 1px solid #2b2b2b; |
| border-radius: 60px; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| gap: 30px; |
| } |
| .search-bar .placeholder { |
| color: #cfcfcf; |
| font-size: 40px; |
| flex: 1; |
| } |
| .search-icon, .mic-icon, .camera-icon { |
| width: 56px; |
| height: 56px; |
| fill: none; |
| stroke: #e6e6e6; |
| stroke-width: 5; |
| } |
| |
| |
| .cart-fab { |
| position: absolute; |
| right: 40px; |
| top: 450px; |
| width: 96px; |
| height: 96px; |
| background: #2b2b2b; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| box-shadow: 0 6px 16px rgba(0,0,0,0.5); |
| } |
| .cart-icon { width: 50px; height: 50px; fill: none; stroke: #ffffff; stroke-width: 5; } |
| |
| |
| .quick-actions { |
| margin: 16px 40px 40px; |
| display: flex; |
| gap: 24px; |
| flex-wrap: wrap; |
| } |
| .pill { |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| padding: 22px 34px; |
| height: 92px; |
| border-radius: 46px; |
| background: #101010; |
| border: 1px solid #3a3a3a; |
| color: #ffffff; |
| font-size: 36px; |
| white-space: nowrap; |
| } |
| .pill svg { width: 40px; height: 40px; stroke: #e6e6e6; stroke-width: 5; fill: none; } |
| |
| |
| .signin { |
| text-align: center; |
| margin: 40px 60px 20px; |
| color: #e9e9e9; |
| font-size: 44px; |
| line-height: 1.4; |
| } |
| .cta-row { |
| display: flex; |
| justify-content: center; |
| gap: 40px; |
| margin: 30px 0 60px; |
| } |
| .cta-outline { |
| width: 420px; |
| height: 110px; |
| border-radius: 55px; |
| border: 2px solid #5b82ff; |
| color: #7da1ff; |
| background: transparent; |
| font-size: 44px; |
| font-weight: 600; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| |
| .help-panel { |
| background: #e9d97a; |
| color: #4b2a22; |
| padding: 56px 40px; |
| } |
| .help-panel h2 { |
| margin: 0 0 20px; |
| font-size: 64px; |
| line-height: 1.15; |
| font-weight: 800; |
| letter-spacing: -0.5px; |
| } |
| .help-panel p { |
| margin: 0 0 36px; |
| font-size: 40px; |
| color: #5a352b; |
| } |
| .read-btn { |
| background: #4b2a22; |
| color: #f9eede; |
| border: none; |
| border-radius: 55px; |
| height: 110px; |
| padding: 0 46px; |
| font-size: 42px; |
| font-weight: 600; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| |
| .section { |
| padding: 50px 40px 0; |
| } |
| .section h3 { |
| margin: 0; |
| font-size: 56px; |
| color: #ffffff; |
| font-weight: 800; |
| } |
| .destinations { |
| margin-top: 220px; |
| display: flex; |
| justify-content: space-around; |
| padding: 0 40px 0; |
| } |
| .destinations .item { |
| color: #ffffff; |
| font-size: 38px; |
| } |
| |
| |
| .bottom-nav { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 1080px; |
| height: 210px; |
| background: #1f1f1f; |
| border-top: 1px solid #2c2c2c; |
| display: flex; |
| align-items: center; |
| justify-content: space-around; |
| padding-bottom: 20px; |
| } |
| .nav-item { |
| width: 180px; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| color: #cfcfcf; |
| gap: 12px; |
| font-size: 32px; |
| } |
| .nav-item .icon-wrap { |
| width: 92px; |
| height: 92px; |
| border-radius: 30px; |
| background: transparent; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .nav-item svg { width: 50px; height: 50px; stroke: #cfcfcf; stroke-width: 5; fill: none; } |
| |
| .nav-item.active { color: #7da1ff; } |
| .nav-item.active .icon-wrap { |
| background: #283758; |
| } |
| .nav-item.active svg { stroke: #7da1ff; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:46</div> |
| <div class="status-icons"> |
| <span>🐶</span> |
| <span>📱</span> |
| <span>✉️</span> |
| <span class="dot"></span> |
| <svg width="38" height="22" viewBox="0 0 38 22"> |
| <rect x="1" y="1" width="32" height="20" rx="4" stroke="#e6e6e6" fill="none" stroke-width="3"></rect> |
| <rect x="34" y="6" width="3" height="10" rx="1.5" fill="#e6e6e6"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="brand"> |
| <span class="e">e</span><span class="b">b</span><span class="a">a</span><span class="y">y</span> |
| </div> |
|
|
| |
| <div class="search-wrap"> |
| <div class="search-bar"> |
| <svg class="search-icon" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7"></circle> |
| <line x1="16" y1="16" x2="22" y2="22"></line> |
| </svg> |
| <div class="placeholder">Search on eBay</div> |
| <svg class="mic-icon" viewBox="0 0 24 24"> |
| <rect x="9" y="4" width="6" height="10" rx="3"></rect> |
| <line x1="12" y1="14" x2="12" y2="20"></line> |
| <path d="M6,12 C6,16 18,16 18,12" /> |
| </svg> |
| <svg class="camera-icon" viewBox="0 0 24 24"> |
| <rect x="3" y="7" width="18" height="12" rx="2"></rect> |
| <circle cx="12" cy="13" r="4"></circle> |
| <path d="M8 7 L10 4 H14 L16 7" /> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="cart-fab"> |
| <svg class="cart-icon" viewBox="0 0 24 24"> |
| <circle cx="9" cy="20" r="2"></circle> |
| <circle cx="17" cy="20" r="2"></circle> |
| <path d="M3 4 H6 L7.5 12 H18 L20 6 H8"></path> |
| </svg> |
| </div> |
|
|
| |
| <div class="quick-actions"> |
| <div class="pill"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 6 H8 V18 H3 Z M10 6 H21 V12 H10 Z"></path> |
| </svg> |
| <span>Selling</span> |
| </div> |
| <div class="pill"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3 L14 10 H21 L15.5 14 L17.5 21 L12 16 L6.5 21 L8.5 14 L3 10 H10 Z"></path> |
| </svg> |
| <span>Deals</span> |
| </div> |
| <div class="pill"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="3" y="3" width="7" height="7"></rect> |
| <rect x="14" y="3" width="7" height="7"></rect> |
| <rect x="3" y="14" width="7" height="7"></rect> |
| <rect x="14" y="14" width="7" height="7"></rect> |
| </svg> |
| <span>Categories</span> |
| </div> |
| <div class="pill"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21 C5 16 3 12 5 9 C7 6 10 7 12 9 C14 7 17 6 19 9 C21 12 19 16 12 21 Z"></path> |
| </svg> |
| <span>Saved</span> |
| </div> |
| </div> |
|
|
| |
| <div class="signin"> |
| Sign in so we can personalize your eBay<br/>experience |
| </div> |
| <div class="cta-row"> |
| <div class="cta-outline">Register</div> |
| <div class="cta-outline">Sign in</div> |
| </div> |
|
|
| |
| <div class="help-panel"> |
| <h2>Have you been selling on eBay already?</h2> |
| <p>To pay your fees or ask questions</p> |
| <button class="read-btn">Read more</button> |
| </div> |
|
|
| |
| <div class="section"> |
| <h3>Popular Destinations</h3> |
| <div class="destinations"> |
| <div class="item">Jewelry</div> |
| <div class="item">Beauty</div> |
| <div class="item">Computers &<br/>Tablets</div> |
| </div> |
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item active"> |
| <div class="icon-wrap"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 11 L12 3 L21 11"></path> |
| <rect x="6" y="11" width="12" height="9"></rect> |
| </svg> |
| </div> |
| <div>Home</div> |
| </div> |
| <div class="nav-item"> |
| <div class="icon-wrap"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="8" r="4"></circle> |
| <path d="M4 21 C4 15 20 15 20 21"></path> |
| </svg> |
| </div> |
| <div>My eBay</div> |
| </div> |
| <div class="nav-item"> |
| <div class="icon-wrap"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7"></circle> |
| <line x1="16" y1="16" x2="22" y2="22"></line> |
| </svg> |
| </div> |
| <div>Search</div> |
| </div> |
| <div class="nav-item"> |
| <div class="icon-wrap"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3 V5"></path> |
| <path d="M5 8 H19 V14 H5 Z"></path> |
| <path d="M8 14 V21"></path> |
| <path d="M16 14 V21"></path> |
| </svg> |
| </div> |
| <div>Inbox</div> |
| </div> |
| <div class="nav-item"> |
| <div class="icon-wrap"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 4 H18 L20 10 L12 20 L4 10 Z"></path> |
| <circle cx="12" cy="12" r="3"></circle> |
| </svg> |
| </div> |
| <div>Selling</div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |