appscms-tools-theme 4.8.7 → 4.8.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/.DS_Store +0 -0
- data/_data/feature/en/compress-pdf.json +7 -3
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/infographics/infographics.html +189 -99
- data/_layouts/appscms-batch.html +1 -6
- data/_layouts/appscms-calculator.html +86 -67
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +0 -398
- data/assets/css/appscms-theme.css +398 -0
- data/assets/js/.DS_Store +0 -0
- data/assets/js/appscms-theme.js +14 -10
- metadata +3 -2
@@ -1,398 +0,0 @@
|
|
1
|
-
.nav-tool-bar {
|
2
|
-
position: sticky;
|
3
|
-
top: 0;
|
4
|
-
width: 100%;
|
5
|
-
z-index: 999;
|
6
|
-
}
|
7
|
-
.appscms-upload-section {
|
8
|
-
height: 290px;
|
9
|
-
border: 2px dashed #484848;
|
10
|
-
padding: 20px;
|
11
|
-
border-radius: 20px;
|
12
|
-
display: flex;
|
13
|
-
align-items: center;
|
14
|
-
justify-content: center;
|
15
|
-
background-color: white;
|
16
|
-
gap: 10px;
|
17
|
-
}
|
18
|
-
.upload-btn {
|
19
|
-
text-align: center;
|
20
|
-
background-color: rgb(29, 22, 232);
|
21
|
-
color: white;
|
22
|
-
border-radius: 10px;
|
23
|
-
width: 195px;
|
24
|
-
height: 41px;
|
25
|
-
padding: 10px;
|
26
|
-
cursor: pointer;
|
27
|
-
}
|
28
|
-
.appscms-upload-section {
|
29
|
-
display: flex;
|
30
|
-
flex-direction: column;
|
31
|
-
box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.17);
|
32
|
-
}
|
33
|
-
|
34
|
-
.or-in-upload {
|
35
|
-
display: flex;
|
36
|
-
align-items: center;
|
37
|
-
gap: 8px;
|
38
|
-
font-size: 13px;
|
39
|
-
}
|
40
|
-
.line-in-upload {
|
41
|
-
height: 1.5px;
|
42
|
-
width: 60px;
|
43
|
-
background-color: rgb(146, 146, 146);
|
44
|
-
}
|
45
|
-
.appscms-feature-image {
|
46
|
-
max-width: 75px;
|
47
|
-
}
|
48
|
-
.appscms-feature-title {
|
49
|
-
font-size: 17px;
|
50
|
-
margin-top: 15px;
|
51
|
-
font-weight: 600;
|
52
|
-
margin-bottom: 0.5rem;
|
53
|
-
}
|
54
|
-
|
55
|
-
.appscms-feature-description {
|
56
|
-
font-size: 14px;
|
57
|
-
line-height: 22px;
|
58
|
-
margin-bottom: 0;
|
59
|
-
}
|
60
|
-
|
61
|
-
/* how to section */
|
62
|
-
.appscms-how-to-section {
|
63
|
-
border-radius: 10px;
|
64
|
-
background-color: #f4f5ff;
|
65
|
-
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
|
66
|
-
}
|
67
|
-
.appscms-howto-heading {
|
68
|
-
/* margin-top: 40px; */
|
69
|
-
font-size: 25px;
|
70
|
-
font-weight: 500;
|
71
|
-
}
|
72
|
-
.how-to-video-wrapper {
|
73
|
-
display: flex;
|
74
|
-
align-items: center;
|
75
|
-
justify-content: center;
|
76
|
-
height: 100%;
|
77
|
-
}
|
78
|
-
|
79
|
-
.appscms-howto-steps {
|
80
|
-
font-size: 1rem;
|
81
|
-
font-weight: normal;
|
82
|
-
line-height: 200%;
|
83
|
-
}
|
84
|
-
|
85
|
-
/* faq section */
|
86
|
-
.faq-section {
|
87
|
-
text-align: left;
|
88
|
-
}
|
89
|
-
|
90
|
-
.faq-item {
|
91
|
-
box-shadow: 5px 2px 8px rgba(0, 0, 0, 0.1);
|
92
|
-
margin-bottom: 15px;
|
93
|
-
background: white;
|
94
|
-
padding: 1.5rem;
|
95
|
-
border-radius: 7px;
|
96
|
-
}
|
97
|
-
|
98
|
-
.faq-question {
|
99
|
-
font-size: 25px;
|
100
|
-
font-weight: 500;
|
101
|
-
|
102
|
-
margin-bottom: 10px;
|
103
|
-
}
|
104
|
-
|
105
|
-
.faq-answer {
|
106
|
-
font-size: 16px;
|
107
|
-
font-weight: normal;
|
108
|
-
margin-bottom: 20px;
|
109
|
-
}
|
110
|
-
|
111
|
-
.faq-answer-list {
|
112
|
-
font-size: 17px;
|
113
|
-
font-weight: normal;
|
114
|
-
margin-left: 20px;
|
115
|
-
}
|
116
|
-
|
117
|
-
/* recent posts */
|
118
|
-
.appscms-recentposts {
|
119
|
-
font-size: 30px;
|
120
|
-
}
|
121
|
-
|
122
|
-
/* rating section */
|
123
|
-
.ratings {
|
124
|
-
display: flex;
|
125
|
-
justify-content: center;
|
126
|
-
align-items: center;
|
127
|
-
background-color: rgb(252, 252, 252);
|
128
|
-
border-radius: 50px;
|
129
|
-
height: 70px;
|
130
|
-
/* color: #000000; */
|
131
|
-
}
|
132
|
-
|
133
|
-
.appsms-user-rating-count {
|
134
|
-
font-size: 25px;
|
135
|
-
font-weight: 600;
|
136
|
-
}
|
137
|
-
.appsms-user-total-count {
|
138
|
-
position: relative;
|
139
|
-
right: 20px;
|
140
|
-
top: 2px;
|
141
|
-
}
|
142
|
-
|
143
|
-
@media (max-width: 768px) {
|
144
|
-
.upload-btn {
|
145
|
-
width: 268px;
|
146
|
-
padding: 15px;
|
147
|
-
border-radius: 50px;
|
148
|
-
font-size: 20px;
|
149
|
-
height: auto;
|
150
|
-
}
|
151
|
-
.upload-from-drives img {
|
152
|
-
height: 40px;
|
153
|
-
width: 40px;
|
154
|
-
}
|
155
|
-
.drag-msg {
|
156
|
-
display: none;
|
157
|
-
}
|
158
|
-
.appscms-upload-section {
|
159
|
-
height: 100px;
|
160
|
-
margin-top: 20px;
|
161
|
-
background-color: transparent;
|
162
|
-
box-shadow: none;
|
163
|
-
border: none;
|
164
|
-
}
|
165
|
-
.appscms-upload-icon,
|
166
|
-
.or-in-upload {
|
167
|
-
display: none;
|
168
|
-
}
|
169
|
-
.rating-tool {
|
170
|
-
flex-direction: column;
|
171
|
-
display: flex;
|
172
|
-
gap: 15px;
|
173
|
-
height: auto;
|
174
|
-
padding: 15px 0px;
|
175
|
-
}
|
176
|
-
.heading {
|
177
|
-
padding-top: 70px;
|
178
|
-
text-align: center;
|
179
|
-
display: flex;
|
180
|
-
align-items: center;
|
181
|
-
justify-content: center;
|
182
|
-
}
|
183
|
-
.heading h1 {
|
184
|
-
font-weight: 600;
|
185
|
-
font-size: 30px;
|
186
|
-
}
|
187
|
-
.heading h2 {
|
188
|
-
width: 80vw;
|
189
|
-
font-size: 14px;
|
190
|
-
text-align: center;
|
191
|
-
}
|
192
|
-
|
193
|
-
.appscms-how-to-section {
|
194
|
-
border-radius: 0px;
|
195
|
-
background-color: transparent;
|
196
|
-
box-shadow: none;
|
197
|
-
}
|
198
|
-
.appscms-howto-heading {
|
199
|
-
text-align: center;
|
200
|
-
margin-top: 40px;
|
201
|
-
font-size: 23px;
|
202
|
-
font-weight: 500;
|
203
|
-
}
|
204
|
-
|
205
|
-
.appscms-howto-steps {
|
206
|
-
font-size: 12px;
|
207
|
-
font-weight: normal;
|
208
|
-
line-height: 200%;
|
209
|
-
}
|
210
|
-
/* recent posts */
|
211
|
-
.appscms-recentposts {
|
212
|
-
font-size: 25px;
|
213
|
-
}
|
214
|
-
|
215
|
-
/* faq section */
|
216
|
-
.faq-question {
|
217
|
-
font-size: 22px;
|
218
|
-
margin-bottom: 18px;
|
219
|
-
}
|
220
|
-
|
221
|
-
.faq-answer {
|
222
|
-
font-size: 18px;
|
223
|
-
margin-bottom: 2px;
|
224
|
-
}
|
225
|
-
|
226
|
-
.faq-answer-list {
|
227
|
-
font-size: 11px;
|
228
|
-
}
|
229
|
-
}
|
230
|
-
|
231
|
-
.upload-redirect {
|
232
|
-
padding: 13px 1.5em 14px 1.5em;
|
233
|
-
color: #fff;
|
234
|
-
background-color: #5c5ce0;
|
235
|
-
border-color: #5c5ce0;
|
236
|
-
border-radius: 27px;
|
237
|
-
font-size: 18px;
|
238
|
-
font-weight: 600;
|
239
|
-
border: none;
|
240
|
-
}
|
241
|
-
|
242
|
-
#left-section {
|
243
|
-
display: flex;
|
244
|
-
flex-direction: column;
|
245
|
-
align-items: baseline;
|
246
|
-
justify-content: center;
|
247
|
-
}
|
248
|
-
|
249
|
-
.right-section img {
|
250
|
-
width: 90%;
|
251
|
-
}
|
252
|
-
|
253
|
-
#left-section h1,
|
254
|
-
#left-section h2 {
|
255
|
-
text-align: left;
|
256
|
-
width: 100%;
|
257
|
-
}
|
258
|
-
|
259
|
-
.video-h1,
|
260
|
-
.audio-h1 {
|
261
|
-
font-weight: 600;
|
262
|
-
font-size: 53px;
|
263
|
-
}
|
264
|
-
.toaster {
|
265
|
-
top: 150px;
|
266
|
-
padding: 12px 20px;
|
267
|
-
color: #fff;
|
268
|
-
display: inline-block;
|
269
|
-
box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%),
|
270
|
-
0 10px 36px -4px rgb(77 96 232 / 30%);
|
271
|
-
background: var(--primary-color);
|
272
|
-
position: fixed;
|
273
|
-
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
|
274
|
-
border-radius: 2px;
|
275
|
-
right: 0px;
|
276
|
-
cursor: pointer;
|
277
|
-
text-decoration: none;
|
278
|
-
max-width: calc(50% - 20px);
|
279
|
-
z-index: 2147483647;
|
280
|
-
}
|
281
|
-
.inforgraphics_section {
|
282
|
-
width: 100%;
|
283
|
-
padding: 50px 0px 50px 0px;
|
284
|
-
border-top: 1px solid rgb(224, 224, 224);
|
285
|
-
display: flex;
|
286
|
-
flex-direction: column;
|
287
|
-
align-items: center;
|
288
|
-
}
|
289
|
-
|
290
|
-
.inforgraphics_section .wrapper {
|
291
|
-
display: flex;
|
292
|
-
max-width: 90%;
|
293
|
-
position: relative;
|
294
|
-
}
|
295
|
-
|
296
|
-
.inforgraphics_section .wrapper i {
|
297
|
-
top: 50%;
|
298
|
-
height: 44px;
|
299
|
-
width: 44px;
|
300
|
-
color: #343f4f;
|
301
|
-
cursor: pointer;
|
302
|
-
font-size: 1.15rem;
|
303
|
-
position: absolute;
|
304
|
-
text-align: center;
|
305
|
-
line-height: 44px;
|
306
|
-
background: #eee;
|
307
|
-
border-radius: 50%;
|
308
|
-
transform: translateY(-50%);
|
309
|
-
transition: transform 0.1s linear;
|
310
|
-
}
|
311
|
-
|
312
|
-
.inforgraphics_section .wrapper i:active {
|
313
|
-
transform: translateY(-50%) scale(0.9);
|
314
|
-
}
|
315
|
-
|
316
|
-
.inforgraphics_section .wrapper i:hover {
|
317
|
-
background: #f2f2f2;
|
318
|
-
}
|
319
|
-
|
320
|
-
.inforgraphics_section .wrapper i:first-child {
|
321
|
-
left: 0px;
|
322
|
-
display: none;
|
323
|
-
z-index: 999;
|
324
|
-
}
|
325
|
-
|
326
|
-
.inforgraphics_section .wrapper i:last-child {
|
327
|
-
right: 0px;
|
328
|
-
}
|
329
|
-
|
330
|
-
.carousel {
|
331
|
-
display: flex;
|
332
|
-
max-width: 100%;
|
333
|
-
overflow-x: scroll;
|
334
|
-
scroll-snap-type: x mandatory;
|
335
|
-
scroll-behavior: smooth;
|
336
|
-
}
|
337
|
-
|
338
|
-
.carousel-inner {
|
339
|
-
display: flex;
|
340
|
-
flex-wrap: nowrap;
|
341
|
-
justify-content: center;
|
342
|
-
}
|
343
|
-
@media screen and (max-width: 768px) {
|
344
|
-
.carousel-inner {
|
345
|
-
justify-content: normal;
|
346
|
-
}
|
347
|
-
}
|
348
|
-
.slide {
|
349
|
-
flex: 0 0 calc(100% / 3);
|
350
|
-
scroll-snap-align: start;
|
351
|
-
padding: 20px;
|
352
|
-
}
|
353
|
-
|
354
|
-
.carousel img {
|
355
|
-
width: 100%;
|
356
|
-
object-fit: contain;
|
357
|
-
max-width: 100%;
|
358
|
-
height: auto;
|
359
|
-
border-radius: 8px;
|
360
|
-
}
|
361
|
-
|
362
|
-
.carousel-inner p {
|
363
|
-
text-align: center;
|
364
|
-
margin: 10px 0;
|
365
|
-
font-size: 14px;
|
366
|
-
white-space: normal;
|
367
|
-
word-wrap: break-word;
|
368
|
-
}
|
369
|
-
|
370
|
-
@media screen and (max-width: 768px) {
|
371
|
-
.inforgraphics_section .wrapper {
|
372
|
-
max-width: 100%;
|
373
|
-
}
|
374
|
-
|
375
|
-
.carousel-inner p {
|
376
|
-
font-size: 20px;
|
377
|
-
}
|
378
|
-
|
379
|
-
.inforgraphics_section .wrapper i:first-child {
|
380
|
-
left: 0;
|
381
|
-
z-index: 99;
|
382
|
-
}
|
383
|
-
|
384
|
-
.inforgraphics_section .wrapper i:last-child {
|
385
|
-
right: 0;
|
386
|
-
z-index: 99;
|
387
|
-
display: block !important;
|
388
|
-
}
|
389
|
-
|
390
|
-
.carousel {
|
391
|
-
overflow-x: hidden;
|
392
|
-
}
|
393
|
-
|
394
|
-
.slide {
|
395
|
-
flex: 0 0 100%;
|
396
|
-
margin-right: 0;
|
397
|
-
}
|
398
|
-
}
|