File size: 5,138 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>JRR Tolkien Folder</title>
<style>
  body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width:1080px; height:2400px;
    position:relative; overflow:hidden;
    background:#121212; color:#fff;
  }
  /* Status bar */
  .status-bar{
    position:absolute; top:0; left:0; right:0;
    height:90px; padding:0 28px;
    display:flex; align-items:center; justify-content:space-between;
    color:#eaeaea; font-size:36px; letter-spacing:0.5px;
  }
  .status-left{ display:flex; align-items:center; gap:20px; }
  .status-icons{ display:flex; gap:16px; align-items:center; }
  .tiny-ico{ width:30px; height:30px; background:#9e9e9e; border-radius:6px; opacity:.8; }
  .status-right{ display:flex; align-items:center; gap:16px; }
  .battery{
    display:flex; align-items:center; gap:10px; font-weight:600;
  }
  .battery svg{ width:52px; height:28px; }
  /* App bar */
  .app-bar{
    position:absolute; top:90px; left:0; right:0;
    height:140px; background:#2f342a; display:flex; align-items:center;
    padding:0 28px;
  }
  .app-title{ font-size:46px; font-weight:600; margin-left:18px; }
  .app-actions{ margin-left:auto; display:flex; align-items:center; gap:30px; }
  .icon-btn{ width:64px; height:64px; display:flex; align-items:center; justify-content:center; }
  .icon-btn svg{ fill:#fff; width:44px; height:44px; }
  /* Content area */
  .content{
    position:absolute; top:260px; left:0; right:0; bottom:0;
    padding:40px 60px;
  }
  .cards{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:60px;
    width:100%;
  }
  .card{
    background:#232323; border-radius:28px; padding:20px;
    position:relative; min-height:420px;
  }
  .thumb{
    height:230px; border-radius:20px; background:#E0E0E0; border:1px solid #BDBDBD;
    display:flex; align-items:center; justify-content:center; color:#757575;
    font-size:32px; text-align:center; padding:10px;
  }
  .meta{ display:flex; align-items:flex-start; gap:18px; margin-top:28px; }
  .chip{
    background:#d9534f; color:#fff; font-weight:700;
    border-radius:10px; padding:10px 16px; font-size:26px;
  }
  .file-title{
    flex:1; color:#fff; font-size:34px; line-height:1.2;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .menu{
    position:absolute; right:18px; top:18px; width:54px; height:54px;
    display:flex; align-items:center; justify-content:center; opacity:.9;
  }
  .menu svg{ fill:#cfcfcf; width:14px; height:36px; }
  /* Bottom gesture bar */
  .gesture{
    position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
    width:500px; height:10px; background:#e6e6e6; border-radius:6px; opacity:.9;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>9:38</div>
      <div class="status-icons">
        <div class="tiny-ico"></div>
        <div class="tiny-ico"></div>
        <div class="tiny-ico"></div>
        <div class="tiny-ico"></div>
      </div>
    </div>
    <div class="status-right">
      <svg width="40" height="32" viewBox="0 0 24 24" fill="#eaeaea"><path d="M2 18h20L12 6 2 18z"/></svg>
      <div class="battery">
        <svg viewBox="0 0 24 24"><path d="M16 7h1a1 1 0 0 1 1 1v1h1.5a.5.5 0 0 1 .5.5V14a.5.5 0 0 1-.5.5H18v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h12z" fill="#eaeaea"/></svg>
        <span>100%</span>
      </div>
    </div>
  </div>

  <!-- App bar -->
  <div class="app-bar">
    <div class="icon-btn">
      <svg viewBox="0 0 24 24"><path d="M15.5 19.5 8 12l7.5-7.5-1.5-1.5L5 12l9 9 1.5-1.5z"/></svg>
    </div>
    <div class="app-title">JRR Tolkien</div>
    <div class="app-actions">
      <div class="icon-btn">
        <svg viewBox="0 0 24 24"><path d="M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3 1.4 1.4z"/></svg>
      </div>
    </div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="cards">
      <!-- Card 1 -->
      <div class="card">
        <div class="thumb">[IMG: The Hobbit cover]</div>
        <div class="meta">
          <div class="chip">PDF</div>
          <div class="file-title">Copy of JRR Tolkien - L...</div>
        </div>
        <div class="menu" title="More">
          <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
        </div>
      </div>
      <!-- Card 2 -->
      <div class="card">
        <div class="thumb">[IMG: The Hobbit cover]</div>
        <div class="meta">
          <div class="chip">PDF</div>
          <div class="file-title">JRR Tolkien - Lord of th...</div>
        </div>
        <div class="menu" title="More">
          <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
        </div>
      </div>
    </div>
  </div>

  <div class="gesture"></div>
</div>
</body>
</html>