File size: 3,634 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Add event</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111827;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #12171A;
    color: #E5E7EB;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-sizing: border-box;
    font-size: 36px;
    letter-spacing: 1px;
  }
  .status-left { flex: 1; }
  .status-right {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .status-dot {
    width: 18px; height: 18px; border-radius: 50%; background: #D1D5DB; opacity: .9;
  }
  .status-pill {
    width: 34px; height: 20px; border-radius: 10px; background: #D1D5DB;
  }

  /* App bar */
  .app-bar {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 160px;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .back-btn {
    width: 96px; height: 96px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 18px;
  }
  .title {
    font-size: 64px;
    font-weight: 700;
    color: #0F172A;
  }
  .list {
    position: absolute;
    top: 280px; /* below app bar */
    left: 0;
    right: 0;
    bottom: 140px; /* above gesture bar */
    overflow: hidden;
    background: #FFFFFF;
  }
  .list-item {
    height: 150px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    font-size: 48px;
    color: #111827;
    border-bottom: 2px solid #E5EAF0;
  }

  /* Gesture bar */
  .gesture-area {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 140px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gesture-pill {
    width: 320px;
    height: 12px;
    background: #E5E7EB;
    border-radius: 8px;
    opacity: 0.9;
  }

  /* SVG icon sizing helper */
  svg { display: block; }
</style>
</head>
<body>
  <div id="render-target">
    <!-- Status Bar -->
    <div class="status-bar">
      <div class="status-left">6:02</div>
      <div class="status-right">
        <div class="status-dot"></div>
        <div class="status-dot" style="width: 22px; height: 22px;"></div>
        <div class="status-dot"></div>
        <div class="status-dot"></div>
        <div class="status-pill"></div>
      </div>
    </div>

    <!-- App Bar -->
    <div class="app-bar">
      <div class="back-btn" aria-label="Close">
        <!-- X icon -->
        <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111827" stroke-width="2.2" stroke-linecap="round">
          <path d="M6 6l12 12M18 6L6 18"/>
        </svg>
      </div>
      <div class="title">Add event</div>
    </div>

    <!-- List -->
    <div class="list">
      <div class="list-item">Flight</div>
      <div class="list-item">Stay</div>
      <div class="list-item">Car rental</div>
      <div class="list-item">Train</div>
      <div class="list-item">Restaurant</div>
      <div class="list-item">Custom event</div>
    </div>

    <!-- Gesture Bar -->
    <div class="gesture-area">
      <div class="gesture-pill"></div>
    </div>
  </div>
</body>
</html>