File size: 5,938 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 183 184 185 186 187 188 189 | <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 */
.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 */
.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 list */
.content {
position: absolute; top: 300px; left: 0;
width: 100%; height: 1780px; /* leaves room for footer */
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 */
.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 */
.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">
<!-- Status Bar -->
<div class="status-bar">
<div>6:08</div>
<div class="status-icons">
<!-- simple "sun" icon -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="5" fill="#777"></circle>
</svg>
<!-- WiFi icon -->
<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>
<!-- Battery icon -->
<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>
<!-- Header -->
<div class="header">
<div class="close-btn">
<!-- Close (X) icon -->
<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>
<!-- Content -->
<div class="content">
<div class="list">
<!-- My Drive -->
<div class="list-item">
<div class="item-icon">
<!-- Google Drive-like triangle in a rounded square -->
<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>
<!-- Computers -->
<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>
<!-- Shared with me -->
<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>
<!-- Starred -->
<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>
<!-- Footer -->
<div class="footer">
<div class="btn btn-cancel">Cancel</div>
<div class="btn btn-select">Select</div>
</div>
<!-- Gesture Bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html> |