File size: 8,532 Bytes
98687c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html>
<head>
<meta charset="UTF-8">
<title>Generated UI</title>
<style>
  body { margin:0; padding:0; background:transparent; font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; }
  #render-target { width:1080px; height:2400px; position:relative; overflow:hidden; background:#1f1f1f; color:#ffffff; }

  /* Header */
  .header { position:absolute; top:0; left:0; width:100%; height:230px; background:#c62828; }
  .status { position:absolute; top:30px; left:30px; right:30px; height:60px; display:flex; align-items:center; justify-content:space-between; color:#fff; opacity:0.9; }
  .status .right-icons { display:flex; gap:18px; }
  .status .right-icons .icon { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.3); display:flex; align-items:center; justify-content:center; font-size:18px; }

  .titlebar { position:absolute; top:110px; left:0; right:0; height:90px; display:flex; align-items:center; justify-content:center; }
  .titlebar .back { position:absolute; left:30px; width:70px; height:70px; display:flex; align-items:center; justify-content:center; }
  .titlebar .actions { position:absolute; right:30px; width:90px; height:70px; display:flex; align-items:center; justify-content:center; }
  .titlebar .title { font-size:60px; font-weight:600; }

  /* Main card */
  .card { position:absolute; top:230px; left:30px; width:1020px; background:#212121; border-radius:26px; box-shadow:0 10px 18px rgba(0,0,0,0.35); }
  .card-inner { padding:40px 40px 20px 40px; position:relative; }
  .close { position:absolute; top:24px; right:24px; width:70px; height:70px; opacity:0.8; display:flex; align-items:center; justify-content:center; }

  .row { margin-bottom:46px; position:relative; }
  .line { position:absolute; left:0; top:6px; width:40px; height:190px; }
  .line .dot { width:20px; height:20px; border:4px solid #cfcfcf; border-radius:50%; background:#111; position:absolute; left:8px; top:0; }
  .line .dot.bottom { bottom:0; top:auto; }
  .line .vertical { position:absolute; left:15px; top:18px; bottom:18px; width:4px; background:#3a3a3a; border-radius:2px; }

  .input-area { margin-left:60px; }
  .input-label { font-size:42px; color:#bbbbbb; display:flex; align-items:center; gap:12px; }
  .input-caret { width:4px; height:48px; background:#e53935; display:inline-block; }
  .input-field { margin-top:14px; height:64px; border-bottom:2px solid #333333; }

  .list { margin-top:16px; border-top:1px solid #2c2c2c; }
  .item { display:flex; align-items:center; justify-content:space-between; padding:34px 40px; border-bottom:1px solid #2c2c2c; }
  .item-left { display:flex; align-items:center; gap:26px; }
  .item-title { font-size:44px; color:#eeeeee; }
  .item-sub { font-size:40px; color:#cfcfcf; }
  .circle-icon { width:52px; height:52px; border-radius:50%; background:#2d2d2d; display:flex; align-items:center; justify-content:center; }
  .star { width:60px; height:60px; border:3px solid #bbbbbb; border-radius:14px; }

  /* Keyboard */
  .keyboard { position:absolute; left:0; bottom:0; width:100%; height:860px; background:#111111; border-top-left-radius:36px; border-top-right-radius:36px; box-shadow:0 -6px 18px rgba(0,0,0,0.4); }
  .kb-row { display:flex; justify-content:space-between; padding:32px 40px; }
  .key { width:86px; height:120px; background:#2d2d2d; border-radius:24px; color:#ffffff; font-size:48px; display:flex; align-items:center; justify-content:center; }
  .key.wide { width:140px; }
  .key.space { flex:1; height:120px; margin:0 20px; background:#2d2d2d; border-radius:24px; }
  .key.action { width:160px; background:#3a3a3a; }
  .bottom-bar { position:absolute; left:340px; bottom:24px; width:400px; height:14px; background:#bdbdbd; border-radius:8px; opacity:0.7; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Header -->
  <div class="header">
    <div class="status">
      <div style="font-size:36px;">10:38</div>
      <div class="right-icons">
        <div class="icon"></div>
        <div class="icon"></div>
        <div class="icon"></div>
      </div>
    </div>
    <div class="titlebar">
      <div class="back">
        <svg width="56" height="56" viewBox="0 0 24 24" fill="#ffffff"><path d="M15.4 3.4L6.8 12l8.6 8.6-2.2 2.2L2.4 12 13.2 1.2z"/></svg>
      </div>
      <div class="title">Plan</div>
      <div class="actions">
        <svg width="80" height="50" viewBox="0 0 24 24" fill="#ffffff"><path d="M9 6l6 6-6 6V6zm-6 0l6 6-6 6V6z"/></svg>
      </div>
    </div>
  </div>

  <!-- Main Card -->
  <div class="card" style="height:980px;">
    <div class="card-inner">
      <div class="close">
        <svg width="46" height="46" viewBox="0 0 24 24" stroke="#ffffff" stroke-width="2" fill="none"><path d="M6 6l12 12M18 6L6 18"/></svg>
      </div>

      <div class="row">
        <div class="line">
          <div class="dot"></div>
          <div class="vertical"></div>
          <div class="dot bottom"></div>
        </div>
        <div class="input-area">
          <div class="input-label">From <span class="input-caret"></span></div>
          <div class="input-field"></div>
        </div>
      </div>

      <div class="row" style="margin-bottom:18px;">
        <div class="input-area">
          <div class="input-label">To</div>
          <div class="input-field"></div>
        </div>
      </div>

      <div class="list">
        <div class="item">
          <div class="item-left">
            <div class="circle-icon">
              <!-- Eye-off icon -->
              <svg width="36" height="36" viewBox="0 0 24 24" fill="#bbbbbb">
                <path d="M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7zm0 12a5 5 0 110-10 5 5 0 010 10z"></path>
                <path d="M3 3l18 18" stroke="#bbbbbb" stroke-width="2"></path>
              </svg>
            </div>
            <div class="item-sub">Location access not given</div>
          </div>
        </div>

        <div class="item">
          <div class="item-left">
            <div class="circle-icon">
              <!-- Clock icon -->
              <svg width="34" height="34" viewBox="0 0 24 24" fill="#bbbbbb">
                <circle cx="12" cy="12" r="9"></circle>
                <path d="M12 7v6l4 2" stroke="#1f1f1f" stroke-width="2"></path>
              </svg>
            </div>
            <div class="item-title">Guildford</div>
          </div>
          <div class="star"></div>
        </div>

        <div class="item">
          <div class="item-left">
            <div class="circle-icon">
              <!-- Clock icon -->
              <svg width="34" height="34" viewBox="0 0 24 24" fill="#bbbbbb">
                <circle cx="12" cy="12" r="9"></circle>
                <path d="M12 7v6l4 2" stroke="#1f1f1f" stroke-width="2"></path>
              </svg>
            </div>
            <div class="item-title">Dundee</div>
          </div>
          <div class="star"></div>
        </div>
      </div>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-row" style="padding-top:40px;">
      <div class="key action">&#x25A6;</div>
      <div class="key action">🙂</div>
      <div class="key action">GIF</div>
      <div class="key action">⚙️</div>
      <div class="key action">G</div>
      <div class="key action">🎨</div>
      <div class="key action">🎤</div>
    </div>
    <div class="kb-row">
      <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
    </div>
    <div class="kb-row">
      <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
    </div>
    <div class="kb-row">
      <div class="key wide"></div><div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div><div class="key wide"></div>
    </div>
    <div class="kb-row">
      <div class="key action">?123</div>
      <div class="key action">,</div>
      <div class="key action">😊</div>
      <div class="key space"></div>
      <div class="key action">.</div>
      <div class="key action"></div>
    </div>
    <div class="bottom-bar"></div>
  </div>

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