| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Choose a location - Mobile UI</title> |
| <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: 'Roboto', Arial, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; |
| position: relative; overflow: hidden; |
| background: #F0F1EC; |
| color: #222; |
| } |
| |
| |
| .status-bar { |
| position: absolute; top: 0; left: 0; |
| width: 100%; height: 120px; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 40px; |
| font-size: 42px; font-weight: 500; |
| color: #222; |
| } |
| .status-icons { display: flex; align-items: center; gap: 28px; } |
| .status-icons svg { width: 48px; height: 48px; } |
| |
| |
| .header { |
| position: absolute; top: 120px; left: 0; |
| width: 100%; height: 180px; |
| background: #E7E8E2; |
| display: flex; align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| } |
| .close-btn { |
| width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; |
| margin-right: 28px; |
| } |
| .header-title { |
| font-size: 56px; font-weight: 700; letter-spacing: 0.5px; |
| } |
| |
| |
| .content { |
| position: absolute; top: 300px; left: 0; |
| width: 100%; height: 1780px; |
| background: #FFFFFF; |
| box-sizing: border-box; |
| } |
| .list { |
| padding-top: 30px; |
| } |
| .list-item { |
| height: 170px; |
| display: flex; align-items: center; |
| padding: 0 48px; |
| gap: 36px; |
| box-sizing: border-box; |
| } |
| .list-item + .list-item { margin-top: 8px; } |
| .item-icon { |
| width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; |
| } |
| .item-label { |
| font-size: 52px; font-weight: 500; color: #222; |
| } |
| |
| |
| .footer { |
| position: absolute; bottom: 0; left: 0; |
| width: 100%; height: 180px; |
| background: #E7E8E2; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 60px; box-sizing: border-box; |
| } |
| .btn { |
| font-size: 46px; font-weight: 700; |
| } |
| .btn-cancel { color: #4C7A2C; } |
| .btn-select { color: #9FA4A2; } |
| |
| |
| .gesture-bar { |
| position: absolute; bottom: 24px; left: 50%; |
| width: 360px; height: 18px; border-radius: 10px; |
| background: #6E6E6E; transform: translateX(-50%); |
| opacity: 0.8; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>6:08</div> |
| <div class="status-icons"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="5" fill="#777"></circle> |
| </svg> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <path d="M5 12c3-3 11-3 14 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <path d="M9 16c2-2 4-2 6 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/> |
| <circle cx="12" cy="18.5" r="1.6" fill="#333"></circle> |
| </svg> |
| |
| <svg viewBox="0 0 26 24"> |
| <rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="#333" stroke-width="2" fill="none"/> |
| <rect x="4" y="8" width="12" height="8" fill="#333"></rect> |
| <rect x="22" y="9" width="2.6" height="6" fill="#333"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="close-btn"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5l14 14M19 5L5 19" stroke="#333" stroke-width="2.6" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="header-title">Choose a location</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="list"> |
| |
| <div class="list-item"> |
| <div class="item-icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <rect x="1.5" y="1.5" width="21" height="21" rx="3" ry="3" fill="none" stroke="#5A5A5A" stroke-width="1.8"></rect> |
| <path d="M12 6l5 8H7l5-8z" fill="none" stroke="#5A5A5A" stroke-width="1.6" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| <div class="item-label">My Drive</div> |
| </div> |
|
|
| |
| <div class="list-item"> |
| <div class="item-icon"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="3" y="5" width="18" height="12" rx="2" ry="2" fill="none" stroke="#5A5A5A" stroke-width="2"></rect> |
| <rect x="8" y="18" width="8" height="2" fill="#5A5A5A"></rect> |
| </svg> |
| </div> |
| <div class="item-label">Computers</div> |
| </div> |
|
|
| |
| <div class="list-item"> |
| <div class="item-icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="9" r="3.5" fill="none" stroke="#5A5A5A" stroke-width="2"></circle> |
| <path d="M4 20c2.5-4 13.5-4 16 0" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="item-label">Shared with me</div> |
| </div> |
|
|
| |
| <div class="list-item"> |
| <div class="item-icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3l3 6 6 .9-4.5 4.3 1.1 6.5L12 18l-5.6 2.7 1.1-6.5L3 9.9 9 9l3-6z" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| <div class="item-label">Starred</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="footer"> |
| <div class="btn btn-cancel">Cancel</div> |
| <div class="btn btn-select">Select</div> |
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |