File size: 4,269 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Settings Screen Mock</title>
<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: #121212;
color: #FFFFFF;
}
/* Status bar */
.status-bar {
height: 96px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #EDEDED;
font-size: 34px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 22px;
}
.status-icon {
width: 32px;
height: 32px;
border-radius: 50%;
border: 2px solid #BDBDBD;
opacity: 0.8;
}
.battery {
display: inline-flex;
align-items: center;
gap: 10px;
color: #EDEDED;
font-size: 30px;
}
.battery-shape {
width: 48px;
height: 22px;
border: 2px solid #BDBDBD;
border-radius: 4px;
position: relative;
}
.battery-shape::after {
content: "";
position: absolute;
right: -8px;
top: 6px;
width: 6px;
height: 10px;
background: #BDBDBD;
border-radius: 2px;
}
/* Toolbar */
.toolbar {
height: 160px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
}
.toolbar-left {
display: flex;
align-items: center;
gap: 26px;
}
.title {
font-size: 64px;
font-weight: 500;
color: #FAFAFA;
}
.icon-btn {
width: 56px;
height: 56px;
display: inline-flex;
align-items: center;
justify-content: center;
color: #E0E0E0;
}
.icon {
width: 56px;
height: 56px;
}
/* Content list */
.content {
padding: 24px 36px 0 36px;
}
.list {
margin-top: 8px;
}
.list-item {
padding: 36px 0;
border-bottom: 1px solid transparent; /* no visible divider; keeps spacing consistent */
color: #E0E0E0;
font-size: 44px;
line-height: 1.3;
}
.list-item + .list-item {
margin-top: 6px;
}
/* Bottom gesture bar */
.gesture-bar {
position: absolute;
left: 0;
right: 0;
bottom: 18px;
height: 110px;
display: flex;
align-items: flex-start;
justify-content: center;
}
.gesture-pill {
width: 240px;
height: 14px;
border-radius: 8px;
background: #E0E0E0;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">11:26</div>
<div class="status-right">
<div class="status-icon" title="Status icon"></div>
<div class="status-icon" title="Status icon"></div>
<div class="status-icon" title="Status icon"></div>
<div class="battery">
<div class="battery-shape"></div>
100%
</div>
</div>
</div>
<!-- Toolbar -->
<div class="toolbar">
<div class="toolbar-left">
<div class="icon-btn" aria-label="Back">
<svg class="icon" viewBox="0 0 48 48">
<path d="M28 10 L14 24 L28 38" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M14 24 L40 24" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"></path>
</svg>
</div>
<div class="title">Settings</div>
</div>
<div class="icon-btn" aria-label="More">
<svg class="icon" viewBox="0 0 48 48">
<circle cx="24" cy="10" r="4" fill="currentColor"></circle>
<circle cx="24" cy="24" r="4" fill="currentColor"></circle>
<circle cx="24" cy="38" r="4" fill="currentColor"></circle>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="list">
<div class="list-item">General settings</div>
<div class="list-item">dbwscratch.test.id10@gmail.com</div>
<div class="list-item">kariniversen641@gmail.com</div>
<div class="list-item">Add account</div>
</div>
</div>
<!-- Bottom gesture bar -->
<div class="gesture-bar">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html> |