File size: 7,132 Bytes
5501681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
247
248
249
250
251
252
253
254
255
256
257
258
259
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>UI Render</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #000000;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 0.5px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .sb-icon {
    width: 34px; height: 34px;
  }

  /* Header */
  .header {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
  }
  .icon-btn {
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    color: #ffffff;
  }
  .kebab {
    width: 48px; height: 48px;
  }

  /* Task card */
  .task-card {
    position: absolute;
    top: 260px;
    left: 32px;
    width: 1016px;
    height: 156px;
    background: #1E1E1E;
    border-radius: 28px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    padding: 0 28px;
  }
  .checkbox {
    width: 56px; height: 56px;
    border: 3px solid #717171;
    border-radius: 8px;
    margin-right: 24px;
    box-sizing: border-box;
  }
  .task-text {
    font-size: 40px;
    color: #EDEDED;
    flex: 1;
  }
  .task-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .label-blue {
    color: #5D86FF;
    font-size: 34px;
    font-weight: 600;
  }
  .clock {
    width: 40px; height: 40px;
  }

  /* Floating Action Button */
  .fab {
    position: absolute;
    right: 48px;
    bottom: 360px;
    width: 160px;
    height: 160px;
    background: #3D6DFF;
    border-radius: 80px;
    box-shadow: 0 10px 24px rgba(61,109,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fab svg { width: 72px; height: 72px; }

  /* Bottom navigation */
  .bottom-nav {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #CFCFCF;
  }
  .nav-item { display: flex; align-items: center; justify-content: center; }
  .nav-check {
    width: 84px; height: 84px; background: #3D6DFF; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-icon {
    width: 68px; height: 68px;
  }

  /* Gesture pill */
  .gesture-pill {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 16px;
    background: #C9C9C9;
    border-radius: 12px;
    opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div>12:26</div>
    <div class="status-right">
      <!-- Simple status icons -->
      <svg class="sb-icon" viewBox="0 0 24 24" fill="none">
        <circle cx="12" cy="12" r="10" fill="#FFFFFF" opacity="0.2"></circle>
      </svg>
      <svg class="sb-icon" viewBox="0 0 24 24" fill="none">
        <rect x="2" y="6" width="20" height="12" rx="3" stroke="#FFFFFF" stroke-width="2"></rect>
        <rect x="4" y="8" width="10" height="8" fill="#FFFFFF"></rect>
      </svg>
      <svg class="sb-icon" viewBox="0 0 24 24" fill="none">
        <rect x="3" y="5" width="18" height="14" rx="3" stroke="#FFFFFF" stroke-width="2"></rect>
        <path d="M7 12l3 3 6-6" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
      </svg>
      <svg class="sb-icon" viewBox="0 0 24 24" fill="none">
        <path d="M3 12h18" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"></path>
      </svg>
      <svg class="sb-icon" viewBox="0 0 24 24" fill="none">
        <path d="M18 3l3 3M6 3l-3 3" stroke="#FFFFFF" stroke-width="2" opacity="0.6"></path>
        <path d="M20 12a8 8 0 1 1-16 0" stroke="#FFFFFF" stroke-width="2"></path>
      </svg>
      <svg class="sb-icon" viewBox="0 0 24 24" fill="none">
        <path d="M6 20h12a2 2 0 0 0 2-2V6" stroke="#FFFFFF" stroke-width="2"></path>
        <path d="M22 6l-2-2" stroke="#FFFFFF" stroke-width="2"></path>
      </svg>
    </div>
  </div>

  <!-- Header with hamburger and title -->
  <div class="header">
    <div class="icon-btn">
      <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
        <path d="M3 6h18M3 12h18M3 18h18" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"></path>
      </svg>
    </div>
    <div class="header-title">Review of Employee Benefits</div>
    <div class="icon-btn">
      <svg class="kebab" viewBox="0 0 24 24" fill="#FFFFFF">
        <circle cx="12" cy="5" r="2"></circle>
        <circle cx="12" cy="12" r="2"></circle>
        <circle cx="12" cy="19" r="2"></circle>
      </svg>
    </div>
  </div>

  <!-- Task card -->
  <div class="task-card">
    <div class="checkbox"></div>
    <div class="task-text">Regular Health Checkup</div>
    <div class="task-right">
      <div class="label-blue">Tomorrow</div>
      <svg class="clock" viewBox="0 0 24 24" fill="none">
        <circle cx="12" cy="12" r="9" stroke="#9E9E9E" stroke-width="2"></circle>
        <path d="M12 6v6l4 2" stroke="#9E9E9E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
      </svg>
    </div>
  </div>

  <!-- Floating Action Button -->
  <div class="fab">
    <svg viewBox="0 0 24 24">
      <path d="M12 5v14M5 12h14" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"></path>
    </svg>
  </div>

  <!-- Bottom Navigation -->
  <div class="bottom-nav">
    <div class="nav-item">
      <div class="nav-check">
        <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
          <path d="M5 13l4 4 10-10" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
        </svg>
      </div>
    </div>
    <div class="nav-item">
      <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
        <rect x="3" y="5" width="18" height="16" rx="3" stroke="#BDBDBD" stroke-width="2"></rect>
        <path d="M7 3v4M17 3v4" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round"></path>
        <rect x="9" y="12" width="6" height="6" fill="#BDBDBD"></rect>
      </svg>
    </div>
    <div class="nav-item">
      <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
        <circle cx="12" cy="12" r="4" fill="#BDBDBD"></circle>
        <path d="M12 3v3M12 18v3M3 12h3M18 12h3M5.2 5.2l2.1 2.1M16.7 16.7l2.1 2.1M16.7 7.3l2.1-2.1M5.2 18.8l2.1-2.1" stroke="#BDBDBD" stroke-width="2" stroke-linecap="round"></path>
      </svg>
    </div>
  </div>

  <!-- Gesture Pill -->
  <div class="gesture-pill"></div>

</div>
</body>
</html>