File size: 5,932 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 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 237 238 239 240 241 242 243 244 245 246 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>Manage access - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #1b120a; /* deep brown/black */
color: #EFE6DD;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
color: #EEDFCC;
font-weight: 600;
letter-spacing: 1px;
font-size: 44px;
opacity: 0.95;
}
.status-icons {
display: flex;
gap: 26px;
align-items: center;
}
.status-icons svg { fill: #EEDFCC; }
/* Header */
.app-bar {
padding: 10px 40px 20px 40px;
display: flex;
align-items: center;
gap: 28px;
}
.app-title {
font-size: 80px;
font-weight: 600;
flex: 1;
color: #F4ECE2;
}
.app-actions {
display: flex;
gap: 30px;
}
.app-actions svg, .app-back svg { fill: #EEDFCC; }
/* Content sections */
.content {
padding: 30px 40px 0 40px;
}
.section-title {
font-size: 40px;
color: #D9C9B9;
margin: 40px 0 34px 0;
}
.person {
display: flex;
align-items: flex-start;
gap: 30px;
padding: 24px 0;
}
.avatar {
width: 110px;
height: 110px;
border-radius: 55px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-weight: 700;
font-size: 52px;
flex-shrink: 0;
}
.avatar.pink { background: #C2185B; }
.avatar.teal {
background: radial-gradient(circle at 50% 38%, #76D7C4 0 35%, #2E7D72 36% 100%);
}
.person .info {
flex: 1;
padding-top: 4px;
}
.name {
font-size: 46px;
color: #F3E7DA;
margin-bottom: 6px;
}
.meta {
font-size: 34px;
color: #BFAF9F;
}
.role {
font-size: 34px;
color: #FFA94D;
margin-top: 8px;
}
.divider {
height: 1px;
background: #3A2B1F;
margin: 36px -40px 20px -40px;
}
/* General access row */
.access-row {
display: flex;
align-items: center;
gap: 28px;
padding: 26px 0 12px 0;
}
.lock-circle {
width: 110px;
height: 110px;
border-radius: 55px;
background: #3a2b1f;
display: flex;
align-items: center;
justify-content: center;
}
.lock-circle svg { fill: #D9C9B9; }
.access-text .title {
font-size: 44px;
color: #F3E7DA;
}
.access-text .sub {
font-size: 34px;
color: #BFAF9F;
margin-top: 6px;
}
.change {
color: #FFA94D;
font-size: 38px;
margin-top: 22px;
}
/* Gesture bar */
.gesture {
position: absolute;
bottom: 36px;
left: 50%;
transform: translateX(-50%);
width: 360px;
height: 14px;
border-radius: 10px;
background: #E9E4DF;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="time">9:12</div>
<div class="status-icons">
<!-- Wifi -->
<svg width="48" height="48" viewBox="0 0 24 24">
<path d="M12 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm6.6-6.2a10 10 0 0 0-13.2 0l1.4 1.4a8 8 0 0 1 10.4 0l1.4-1.4Zm3.4-3.4a16 16 0 0 0-20 0l1.4 1.4a14 14 0 0 1 17.2 0L22 10.4Z"/>
</svg>
<!-- Battery -->
<svg width="48" height="48" viewBox="0 0 24 24">
<path d="M16 6h2a2 2 0 0 1 2 2v1h1v6h-1v1a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h10Zm2 10V8H6v8h12Z"/>
</svg>
</div>
</div>
<!-- Header / App Bar -->
<div class="app-bar">
<div class="app-back">
<svg width="72" height="72" viewBox="0 0 24 24">
<path d="M15.5 19 9 12l6.5-7 1.5 1.4L12.9 12l4.1 4.6-1.5 1.4Z"/>
</svg>
</div>
<div class="app-title">Manage access</div>
<div class="app-actions">
<!-- person add -->
<svg width="66" height="66" viewBox="0 0 24 24">
<path d="M15 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm-9 7v-1a6 6 0 0 1 6-6h1a6 6 0 0 1 6 6v1H6Zm-1-9V8H2V6h3V3h2v3h3v2H7v3H5Z"/>
</svg>
<!-- link -->
<svg width="66" height="66" viewBox="0 0 24 24">
<path d="M10.6 13.4a5 5 0 0 1 0-7.1l2.1-2.1a5 5 0 0 1 7.1 7.1l-1.3 1.3-1.4-1.4 1.3-1.3a3 3 0 0 0-4.3-4.3l-2.1 2.1a3 3 0 0 0 0 4.3l.7.7-1.4 1.4-.7-.7Zm2.8-2.8 1.4 1.4-.7.7a5 5 0 0 1-7.1 0l-2.1-2.1a5 5 0 0 1 7.1-7.1l1.3 1.3-1.4 1.4-1.3-1.3a3 3 0 1 0-4.3 4.3l2.1 2.1a3 3 0 0 0 4.3 0l.7-.7Z"/>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="section-title">People with access</div>
<!-- Person 1 -->
<div class="person">
<div class="avatar pink">C</div>
<div class="info">
<div class="name">Cerebra Research</div>
<div class="meta">dbwscratch.test.id5@gmail.com</div>
<div class="role">Owner</div>
</div>
</div>
<!-- Person 2 -->
<div class="person">
<div class="avatar teal"></div>
<div class="info">
<div class="name">Cerebra Research</div>
<div class="meta">dbwscratch.test.id10@gmail.com</div>
<div class="role">Editor</div>
</div>
</div>
<div class="divider"></div>
<div class="section-title">General access</div>
<div class="access-row">
<div class="lock-circle">
<svg width="60" height="60" viewBox="0 0 24 24">
<path d="M17 9V7a5 5 0 0 0-10 0v2H5v12h14V9h-2Zm-8 0V7a3 3 0 0 1 6 0v2H9Zm9 10H6v-8h12v8Z"/>
</svg>
</div>
<div class="access-text">
<div class="title">Restricted</div>
<div class="sub">Only people added can open with the link</div>
<div class="change">Change</div>
</div>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html> |