appscms-tools-theme 5.2.2 → 5.2.3

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,547 @@
1
+ body {
2
+ background-color: #f5f5f5 !important;
3
+ }
4
+
5
+ .appscms-h1 {
6
+ font-size: 48px !important;
7
+ }
8
+
9
+ .main-container {
10
+ max-width: 1200px;
11
+ margin: 40px auto;
12
+ padding: 0 40px;
13
+ display: grid;
14
+ grid-template-columns: 1fr 1fr;
15
+ gap: 40px;
16
+ }
17
+
18
+ .left-panel {
19
+ background: #fff;
20
+ border-radius: 12px;
21
+ padding: 30px;
22
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
23
+ }
24
+
25
+ .tabs {
26
+ display: flex;
27
+ gap: 10px;
28
+ margin-bottom: 30px;
29
+ }
30
+
31
+ .tab {
32
+ flex: 1;
33
+ padding: 12px 20px;
34
+ border: none;
35
+ background: #f5f5f5;
36
+ border-radius: 8px;
37
+ font-size: 14px;
38
+ font-weight: 600;
39
+ cursor: pointer;
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: center;
43
+ gap: 8px;
44
+ }
45
+
46
+ .tab.active {
47
+ background: #000;
48
+ color: #fff;
49
+ }
50
+
51
+ .section-title {
52
+ font-size: 12px;
53
+ font-weight: 700;
54
+ letter-spacing: 1px;
55
+ margin-bottom: 20px;
56
+ color: #000;
57
+ }
58
+
59
+ .upload-area {
60
+ cursor: pointer;
61
+ border: 2px dashed #ddd;
62
+ border-radius: 8px;
63
+ padding: 20px 20px;
64
+ text-align: center;
65
+ margin-bottom: 20px;
66
+ background: #fafafa;
67
+ }
68
+
69
+ .upload-icon {
70
+ font-size: 48px;
71
+ color: #ddd;
72
+ margin-bottom: 15px;
73
+ }
74
+
75
+ .upload-text {
76
+ font-size: 14px;
77
+ color: #666;
78
+ margin-bottom: 5px;
79
+ }
80
+
81
+ .upload-hint {
82
+ font-size: 12px;
83
+ color: #999;
84
+ }
85
+
86
+ .file-info {
87
+ display: flex;
88
+ justify-content: space-between;
89
+ align-items: center;
90
+ margin-bottom: 20px;
91
+ }
92
+
93
+ .file-info-text {
94
+ font-size: 13px;
95
+ color: #666;
96
+ }
97
+
98
+ .select-file-btn {
99
+ background: #000;
100
+ color: #fff;
101
+ border: none;
102
+ padding: 8px 20px;
103
+ border-radius: 6px;
104
+ font-size: 13px;
105
+ font-weight: 600;
106
+ cursor: pointer;
107
+ }
108
+
109
+ .prompt-box {
110
+ width: 100%;
111
+ min-height: 120px;
112
+ padding: 15px;
113
+ border: 1px solid #ddd;
114
+ border-radius: 8px;
115
+ font-size: 14px;
116
+ font-family: inherit;
117
+ resize: vertical;
118
+ margin-bottom: 30px;
119
+ }
120
+
121
+ .settings {
122
+ margin-bottom: 30px;
123
+ }
124
+
125
+ .setting-label {
126
+ font-size: 13px;
127
+ font-weight: 600;
128
+ margin-bottom: 10px;
129
+ display: block;
130
+ }
131
+
132
+ .select-box {
133
+ width: 100%;
134
+ padding: 12px 15px;
135
+ border: 1px solid #ddd;
136
+ border-radius: 8px;
137
+ font-size: 14px;
138
+ background: #fff;
139
+ cursor: pointer;
140
+ }
141
+
142
+ .generate-btn {
143
+ width: 100%;
144
+ padding: 16px;
145
+ background: #000;
146
+ color: #fff;
147
+ border: none;
148
+ border-radius: 8px;
149
+ font-size: 15px;
150
+ font-weight: 600;
151
+ cursor: pointer;
152
+ }
153
+
154
+ .right-panel {
155
+ background: #fff;
156
+ border-radius: 12px;
157
+ padding: 30px;
158
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
159
+ }
160
+
161
+ .preview-tabs {
162
+ display: flex;
163
+ border-bottom: 2px solid #f0f0f0;
164
+ margin-bottom: 30px;
165
+ }
166
+
167
+ .preview-tab {
168
+ padding: 12px 30px;
169
+ border: none;
170
+ background: none;
171
+ font-size: 14px;
172
+ font-weight: 600;
173
+ color: #666;
174
+ cursor: pointer;
175
+ border-bottom: 2px solid transparent;
176
+ margin-bottom: -2px;
177
+ }
178
+
179
+ .preview-tab.active {
180
+ color: #000;
181
+ border-bottom-color: #000;
182
+ }
183
+
184
+ .preview-area {
185
+ text-align: center;
186
+ padding: 60px 20px;
187
+ }
188
+
189
+ .preview-placeholder {
190
+ width: 200px;
191
+ height: 200px;
192
+ background: #f5f5f5;
193
+ border-radius: 12px;
194
+ margin: 0 auto 30px;
195
+ display: flex;
196
+ align-items: center;
197
+ justify-content: center;
198
+ }
199
+
200
+ .preview-placeholder-icon {
201
+ font-size: 64px;
202
+ color: #ddd;
203
+ }
204
+
205
+ .preview-title {
206
+ font-size: 18px;
207
+ font-weight: 600;
208
+ margin-bottom: 10px;
209
+ }
210
+
211
+ .preview-subtitle {
212
+ font-size: 14px;
213
+ color: #666;
214
+ }
215
+
216
+
217
+ .popup-overlay {
218
+ position: fixed;
219
+ top: 0;
220
+ left: 0;
221
+ width: 100%;
222
+ height: 100%;
223
+ background: rgba(0, 0, 0, 0.5);
224
+ display: none;
225
+ justify-content: center;
226
+ align-items: center;
227
+ z-index: 9999;
228
+ }
229
+
230
+ .popup-overlay.active {
231
+ display: flex;
232
+ }
233
+
234
+
235
+ .popup {
236
+ background: white;
237
+ border-radius: 16px;
238
+ padding: 40px;
239
+ max-width: 400px;
240
+ width: 90%;
241
+ text-align: center;
242
+ box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
243
+ }
244
+
245
+ .credits-popup-icon {
246
+ width: 60px;
247
+ height: 60px;
248
+ background: #FFF4E5;
249
+ border-radius: 50%;
250
+ display: flex;
251
+ align-items: center;
252
+ justify-content: center;
253
+ margin: 0 auto 24px;
254
+ font-size: 30px;
255
+ }
256
+
257
+ .credits-popup-title {
258
+ font-size: 24px;
259
+ font-weight: 600;
260
+ color: #1a1a1a;
261
+ margin-bottom: 16px;
262
+ }
263
+
264
+ .credits-popup-message {
265
+ font-size: 15px;
266
+ color: #666;
267
+ line-height: 1.6;
268
+ margin-bottom: 32px;
269
+ }
270
+
271
+ .buttons {
272
+ display: flex;
273
+ gap: 12px;
274
+ }
275
+
276
+ .utility_btn {
277
+ flex: 1;
278
+ padding: 14px 24px;
279
+ border-radius: 8px;
280
+ font-size: 15px;
281
+ font-weight: 500;
282
+ cursor: pointer;
283
+ transition: all 0.2s;
284
+ border: none;
285
+ }
286
+
287
+ .cancel {
288
+ background: white;
289
+ color: #1a1a1a;
290
+ border: 1px solid #e0e0e0;
291
+ }
292
+
293
+ .cancel:hover {
294
+ background: #f5f5f5;
295
+ }
296
+
297
+ .pricing {
298
+ background: #1a1a1a;
299
+ color: white;
300
+ }
301
+
302
+ .pricing:hover {
303
+ background: #333;
304
+ }
305
+
306
+
307
+ .feature {
308
+ background: white;
309
+ border-radius: 15px;
310
+ padding: 30px;
311
+ margin-bottom: 30px;
312
+ display: flex;
313
+ align-items: center;
314
+ gap: 40px;
315
+ /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
316
+ /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
317
+ transition: transform 0.3s ease;
318
+ }
319
+
320
+ .feature:hover {
321
+ transform: translateY(-5px);
322
+ }
323
+
324
+ .feature:nth-child(even) {
325
+ flex-direction: row-reverse;
326
+ }
327
+
328
+ .feature-image {
329
+ flex: 0 0 500px;
330
+ height: 250px;
331
+ background: linear-gradient(135deg, #0000005c 0%, #1a1c1d 100%);
332
+ border-radius: 10px;
333
+ display: flex;
334
+ align-items: center;
335
+ justify-content: center;
336
+ font-size: 80px;
337
+ color: white;
338
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
339
+ }
340
+
341
+ .feature-content {
342
+ flex: 1;
343
+ }
344
+
345
+ .feature-content h2 {
346
+ color: #000;
347
+ font-size: 1.8rem;
348
+ margin-bottom: 15px;
349
+ }
350
+
351
+ .feature-content p {
352
+ color: #555;
353
+ line-height: 1.6;
354
+ margin-bottom: 20px;
355
+ font-size: 1.05rem;
356
+ }
357
+
358
+ .try-btn {
359
+ background: #facc15e6;
360
+ color: black;
361
+ border: none;
362
+ padding: 12px 30px;
363
+ font-size: 1rem;
364
+ border-radius: 25px;
365
+ cursor: pointer;
366
+ transition: all 0.3s ease;
367
+ box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
368
+ }
369
+
370
+ .try-btn:hover {
371
+ transform: scale(1.05);
372
+ box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
373
+ }
374
+
375
+
376
+ .faq-container {
377
+ max-width: 900px;
378
+ margin: 0 auto;
379
+ }
380
+
381
+ .faq-header {
382
+ text-align: left;
383
+ margin-bottom: 50px;
384
+ }
385
+
386
+ .faq-header h1 {
387
+ font-size: 3rem;
388
+ color: #1a1a1a;
389
+ font-weight: 700;
390
+ line-height: 1.2;
391
+ margin-bottom: 20px;
392
+ }
393
+
394
+ .faq-header p {
395
+ font-size: 1.1rem;
396
+ color: #666;
397
+ max-width: 600px;
398
+ }
399
+
400
+ .launch-btn {
401
+ background: #000;
402
+ color: white;
403
+ border: none;
404
+ padding: 14px 28px;
405
+ font-size: 1rem;
406
+ border-radius: 8px;
407
+ cursor: pointer;
408
+ transition: all 0.3s ease;
409
+ margin-top: 20px;
410
+ display: inline-flex;
411
+ align-items: center;
412
+ gap: 8px;
413
+ font-weight: 500;
414
+ }
415
+
416
+ .launch-btn:hover {
417
+ background: #333;
418
+ transform: translateY(-2px);
419
+ }
420
+
421
+ .faq-list {
422
+ display: flex;
423
+ flex-direction: column;
424
+ gap: 12px;
425
+ }
426
+
427
+ .faq-item {
428
+ background: white;
429
+ border-radius: 12px;
430
+ overflow: hidden;
431
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
432
+ transition: all 0.3s ease;
433
+ }
434
+
435
+ .faq-item:hover {
436
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
437
+ }
438
+
439
+ .faq-question {
440
+ width: 100%;
441
+ padding: 24px 28px;
442
+ background: white;
443
+ border: none;
444
+ text-align: left;
445
+ font-size: 1.05rem;
446
+ color: #1a1a1a;
447
+ cursor: pointer;
448
+ display: flex;
449
+ justify-content: space-between;
450
+ align-items: center;
451
+ font-weight: 500;
452
+ transition: all 0.3s ease;
453
+ }
454
+
455
+ .faq-question:hover {
456
+ background: #f8f9fa;
457
+ }
458
+
459
+ .faq-arrow {
460
+ font-size: 1.2rem;
461
+ color: #666;
462
+ transition: transform 0.3s ease;
463
+ flex-shrink: 0;
464
+ margin-left: 20px;
465
+ }
466
+
467
+ .faq-item.active .faq-arrow {
468
+ transform: rotate(180deg);
469
+ }
470
+
471
+ .faq-answer {
472
+ max-height: 0;
473
+ overflow: hidden;
474
+ transition: max-height 0.3s ease, padding 0.3s ease;
475
+ background: #fafafa;
476
+ }
477
+
478
+ .faq-answer-content {
479
+ padding: 0 28px;
480
+ color: #555;
481
+ line-height: 1.7;
482
+ font-size: 1rem;
483
+ }
484
+
485
+ .faq-item.active .faq-answer {
486
+ max-height: 300px;
487
+ padding: 20px 0 24px 0;
488
+ }
489
+
490
+ @media (max-width: 768px) {
491
+ .faq-header h1 {
492
+ font-size: 2rem;
493
+ }
494
+
495
+ .faq-question {
496
+ padding: 20px;
497
+ font-size: 1rem;
498
+ }
499
+
500
+ .faq-answer-content {
501
+ padding: 0 20px;
502
+ font-size: 0.95rem;
503
+ }
504
+ }
505
+
506
+ @media (max-width: 768px) {
507
+
508
+ .feature,
509
+ .feature:nth-child(even) {
510
+ flex-direction: column;
511
+ }
512
+
513
+ .feature-image {
514
+ flex: 0 0 200px;
515
+ width: 100%;
516
+ height: 200px;
517
+ }
518
+
519
+ h1 {
520
+ font-size: 2rem;
521
+ }
522
+ }
523
+
524
+
525
+
526
+ @media (max-width: 768px) {
527
+ .main-container {
528
+ grid-template-columns: 1fr;
529
+ /* 2 column → 1 column */
530
+ padding: 0 16px;
531
+ gap: 24px;
532
+ }
533
+
534
+ .left-panel,
535
+ .right-panel {
536
+ padding: 20px;
537
+ }
538
+
539
+ .preview-area {
540
+ padding: 40px 10px;
541
+ }
542
+
543
+ .preview-placeholder {
544
+ width: 160px;
545
+ height: 160px;
546
+ }
547
+ }