foliko 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,306 @@
1
+ * {
2
+ margin: 0;
3
+ padding: 0;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ :root {
8
+ --primary: #6366f1;
9
+ --primary-dark: #4f46e5;
10
+ --secondary: #22d3ee;
11
+ --bg-dark: #0f172a;
12
+ --bg-card: #1e293b;
13
+ --text-primary: #f1f5f9;
14
+ --text-secondary: #94a3b8;
15
+ --border: #334155;
16
+ }
17
+
18
+ body {
19
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
20
+ background-color: var(--bg-dark);
21
+ color: var(--text-primary);
22
+ line-height: 1.6;
23
+ }
24
+
25
+ /* Header */
26
+ header {
27
+ position: fixed;
28
+ top: 0;
29
+ left: 0;
30
+ right: 0;
31
+ background: rgba(15, 23, 42, 0.95);
32
+ backdrop-filter: blur(10px);
33
+ border-bottom: 1px solid var(--border);
34
+ z-index: 1000;
35
+ }
36
+
37
+ nav {
38
+ max-width: 1200px;
39
+ margin: 0 auto;
40
+ padding: 1rem 2rem;
41
+ display: flex;
42
+ justify-content: space-between;
43
+ align-items: center;
44
+ }
45
+
46
+ .logo {
47
+ font-size: 1.5rem;
48
+ font-weight: 700;
49
+ color: var(--primary);
50
+ }
51
+
52
+ .nav-links {
53
+ display: flex;
54
+ list-style: none;
55
+ gap: 2rem;
56
+ }
57
+
58
+ .nav-links a {
59
+ color: var(--text-secondary);
60
+ text-decoration: none;
61
+ transition: color 0.3s;
62
+ }
63
+
64
+ .nav-links a:hover {
65
+ color: var(--primary);
66
+ }
67
+
68
+ /* Hero Section */
69
+ .hero {
70
+ min-height: 100vh;
71
+ display: flex;
72
+ flex-direction: column;
73
+ justify-content: center;
74
+ align-items: center;
75
+ text-align: center;
76
+ padding: 6rem 2rem 4rem;
77
+ background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
78
+ }
79
+
80
+ .hero h1 {
81
+ font-size: 4rem;
82
+ font-weight: 800;
83
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
84
+ -webkit-background-clip: text;
85
+ -webkit-text-fill-color: transparent;
86
+ background-clip: text;
87
+ margin-bottom: 1rem;
88
+ }
89
+
90
+ .tagline {
91
+ font-size: 1.5rem;
92
+ color: var(--text-secondary);
93
+ margin-bottom: 1rem;
94
+ }
95
+
96
+ .description {
97
+ font-size: 1.1rem;
98
+ color: var(--text-secondary);
99
+ max-width: 600px;
100
+ margin-bottom: 2rem;
101
+ }
102
+
103
+ .cta-buttons {
104
+ display: flex;
105
+ gap: 1rem;
106
+ }
107
+
108
+ .btn {
109
+ padding: 0.75rem 1.5rem;
110
+ border-radius: 8px;
111
+ text-decoration: none;
112
+ font-weight: 600;
113
+ transition: all 0.3s;
114
+ }
115
+
116
+ .btn-primary {
117
+ background: var(--primary);
118
+ color: white;
119
+ }
120
+
121
+ .btn-primary:hover {
122
+ background: var(--primary-dark);
123
+ transform: translateY(-2px);
124
+ }
125
+
126
+ .btn-secondary {
127
+ background: var(--bg-card);
128
+ color: var(--text-primary);
129
+ border: 1px solid var(--border);
130
+ }
131
+
132
+ .btn-secondary:hover {
133
+ border-color: var(--primary);
134
+ }
135
+
136
+ /* Sections */
137
+ section {
138
+ padding: 5rem 2rem;
139
+ max-width: 1200px;
140
+ margin: 0 auto;
141
+ }
142
+
143
+ section h2 {
144
+ font-size: 2rem;
145
+ text-align: center;
146
+ margin-bottom: 3rem;
147
+ }
148
+
149
+ /* Features */
150
+ .feature-grid {
151
+ display: grid;
152
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
153
+ gap: 1.5rem;
154
+ }
155
+
156
+ .feature-card {
157
+ background: var(--bg-card);
158
+ border: 1px solid var(--border);
159
+ border-radius: 12px;
160
+ padding: 2rem;
161
+ transition: all 0.3s;
162
+ }
163
+
164
+ .feature-card:hover {
165
+ border-color: var(--primary);
166
+ transform: translateY(-4px);
167
+ }
168
+
169
+ .feature-icon {
170
+ font-size: 2.5rem;
171
+ margin-bottom: 1rem;
172
+ }
173
+
174
+ .feature-card h3 {
175
+ margin-bottom: 0.5rem;
176
+ color: var(--text-primary);
177
+ }
178
+
179
+ .feature-card p {
180
+ color: var(--text-secondary);
181
+ font-size: 0.95rem;
182
+ }
183
+
184
+ /* Quick Start */
185
+ .code-block {
186
+ background: var(--bg-card);
187
+ border: 1px solid var(--border);
188
+ border-radius: 12px;
189
+ padding: 1.5rem;
190
+ margin-bottom: 2rem;
191
+ }
192
+
193
+ .code-block h3 {
194
+ margin-bottom: 1rem;
195
+ color: var(--secondary);
196
+ }
197
+
198
+ .code-block pre {
199
+ background: var(--bg-dark);
200
+ padding: 1rem;
201
+ border-radius: 8px;
202
+ overflow-x: auto;
203
+ }
204
+
205
+ .code-block code {
206
+ font-family: 'Fira Code', 'Consolas', monospace;
207
+ font-size: 0.9rem;
208
+ color: var(--text-primary);
209
+ }
210
+
211
+ /* Docs Grid */
212
+ .docs-grid {
213
+ display: grid;
214
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
215
+ gap: 1.5rem;
216
+ }
217
+
218
+ .doc-card {
219
+ background: var(--bg-card);
220
+ border: 1px solid var(--border);
221
+ border-radius: 12px;
222
+ padding: 1.5rem;
223
+ text-decoration: none;
224
+ transition: all 0.3s;
225
+ }
226
+
227
+ .doc-card:hover {
228
+ border-color: var(--primary);
229
+ transform: translateY(-2px);
230
+ }
231
+
232
+ .doc-card h3 {
233
+ color: var(--text-primary);
234
+ margin-bottom: 0.5rem;
235
+ }
236
+
237
+ .doc-card p {
238
+ color: var(--text-secondary);
239
+ font-size: 0.9rem;
240
+ }
241
+
242
+ /* Plugin Table */
243
+ .plugin-table {
244
+ width: 100%;
245
+ border-collapse: collapse;
246
+ background: var(--bg-card);
247
+ border-radius: 12px;
248
+ overflow: hidden;
249
+ }
250
+
251
+ .plugin-table th,
252
+ .plugin-table td {
253
+ padding: 1rem;
254
+ text-align: left;
255
+ border-bottom: 1px solid var(--border);
256
+ }
257
+
258
+ .plugin-table th {
259
+ background: var(--bg-dark);
260
+ color: var(--secondary);
261
+ font-weight: 600;
262
+ }
263
+
264
+ .plugin-table tr:last-child td {
265
+ border-bottom: none;
266
+ }
267
+
268
+ .plugin-table tr:hover td {
269
+ background: rgba(99, 102, 241, 0.1);
270
+ }
271
+
272
+ /* Footer */
273
+ footer {
274
+ text-align: center;
275
+ padding: 3rem 2rem;
276
+ border-top: 1px solid var(--border);
277
+ color: var(--text-secondary);
278
+ }
279
+
280
+ footer a {
281
+ color: var(--primary);
282
+ text-decoration: none;
283
+ }
284
+
285
+ footer a:hover {
286
+ text-decoration: underline;
287
+ }
288
+
289
+ /* Responsive */
290
+ @media (max-width: 768px) {
291
+ .hero h1 {
292
+ font-size: 2.5rem;
293
+ }
294
+
295
+ .nav-links {
296
+ display: none;
297
+ }
298
+
299
+ .cta-buttons {
300
+ flex-direction: column;
301
+ }
302
+
303
+ section {
304
+ padding: 3rem 1rem;
305
+ }
306
+ }