File size: 5,536 Bytes
0e1717f | 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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Settings UI</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #EDEDED;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #121212;
}
/* Top status bar */
.status-bar {
height: 90px;
padding: 0 32px;
display: flex;
align-items: center;
justify-content: space-between;
color: #EDEDED;
font-weight: 600;
font-size: 36px;
}
.status-right {
display: flex;
align-items: center;
gap: 28px;
}
.icon {
display: inline-flex;
align-items: center;
justify-content: center;
}
/* App bar */
.app-bar {
height: 120px;
padding: 0 24px;
display: flex;
align-items: center;
gap: 24px;
}
.title {
font-size: 44px;
font-weight: 600;
color: #EDEDED;
letter-spacing: 0.2px;
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.menu-button {
width: 72px;
height: 72px;
display: flex;
align-items: center;
justify-content: center;
}
/* Content */
.content {
padding: 12px 24px 140px 24px;
}
.section-title {
color: #8BC34A;
font-size: 34px;
font-weight: 700;
margin: 28px 0 18px 0;
}
.setting-item {
padding: 24px 0;
border-top: 1px solid rgba(255,255,255,0.06);
}
.setting-item:first-child {
border-top: none;
}
.setting-title {
font-size: 38px;
font-weight: 600;
color: #FAFAFA;
margin-bottom: 8px;
}
.setting-sub {
font-size: 30px;
color: #BDBDBD;
}
.divider {
height: 1px;
background: rgba(255,255,255,0.06);
margin: 10px -24px 10px -24px;
}
/* Checkbox */
.setting-row {
display: flex;
align-items: center;
justify-content: space-between;
}
.checkbox {
width: 52px;
height: 52px;
border: 3px solid #BDBDBD;
border-radius: 8px;
background: transparent;
}
/* Gesture bar */
.gesture-bar {
position: absolute;
bottom: 34px;
left: 50%;
transform: translateX(-50%);
width: 320px;
height: 16px;
background: #EDEDED;
border-radius: 16px;
opacity: 0.85;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>11:27</div>
<div class="status-right">
<!-- Do not disturb icon -->
<svg class="icon" width="38" height="38" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="none" stroke="#EDEDED" stroke-width="2"/>
<rect x="6" y="11" width="12" height="2" fill="#EDEDED"/>
</svg>
<!-- Battery icon -->
<svg class="icon" width="48" height="48" viewBox="0 0 32 32">
<rect x="2" y="6" width="24" height="20" rx="4" ry="4" fill="none" stroke="#EDEDED" stroke-width="2"/>
<rect x="26" y="12" width="4" height="8" fill="#EDEDED"/>
<rect x="4" y="8" width="18" height="16" fill="#EDEDED"/>
</svg>
<div style="font-size: 30px; color:#EDEDED;">100%</div>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<!-- Back arrow -->
<svg class="icon" width="64" height="64" viewBox="0 0 24 24">
<path d="M15 6l-6 6 6 6" fill="none" stroke="#EDEDED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="title">kariniversen641@gmail.com</div>
<!-- Kebab menu -->
<div class="menu-button">
<svg width="32" height="32" viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2.2" fill="#EDEDED"/>
<circle cx="12" cy="12" r="2.2" fill="#EDEDED"/>
<circle cx="12" cy="19" r="2.2" fill="#EDEDED"/>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="section-title">Account</div>
<div class="setting-item">
<div class="setting-title">Manage your Google Account</div>
</div>
<div class="section-title">Inbox</div>
<div class="setting-item">
<div class="setting-title">Inbox type</div>
<div class="setting-sub">Default Inbox</div>
</div>
<div class="divider"></div>
<div class="setting-item">
<div class="setting-title">Inbox categories</div>
<div class="setting-sub">Primary, Promotions, Social</div>
</div>
<div class="section-title">Notifications</div>
<div class="setting-item">
<div class="setting-title">Notifications</div>
<div class="setting-sub">All</div>
</div>
<div class="setting-item">
<div class="setting-title">Inbox notifications</div>
<div class="setting-sub">Notify once</div>
</div>
<div class="setting-item">
<div class="setting-title">Manage labels</div>
</div>
<div class="setting-item">
<div class="setting-title">Notification sounds</div>
</div>
<div class="setting-item">
<div class="setting-title">Manage notifications</div>
</div>
<div class="section-title">General</div>
<div class="setting-item setting-row">
<div>
<div class="setting-title">Chat</div>
<div class="setting-sub">Show the chat and spaces tabs</div>
</div>
<div class="checkbox"></div>
</div>
</div>
<!-- Gesture Bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html> |