File size: 6,652 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1">
<title>Note Detail UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #000000;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: #FFFFFF;
  }

  /* Status bar */
  .status-bar {
    height: 90px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 0.5px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0.9;
  }
  .status-icon svg { width: 40px; height: 40px; }

  /* App bar */
  .app-bar {
    height: 120px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .app-title {
    font-size: 56px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .app-title .chevron {
    margin-left: 8px;
    opacity: 0.9;
  }
  .app-actions {
    margin-left: auto;
  }

  /* Reminder row */
  .reminder-row {
    margin: 40px 24px 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .checkbox {
    width: 48px;
    height: 48px;
    border: 3px solid #8E8E8E;
    border-radius: 6px;
    opacity: 0.8;
  }
  .reminder-text {
    color: #FF8F00;
    font-size: 34px;
    font-weight: 700;
  }
  .flag {
    margin-left: auto;
  }

  /* Content */
  .note-title {
    margin: 40px 24px 0 24px;
    font-size: 72px;
    font-weight: 800;
  }
  .note-body {
    margin: 28px 24px 0 24px;
    font-size: 40px;
    color: #CFCFCF;
  }

  /* Bottom toolbar */
  .bottom-bar {
    position: absolute;
    bottom: 110px;
    left: 24px;
    right: 24px;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 72px;
  }
  .tool-icon svg {
    width: 64px;
    height: 64px;
    stroke: #BDBDBD;
    fill: none;
    opacity: 0.85;
  }

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

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">2:53</div>
    <div class="status-right">
      <div class="status-icon">
        <!-- Signal bars -->
        <svg viewBox="0 0 48 48">
          <rect x="4" y="26" width="6" height="16" fill="#FFFFFF"/>
          <rect x="14" y="20" width="6" height="22" fill="#FFFFFF"/>
          <rect x="24" y="14" width="6" height="28" fill="#FFFFFF"/>
          <rect x="34" y="8" width="6" height="34" fill="#FFFFFF"/>
        </svg>
      </div>
      <div class="status-icon">
        <!-- Wi-Fi -->
        <svg viewBox="0 0 48 48">
          <path d="M6 18 C16 10,32 10,42 18" stroke="#FFFFFF" stroke-width="4" fill="none"/>
          <path d="M12 24 C18 18,30 18,36 24" stroke="#FFFFFF" stroke-width="4" fill="none"/>
          <circle cx="24" cy="30" r="4" fill="#FFFFFF"/>
        </svg>
      </div>
      <div class="status-icon">
        <!-- Battery -->
        <svg viewBox="0 0 48 48">
          <rect x="6" y="12" width="34" height="24" rx="4" ry="4" stroke="#FFFFFF" stroke-width="3" fill="none"/>
          <rect x="42" y="18" width="4" height="12" fill="#FFFFFF"/>
          <rect x="10" y="16" width="26" height="16" fill="#FFFFFF"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <!-- Back arrow -->
    <svg viewBox="0 0 48 48" width="56" height="56">
      <path d="M30 12 L14 24 L30 36" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    <div class="app-title">
      <span>👋</span>
      <span>Welcome</span>
      <svg class="chevron" viewBox="0 0 48 48" width="36" height="36">
        <path d="M12 18 L24 30 L36 18" stroke="#FFFFFF" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="app-actions">
      <!-- Kebab menu -->
      <svg viewBox="0 0 48 48" width="48" height="48">
        <circle cx="24" cy="12" r="4" fill="#FFFFFF"/>
        <circle cx="24" cy="24" r="4" fill="#FFFFFF"/>
        <circle cx="24" cy="36" r="4" fill="#FFFFFF"/>
      </svg>
    </div>
  </div>

  <!-- Reminder row -->
  <div class="reminder-row">
    <div class="checkbox"></div>
    <div class="reminder-icon">
      <!-- Alarm/clock -->
      <svg viewBox="0 0 48 48" width="48" height="48">
        <circle cx="24" cy="26" r="14" stroke="#FF8F00" stroke-width="4" fill="none"/>
        <path d="M24 26 L24 18 M24 26 L32 26" stroke="#FF8F00" stroke-width="4" stroke-linecap="round"/>
        <path d="M10 10 L18 14 M38 10 L30 14" stroke="#FF8F00" stroke-width="4" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="reminder-text">2 days later, Aug 13, 06:00PM</div>
    <div class="flag">
      <!-- Flag icon -->
      <svg viewBox="0 0 48 48" width="48" height="48">
        <path d="M10 8 L10 40" stroke="#FFFFFF" stroke-width="4"/>
        <path d="M12 10 L36 14 L12 20 Z" fill="#FFFFFF"/>
      </svg>
    </div>
  </div>

  <!-- Note content -->
  <div class="note-title">Rent is due</div>
  <div class="note-body">its a new month</div>

  <!-- Bottom toolbar -->
  <div class="bottom-bar">
    <div class="tool-icon">
      <!-- Tag icon -->
      <svg viewBox="0 0 64 64">
        <path d="M10 34 L34 10 L54 30 L30 54 Z" stroke="#BDBDBD" stroke-width="4" fill="none"/>
        <circle cx="40" cy="24" r="4" fill="#BDBDBD"/>
      </svg>
    </div>
    <div class="tool-icon">
      <!-- List icon -->
      <svg viewBox="0 0 64 64">
        <circle cx="12" cy="16" r="4" fill="#BDBDBD"/>
        <circle cx="12" cy="32" r="4" fill="#BDBDBD"/>
        <circle cx="12" cy="48" r="4" fill="#BDBDBD"/>
        <path d="M22 16 H54 M22 32 H54 M22 48 H54" stroke="#BDBDBD" stroke-width="4"/>
      </svg>
    </div>
    <div class="tool-icon">
      <!-- Image icon -->
      <svg viewBox="0 0 64 64">
        <rect x="8" y="10" width="48" height="44" rx="6" ry="6" stroke="#BDBDBD" stroke-width="4" fill="none"/>
        <circle cx="22" cy="24" r="5" stroke="#BDBDBD" stroke-width="4" fill="none"/>
        <path d="M16 44 L30 34 L40 40 L52 30" stroke="#BDBDBD" stroke-width="4" fill="none"/>
      </svg>
    </div>
  </div>

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

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