File size: 3,619 Bytes
fa881a6 | 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 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>UI Render</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Arial, Helvetica, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #0E2C2C; /* deep teal/dark */
color: #FFFFFF;
}
/* Header */
.header {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 180px;
padding: 40px 36px 20px 36px; /* status spacing and side paddings */
box-sizing: border-box;
}
.header-row {
display: flex;
align-items: center;
gap: 28px;
}
.icon-btn {
width: 68px;
height: 68px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 34px;
color: #D5E3E6;
}
.title {
font-size: 56px;
line-height: 64px;
font-weight: 600;
color: #E8F1F2;
flex: 1;
}
.divider {
position: absolute;
left: 0;
right: 0;
top: 180px;
height: 1px;
background: #264142;
}
/* List area */
.results {
position: absolute;
top: 190px;
left: 0;
right: 0;
padding-top: 20px;
}
.result-item {
display: flex;
align-items: center;
padding: 40px 36px;
gap: 32px;
}
.avatar {
width: 120px;
height: 120px;
border-radius: 60px;
background: #8E63F7; /* purple circle */
display: flex;
align-items: center;
justify-content: center;
color: #0E2C2C;
font-size: 64px;
font-weight: 700;
}
.result-texts {
display: flex;
flex-direction: column;
gap: 14px;
}
.name {
font-size: 50px;
font-weight: 700;
color: #74E6B9; /* mint green title */
}
.sub {
font-size: 40px;
color: #CFE7E5;
}
/* Gesture bar at bottom */
.gesture-bar {
position: absolute;
bottom: 60px;
left: 50%;
transform: translateX(-50%);
width: 320px;
height: 12px;
border-radius: 8px;
background: #EAEAEA;
opacity: 0.9;
}
/* SVG tweaks */
svg {
width: 44px;
height: 44px;
}
.icon-muted {
color: #C7D4D6;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Header -->
<div class="header">
<div class="header-row">
<div class="icon-btn" aria-label="Back">
<!-- Back Arrow -->
<svg viewBox="0 0 24 24">
<path fill="currentColor" d="M14.7 5.3L9 11l5.7 5.7-1.4 1.4L6.2 12l7.1-7.1 1.4 1.4z"/>
</svg>
</div>
<div class="title">Clara Wagner</div>
<div class="icon-btn icon-muted" aria-label="Clear">
<!-- X / Clear -->
<svg viewBox="0 0 24 24">
<path fill="currentColor" d="M6 6l12 12M18 6L6 18" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="icon-btn icon-muted" aria-label="Voice Search">
<!-- Microphone -->
<svg viewBox="0 0 24 24">
<path fill="currentColor" d="M12 15a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v6a3 3 0 0 0 3 3zm-6-3a6 6 0 0 0 12 0h-2a4 4 0 0 1-8 0H6zm5 6v3h2v-3h-2z"/>
</svg>
</div>
</div>
</div>
<div class="divider"></div>
<!-- Results list -->
<div class="results">
<div class="result-item">
<div class="avatar">C</div>
<div class="result-texts">
<div class="name">Clara Wagner</div>
<div class="sub">Clara Wagner</div>
</div>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html> |