File size: 5,716 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Mobile UI 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: #E0E0E0;
  }
  /* Status bar */
  .status-bar {
    position: absolute; top: 24px; left: 32px; right: 32px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    color: #FFFFFF;
    font-size: 34px; letter-spacing: 0.3px;
  }
  .status-right { display: flex; align-items: center; gap: 18px; font-size: 28px; }
  /* Top action bar */
  .top-actions {
    position: absolute; top: 140px; left: 24px; right: 24px; height: 84px;
    display: flex; align-items: center; justify-content: space-between;
    color: #B0B0B0;
  }
  .action-right { display: flex; align-items: center; gap: 44px; }
  .icon { width: 48px; height: 48px; }
  .icon path, .icon circle, .icon rect, .icon line { stroke: #B0B0B0; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .icon-fill path, .icon-fill rect, .icon-fill circle { fill: #B0B0B0; stroke: none; }
  /* Title and content */
  .title {
    position: absolute; top: 280px; left: 92px;
    font-size: 72px; color: #9E9E9E; font-weight: 500;
  }
  .subtitle {
    position: absolute; top: 380px; left: 92px;
    font-size: 44px; color: #E0E0E0;
  }
  /* Reminder pill */
  .pill {
    position: absolute; top: 520px; left: 92px;
    height: 96px; width: 520px; border-radius: 24px;
    background: #424242; color: #FFFFFF;
    display: flex; align-items: center; gap: 24px; padding: 0 28px;
  }
  .pill-text { font-size: 38px; }
  /* Bottom bar */
  .bottom-toolbar {
    position: absolute; left: 24px; right: 24px; bottom: 150px; height: 84px;
    display: flex; align-items: center; justify-content: space-between; color: #B0B0B0;
  }
  .bottom-left { display: flex; align-items: center; gap: 36px; }
  .edited { font-size: 32px; color: #B0B0B0; }
  .menu-dots { width: 48px; height: 48px; }
  /* Home indicator */
  .home-indicator {
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    width: 360px; height: 12px; border-radius: 8px; background: #E5E5E5; opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">1:43</div>
    <div class="status-right">
      <!-- Wi-Fi -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M2 8c5-5 15-5 20 0"></path>
        <path d="M5 12c3-3 11-3 14 0"></path>
        <path d="M8 16c2-2 6-2 8 0"></path>
        <circle cx="12" cy="19" r="1.6" fill="#FFFFFF" stroke="none"></circle>
      </svg>
      <!-- Battery -->
      <svg class="icon" viewBox="0 0 24 24">
        <rect x="2" y="7" width="18" height="10" rx="2"></rect>
        <rect x="20" y="10" width="2" height="4" rx="1" class="icon-fill"></rect>
        <rect x="4" y="9" width="14" height="6" rx="1" class="icon-fill"></rect>
      </svg>
      <div style="font-size:28px;color:#FFFFFF;">100%</div>
    </div>
  </div>

  <!-- Top actions -->
  <div class="top-actions">
    <!-- Back arrow -->
    <svg class="icon" viewBox="0 0 24 24">
      <path d="M15 5l-7 7 7 7"></path>
      <line x1="8" y1="12" x2="22" y2="12"></line>
    </svg>

    <div class="action-right">
      <!-- Pin -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M8 3l8 8-3 3 3 7-7-3 3-3-8-8z"></path>
      </svg>
      <!-- Bell with lock (simplified) -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M12 3c-3 0-5 2-5 5v3c0 2-1 3-2 4h14c-1-1-2-2-2-4V8c0-3-2-5-5-5z"></path>
        <path d="M9 19c1.2 1 3.8 1 5 0"></path>
        <rect x="16.5" y="3" width="5" height="4" rx="1"></rect>
      </svg>
      <!-- Download/archive -->
      <svg class="icon" viewBox="0 0 24 24">
        <rect x="4" y="4" width="16" height="16" rx="2"></rect>
        <path d="M12 7v8"></path>
        <path d="M9 12l3 3 3-3"></path>
      </svg>
    </div>
  </div>

  <!-- Content -->
  <div class="title">Title</div>
  <div class="subtitle">Meet and Greet</div>

  <!-- Reminder pill -->
  <div class="pill">
    <svg class="icon" viewBox="0 0 24 24" style="width:48px;height:48px;">
      <circle cx="12" cy="12" r="7"></circle>
      <path d="M12 8v5l3 2"></path>
      <path d="M5 6l2-2"></path>
      <path d="M17 4l2 2"></path>
    </svg>
    <div class="pill-text">Aug 10, 8:00 AM</div>
  </div>

  <!-- Big empty body area is just background -->

  <!-- Bottom toolbar -->
  <div class="bottom-toolbar">
    <div class="bottom-left">
      <!-- Plus in square -->
      <svg class="icon" viewBox="0 0 24 24">
        <rect x="3" y="3" width="18" height="18" rx="2"></rect>
        <path d="M12 7v10"></path>
        <path d="M7 12h10"></path>
      </svg>
      <!-- Palette -->
      <svg class="icon" viewBox="0 0 24 24">
        <path d="M12 3a9 9 0 0 0 0 18c3 0 3-2 2.5-3.5S16 15 18 15s3-3-2-6a9 9 0 0 0-4-6z"></path>
        <circle cx="6.5" cy="11" r="1.5"></circle>
        <circle cx="9.5" cy="8" r="1.5"></circle>
        <circle cx="14.5" cy="8.5" r="1.5"></circle>
      </svg>
    </div>
    <div class="edited">Edited 11:49 AM</div>
    <!-- Vertical dots -->
    <svg class="menu-dots" viewBox="0 0 24 24">
      <circle cx="12" cy="5" r="2.2" fill="#B0B0B0"></circle>
      <circle cx="12" cy="12" r="2.2" fill="#B0B0B0"></circle>
      <circle cx="12" cy="19" r="2.2" fill="#B0B0B0"></circle>
    </svg>
  </div>

  <div class="home-indicator"></div>
</div>
</body>
</html>