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.
- checksums.yaml +4 -4
- data/_data/feature/en/3_shop_posters.json +456 -1
- data/_data/home/en/ens.json +4 -4
- data/_data/templates.json +17459 -0
- data/_data/vintage/en/test.json +142 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/footer/ai-image-tools-footer.html +14 -0
- data/_includes/appscms/head/head.html +61 -36
- data/_includes/appscms/headings/ai-image-tools-headings.html +24 -0
- data/_includes/appscms/navbars/ai-image-tools-navbar.html +446 -0
- data/_includes/appscms/scripts/script.html +17 -3
- data/_layouts/ai-image-generator.html +307 -0
- data/_layouts/ai-image-home.html +160 -0
- data/_layouts/ai-image-pricing.html +366 -0
- data/assets/css/ai-image-generator.css +547 -0
- data/assets/css/ai-image-home.css +760 -0
- data/assets/css/appscms-variables.css +1 -1
- data/assets/js/appscms-login.js +1 -1
- data/assets/js/get-credits.js +91 -0
- metadata +13 -2
|
@@ -0,0 +1,760 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
|
|
2
|
+
* {
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
body {
|
|
9
|
+
font-family: var(--font-family);
|
|
10
|
+
background: var(--white-color);
|
|
11
|
+
overflow-x: hidden;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/* header css */
|
|
15
|
+
|
|
16
|
+
.navbar{
|
|
17
|
+
background-color: white;
|
|
18
|
+
}
|
|
19
|
+
.navbar-brand {
|
|
20
|
+
color: var(--black-color) !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.nav-item {
|
|
24
|
+
padding: 0 1rem;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.nav-item .nav-link {
|
|
28
|
+
color: var(--black-color);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.btn-generate,
|
|
32
|
+
.login-btn {
|
|
33
|
+
width: auto;
|
|
34
|
+
background: linear-gradient(90deg, hsl(20.5 90.2% 48.2%), #ec4899);
|
|
35
|
+
border-color: var(--primary-color);
|
|
36
|
+
color: white;
|
|
37
|
+
font-weight: 500;
|
|
38
|
+
padding: 0.7rem 1rem;
|
|
39
|
+
width: 100%;
|
|
40
|
+
border-radius: 0.375rem;
|
|
41
|
+
border: none;
|
|
42
|
+
color: white;
|
|
43
|
+
font-size: 15px;
|
|
44
|
+
margin-bottom: 0px !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* auth / login / signup css */
|
|
48
|
+
|
|
49
|
+
.side-modal-overlay {
|
|
50
|
+
position: fixed;
|
|
51
|
+
top: 0;
|
|
52
|
+
left: 0;
|
|
53
|
+
width: 100%;
|
|
54
|
+
height: 100%;
|
|
55
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
56
|
+
display: none;
|
|
57
|
+
z-index: 100;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.side-modal {
|
|
61
|
+
position: fixed;
|
|
62
|
+
z-index: 10000;
|
|
63
|
+
top: 0;
|
|
64
|
+
right: -90%;
|
|
65
|
+
width: 28%;
|
|
66
|
+
height: 100%;
|
|
67
|
+
background-color: white;
|
|
68
|
+
box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
|
|
69
|
+
transition: right 0.3s ease-in-out;
|
|
70
|
+
overflow-y: auto;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.close-modal-btn {
|
|
74
|
+
background: #000;
|
|
75
|
+
color: white;
|
|
76
|
+
border: none;
|
|
77
|
+
padding: 5px 20px;
|
|
78
|
+
border-radius: 8px;
|
|
79
|
+
cursor: pointer;
|
|
80
|
+
font-weight: 600;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.close-modal-btn:hover {
|
|
84
|
+
background: #4f46e5;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.auth-container {
|
|
88
|
+
background-color: white;
|
|
89
|
+
border-radius: 8px;
|
|
90
|
+
padding: 30px;
|
|
91
|
+
width: 400px;
|
|
92
|
+
max-width: 90%;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
.user-avatar {
|
|
97
|
+
position: absolute;
|
|
98
|
+
top: 20px;
|
|
99
|
+
right: 20px;
|
|
100
|
+
width: 40px;
|
|
101
|
+
height: 40px;
|
|
102
|
+
border-radius: 50%;
|
|
103
|
+
background-color: #1b2de7;
|
|
104
|
+
color: white;
|
|
105
|
+
display: flex;
|
|
106
|
+
justify-content: center;
|
|
107
|
+
align-items: center;
|
|
108
|
+
font-weight: bold;
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.user-profile-header {
|
|
113
|
+
padding: 0px 0px 0px 20px;
|
|
114
|
+
display: none;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.profile-button {
|
|
118
|
+
width: 40px;
|
|
119
|
+
height: 40px;
|
|
120
|
+
border-radius: 50%;
|
|
121
|
+
background-color: var(--primary-color);
|
|
122
|
+
color: white;
|
|
123
|
+
display: flex;
|
|
124
|
+
justify-content: center;
|
|
125
|
+
align-items: center;
|
|
126
|
+
cursor: pointer;
|
|
127
|
+
font-weight: bold;
|
|
128
|
+
position: relative;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.user-modal {
|
|
132
|
+
z-index: 9;
|
|
133
|
+
position: absolute;
|
|
134
|
+
top: 55px;
|
|
135
|
+
right: 0px;
|
|
136
|
+
width: 300px;
|
|
137
|
+
background-color: white;
|
|
138
|
+
border-radius: 8px;
|
|
139
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
140
|
+
display: none;
|
|
141
|
+
overflow: hidden;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.user-modal-header {
|
|
145
|
+
padding: 20px;
|
|
146
|
+
display: flex;
|
|
147
|
+
align-items: center;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.google-btn {
|
|
151
|
+
background-color: #4884ed;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.google-btn svg {
|
|
155
|
+
background-color: #fff;
|
|
156
|
+
border-radius: 30px;
|
|
157
|
+
padding: 3px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.facebook-btn {
|
|
161
|
+
background-color: #3c5997;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.or-divider {
|
|
165
|
+
display: flex;
|
|
166
|
+
align-items: center;
|
|
167
|
+
text-align: center;
|
|
168
|
+
margin: 20px 0;
|
|
169
|
+
color: #777;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.or-divider::before,
|
|
173
|
+
.or-divider::after {
|
|
174
|
+
content: "";
|
|
175
|
+
flex: 1;
|
|
176
|
+
border-bottom: 1px solid #ddd;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.or-divider::before {
|
|
180
|
+
margin-right: 10px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.or-divider::after {
|
|
184
|
+
margin-left: 10px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.input-group {
|
|
188
|
+
position: relative;
|
|
189
|
+
display: flex;
|
|
190
|
+
flex-wrap: wrap;
|
|
191
|
+
align-items: stretch;
|
|
192
|
+
width: 100%;
|
|
193
|
+
margin-bottom: 1rem;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.input-group input {
|
|
197
|
+
width: 100%;
|
|
198
|
+
padding: 12px 40px 12px 40px;
|
|
199
|
+
border: 1px solid #ddd;
|
|
200
|
+
border-radius: 4px;
|
|
201
|
+
font-size: 16px;
|
|
202
|
+
box-sizing: border-box;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.input-group .icon {
|
|
206
|
+
position: absolute;
|
|
207
|
+
top: 50%;
|
|
208
|
+
transform: translateY(-50%);
|
|
209
|
+
color: #999;
|
|
210
|
+
font-size: 16px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.input-group i {
|
|
214
|
+
position: absolute;
|
|
215
|
+
left: 12px;
|
|
216
|
+
top: 50%;
|
|
217
|
+
transform: translateY(-50%);
|
|
218
|
+
color: #777;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.password-toggle {
|
|
222
|
+
position: absolute;
|
|
223
|
+
right: 12px;
|
|
224
|
+
top: 50%;
|
|
225
|
+
transform: translateY(-50%);
|
|
226
|
+
color: #777;
|
|
227
|
+
cursor: pointer;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.log-subinfo {
|
|
231
|
+
font-size: 16px;
|
|
232
|
+
font-weight: normal;
|
|
233
|
+
color: #555;
|
|
234
|
+
margin-bottom: 30px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.log-info {
|
|
238
|
+
font-size: 28px;
|
|
239
|
+
margin-bottom: 10px;
|
|
240
|
+
color: #000;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.social-btn {
|
|
244
|
+
display: flex;
|
|
245
|
+
align-items: center;
|
|
246
|
+
width: 100%;
|
|
247
|
+
padding: 12px;
|
|
248
|
+
border: none;
|
|
249
|
+
border-radius: 4px;
|
|
250
|
+
font-size: 16px;
|
|
251
|
+
margin-bottom: 10px;
|
|
252
|
+
cursor: pointer;
|
|
253
|
+
color: white;
|
|
254
|
+
text-align: center;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.google-btn svg {
|
|
258
|
+
width: 24px;
|
|
259
|
+
height: 24px;
|
|
260
|
+
display: inline-block;
|
|
261
|
+
margin-right: 10px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.google-btn svg {
|
|
265
|
+
background-color: #fff;
|
|
266
|
+
border-radius: 30px;
|
|
267
|
+
padding: 3px;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.icon {
|
|
271
|
+
width: 24px;
|
|
272
|
+
height: 24px;
|
|
273
|
+
display: inline-block;
|
|
274
|
+
margin-right: 10px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.google-icon {
|
|
278
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g fill="none"><path fill="#4285F4" d="M21.533 12.187c0-.82-.067-1.417-.21-2.037h-9.357v3.698h5.492c-.11.92-.709 2.303-2.038 3.233l-.018.124 2.958 2.292.205.02c1.882-1.738 2.968-4.296 2.968-7.33"></path><path fill="#34A853" d="M11.966 21.931c2.69 0 4.95-.886 6.6-2.414l-3.146-2.436c-.841.587-1.97.997-3.454.997-2.636 0-4.872-1.739-5.67-4.141l-.117.01-3.076 2.38-.04.112a9.96 9.96 0 0 0 8.903 5.492"></path><path fill="#FBBC05" d="M6.296 13.937a6.1 6.1 0 0 1-.332-1.971c0-.687.122-1.351.321-1.971l-.005-.132-3.115-2.42-.102.05A10 10 0 0 0 2 11.965a10 10 0 0 0 1.063 4.473z"></path><path fill="#EB4335" d="M11.966 5.853c1.87 0 3.133.809 3.853 1.484l2.813-2.746C16.904 2.985 14.656 2 11.966 2a9.96 9.96 0 0 0-8.903 5.492l3.222 2.503c.809-2.403 3.045-4.142 5.68-4.142"></path></g></svg>');
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.facebook-icon {
|
|
282
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="white" d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-7H9v-2h2V8.5C11 7.12 12.12 6 13.5 6H16v2h-2c-.55 0-1 .45-1 1v1h3v2h-3v7z"/></svg>');
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.email-icon {
|
|
286
|
+
position: absolute;
|
|
287
|
+
top: 10px;
|
|
288
|
+
left: 10px;
|
|
289
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.password-icon {
|
|
293
|
+
position: absolute;
|
|
294
|
+
top: 10px;
|
|
295
|
+
left: 10px;
|
|
296
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>');
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.eye-icon {
|
|
300
|
+
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="%23777" d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>');
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.google-btn svg {
|
|
304
|
+
width: 24px;
|
|
305
|
+
height: 24px;
|
|
306
|
+
display: inline-block;
|
|
307
|
+
margin-right: 10px;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
#forgotPasswordForm {
|
|
311
|
+
display: none;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
#forgotPasswordForm h2 {
|
|
315
|
+
font-weight: 600;
|
|
316
|
+
font-size: 20px;
|
|
317
|
+
color: var(--black-color);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
#forgotPasswordForm p {
|
|
321
|
+
color: var(--black-color)
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
#signupForm h1 {
|
|
325
|
+
font-size: 30px;
|
|
326
|
+
color: var(--black-color);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
#signupForm p {
|
|
330
|
+
color: var(--black-color)
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.back-btn {
|
|
334
|
+
display: flex;
|
|
335
|
+
align-items: center;
|
|
336
|
+
margin-bottom: 20px;
|
|
337
|
+
cursor: pointer;
|
|
338
|
+
color: #1b2de7;
|
|
339
|
+
font-size: 14px;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.back-btn:hover {
|
|
343
|
+
text-decoration: underline;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.back-icon {
|
|
347
|
+
margin-right: 8px;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.reset-success {
|
|
351
|
+
text-align: center;
|
|
352
|
+
background-color: #e8f4ff;
|
|
353
|
+
padding: 15px;
|
|
354
|
+
border-radius: 4px;
|
|
355
|
+
margin-top: 15px;
|
|
356
|
+
display: none;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.success-icon {
|
|
360
|
+
color: #1b2de7;
|
|
361
|
+
font-size: 24px;
|
|
362
|
+
margin-bottom: 10px;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.twitter-btn {
|
|
366
|
+
background-color: #000000;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.twitter-btn svg {
|
|
370
|
+
width: 24px;
|
|
371
|
+
height: 24px;
|
|
372
|
+
display: inline-block;
|
|
373
|
+
margin-right: 10px;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.user-modal-header {
|
|
377
|
+
position: fixed;
|
|
378
|
+
top: 0;
|
|
379
|
+
left: 0;
|
|
380
|
+
right: 0;
|
|
381
|
+
height: 70px;
|
|
382
|
+
background-color: white;
|
|
383
|
+
display: flex;
|
|
384
|
+
align-items: center;
|
|
385
|
+
justify-content: flex-end;
|
|
386
|
+
padding: 0 20px;
|
|
387
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
.forgot-password {
|
|
392
|
+
text-align: center;
|
|
393
|
+
margin-top: 16px;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.forgot-password a {
|
|
397
|
+
color: #007bff;
|
|
398
|
+
text-decoration: none;
|
|
399
|
+
font-size: 14px;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.forgot-password a:hover {
|
|
403
|
+
text-decoration: underline;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.profile-user-avatar {
|
|
407
|
+
width: 60px;
|
|
408
|
+
height: 60px;
|
|
409
|
+
border-radius: 50%;
|
|
410
|
+
background-color: var(--primary-color);
|
|
411
|
+
color: white;
|
|
412
|
+
display: flex;
|
|
413
|
+
justify-content: center;
|
|
414
|
+
align-items: center;
|
|
415
|
+
font-weight: bold;
|
|
416
|
+
font-size: 24px;
|
|
417
|
+
margin-right: 20px;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.modal-item {
|
|
421
|
+
display: flex;
|
|
422
|
+
align-items: center;
|
|
423
|
+
padding: 20px;
|
|
424
|
+
border-top: 1px solid #eee;
|
|
425
|
+
color: #000;
|
|
426
|
+
text-decoration: none;
|
|
427
|
+
transition: background-color 0.2s;
|
|
428
|
+
cursor: pointer;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.modal-item:hover {
|
|
432
|
+
background-color: #ddd;
|
|
433
|
+
color: black;
|
|
434
|
+
text-decoration: none;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.item-icon {
|
|
438
|
+
margin-right: 20px;
|
|
439
|
+
font-size: 20px;
|
|
440
|
+
min-width: 24px;
|
|
441
|
+
text-align: center;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.item-text {
|
|
445
|
+
flex-grow: 1;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.item-arrow svg {
|
|
449
|
+
height: 13px;
|
|
450
|
+
width: 13px;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
/* headings css */
|
|
455
|
+
|
|
456
|
+
.appscms-h1{
|
|
457
|
+
font-size: 50px;
|
|
458
|
+
font-weight: 700;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.appscms-h2{
|
|
462
|
+
font-size: 18px;
|
|
463
|
+
font-weight: 300;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
.container {
|
|
470
|
+
max-width: 1200px;
|
|
471
|
+
margin: 0 auto;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.category-nav {
|
|
475
|
+
display: flex;
|
|
476
|
+
justify-content: start;
|
|
477
|
+
gap: 8px;
|
|
478
|
+
overflow-x: auto;
|
|
479
|
+
padding: 10px 0;
|
|
480
|
+
scrollbar-width: thin;
|
|
481
|
+
scrollbar-color: #ddd transparent;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.category-nav::-webkit-scrollbar {
|
|
485
|
+
height: 6px;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.category-nav::-webkit-scrollbar-track {
|
|
489
|
+
background: transparent;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.category-nav::-webkit-scrollbar-thumb {
|
|
493
|
+
background: #ddd;
|
|
494
|
+
border-radius: 3px;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.category-tab {
|
|
498
|
+
padding: 12px 24px;
|
|
499
|
+
background: #f8f8f8;
|
|
500
|
+
border: none;
|
|
501
|
+
border-radius: 8px;
|
|
502
|
+
font-size: 15px;
|
|
503
|
+
font-weight: 500;
|
|
504
|
+
color: #333;
|
|
505
|
+
cursor: pointer;
|
|
506
|
+
transition: all 0.3s ease;
|
|
507
|
+
white-space: nowrap;
|
|
508
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.category-tab:hover {
|
|
512
|
+
background: #f8f8f8;
|
|
513
|
+
transform: translateY(-2px);
|
|
514
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.category-tab.active {
|
|
518
|
+
background: #333;
|
|
519
|
+
color: white;
|
|
520
|
+
box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
/* Content area for demonstration */
|
|
524
|
+
.content-area {
|
|
525
|
+
margin-top: 40px;
|
|
526
|
+
padding: 40px;
|
|
527
|
+
background: white;
|
|
528
|
+
border-radius: 12px;
|
|
529
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
530
|
+
min-height: 400px;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.content-area h2 {
|
|
534
|
+
color: #333;
|
|
535
|
+
margin-bottom: 20px;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.content-area p {
|
|
539
|
+
color: #666;
|
|
540
|
+
line-height: 1.6;
|
|
541
|
+
}
|
|
542
|
+
.image-item.hidden {
|
|
543
|
+
display: none;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.count-badge {
|
|
547
|
+
background: rgba(0, 0, 0, 0.1);
|
|
548
|
+
padding: 2px 8px;
|
|
549
|
+
border-radius: 10px;
|
|
550
|
+
font-size: 0.8em;
|
|
551
|
+
margin-left: 5px;
|
|
552
|
+
font-weight: bold;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.category-tab.active .count-badge {
|
|
556
|
+
background: #fff;
|
|
557
|
+
/* Active tab par white badge */
|
|
558
|
+
color: #000;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.tag-filter-section {
|
|
562
|
+
padding: 20px 0;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.tag-filters {
|
|
566
|
+
display: flex;
|
|
567
|
+
gap: 12px;
|
|
568
|
+
flex-wrap: wrap;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.tag {
|
|
572
|
+
padding: 8px 18px;
|
|
573
|
+
border-radius: 999px;
|
|
574
|
+
border: 1px solid #e5e7eb;
|
|
575
|
+
background: #fff;
|
|
576
|
+
font-size: 14px;
|
|
577
|
+
cursor: pointer;
|
|
578
|
+
transition: all 0.25s ease;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
/* Hover */
|
|
582
|
+
.tag:hover {
|
|
583
|
+
background: #f3f4f6;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
/* Active */
|
|
587
|
+
.tag.active {
|
|
588
|
+
background: #111827;
|
|
589
|
+
color: #fff;
|
|
590
|
+
border-color: #111827;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
/* Special tags */
|
|
594
|
+
.tag.hot {
|
|
595
|
+
border-color: #ef4444;
|
|
596
|
+
color: #ef4444;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.tag.trending {
|
|
600
|
+
border-color: #2563eb;
|
|
601
|
+
color: #2563eb;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
/* Active override for special */
|
|
605
|
+
.tag.hot.active {
|
|
606
|
+
background: #ef4444;
|
|
607
|
+
color: #fff;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.tag.trending.active {
|
|
611
|
+
background: #2563eb;
|
|
612
|
+
color: #fff;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.search-container {
|
|
616
|
+
max-width: 800px;
|
|
617
|
+
margin: 2rem auto;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.search {
|
|
621
|
+
position: relative;
|
|
622
|
+
width: 100%;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.search-input {
|
|
626
|
+
width: 100%;
|
|
627
|
+
padding: 16px 50px 16px 16px;
|
|
628
|
+
font-size: 15px;
|
|
629
|
+
border: 1px solid #e0e0e0;
|
|
630
|
+
border-radius: 12px;
|
|
631
|
+
outline: none;
|
|
632
|
+
background: #fff;
|
|
633
|
+
transition: all 0.3s ease;
|
|
634
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.search-input:focus {
|
|
638
|
+
border-color: #000;
|
|
639
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.search-input::placeholder {
|
|
643
|
+
color: #999;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.search-icon {
|
|
647
|
+
position: absolute;
|
|
648
|
+
right: 18px;
|
|
649
|
+
top: 50%;
|
|
650
|
+
transform: translateY(-50%);
|
|
651
|
+
color: #666;
|
|
652
|
+
pointer-events: none;
|
|
653
|
+
transition: color 0.3s ease;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.search-input:focus~.search-icon {
|
|
657
|
+
color: #000;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
/* Clear button */
|
|
661
|
+
.clear-btn {
|
|
662
|
+
position: absolute;
|
|
663
|
+
right: 16px;
|
|
664
|
+
top: 53%;
|
|
665
|
+
transform: translateY(-50%);
|
|
666
|
+
background: transparent;
|
|
667
|
+
border: none;
|
|
668
|
+
width: 30px;
|
|
669
|
+
height: 30px;
|
|
670
|
+
border-radius: 50%;
|
|
671
|
+
cursor: pointer;
|
|
672
|
+
display: none;
|
|
673
|
+
align-items: center;
|
|
674
|
+
justify-content: center;
|
|
675
|
+
transition: all 0.2s ease;
|
|
676
|
+
color: #000;
|
|
677
|
+
font-size: 2rem;
|
|
678
|
+
line-height: 1;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.clear-btn:hover {
|
|
682
|
+
background: #e0e0e0;
|
|
683
|
+
color: #000;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.search-input:not(:placeholder-shown)~.clear-btn {
|
|
687
|
+
display: flex;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
#try_style_btn {
|
|
691
|
+
background: #facc15e6;
|
|
692
|
+
color: #000;
|
|
693
|
+
/* width: 50px; */
|
|
694
|
+
/* height: 50px; */
|
|
695
|
+
position: absolute;
|
|
696
|
+
border: none;
|
|
697
|
+
/* top: 0; */
|
|
698
|
+
bottom: 10px;
|
|
699
|
+
right: 10px;
|
|
700
|
+
border-radius: 50px;
|
|
701
|
+
font-size: 12px;
|
|
702
|
+
padding: 8px 25px;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.image-gallery {
|
|
706
|
+
display: grid;
|
|
707
|
+
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
708
|
+
gap: 20px;
|
|
709
|
+
padding: 20px;
|
|
710
|
+
border-radius: 30px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.image-item {
|
|
714
|
+
position: relative;
|
|
715
|
+
border-radius: 30px;
|
|
716
|
+
overflow: hidden;
|
|
717
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
718
|
+
transition: transform 0.3s ease;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.image-item:hover {
|
|
722
|
+
transform: translateY(-5px);
|
|
723
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.image-item img {
|
|
727
|
+
width: 100%;
|
|
728
|
+
height: 100%;
|
|
729
|
+
object-fit: cover;
|
|
730
|
+
display: block;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
/* Responsive */
|
|
734
|
+
@media (max-width: 768px) {
|
|
735
|
+
.nav-item {
|
|
736
|
+
padding: 0.3rem 0 !important;
|
|
737
|
+
}
|
|
738
|
+
.side-modal{
|
|
739
|
+
width: 90%;
|
|
740
|
+
}
|
|
741
|
+
.auth-container {
|
|
742
|
+
padding: 30px 0;
|
|
743
|
+
}
|
|
744
|
+
.category-tab {
|
|
745
|
+
padding: 10px 20px;
|
|
746
|
+
font-size: 14px;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.content-area {
|
|
750
|
+
padding: 24px;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.appscms-h1{
|
|
754
|
+
font-size: 30px;
|
|
755
|
+
}
|
|
756
|
+
.appscms-h2{
|
|
757
|
+
font-size: 16px;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
}
|