appscms-tools-theme 3.7.6 → 3.7.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/feature/en/3_shop_posters.json +8 -8
- data/_data/feature/en/allele-frequency.json +1 -1
- data/_data/feature/en/batch-conversion.json +1 -1
- data/_data/feature/en/compress-pdf.json +1 -1
- data/_data/feature/en/devtools.json +1 -1
- data/_data/feature/en/face-detection.json +1 -1
- data/_data/feature/en/split-pdf.json +1 -1
- data/_data/feature/en/theframe.json +1 -1
- data/_data/feature/hi/compress-pdf.json +1 -1
- data/_data/feature/tr/compress-pdf.json +1 -1
- data/_data/header/en/data.json +2 -2
- data/_data/home/en/en.json +1 -1
- data/_data/home/en/photoeffects.json +1 -1
- data/_data/home-1/en/en.json +1 -1
- data/_includes/.DS_Store +0 -0
- data/_includes/appscms/category-tabs/category-tabs.html +17 -0
- data/_includes/appscms/extras/ratings.html +33 -0
- data/_includes/appscms/extras/recent-posts.html +1 -0
- data/_includes/appscms/extras/traffic-count.html +21 -0
- data/_includes/appscms/faq/faq.html +46 -0
- data/_includes/appscms/featurehighlight/featurehighlight.html +56 -0
- data/_includes/appscms/footer/footer.html +283 -0
- data/_includes/appscms/footer/products.html +40 -0
- data/_includes/appscms/head/head.html +611 -0
- data/_includes/appscms/headings/headings.html +19 -0
- data/_includes/appscms/home/feature-boxes.html +21 -0
- data/_includes/appscms/howto/howto.html +74 -0
- data/_includes/appscms/navbars/navbar.html +50 -0
- data/_includes/appscms/navbars/toolbar.html +49 -0
- data/_includes/appscms/recent-posts/recent-posts.html +90 -0
- data/_includes/appscms/scripts/script.html +135 -0
- data/_includes/appscms/searchbar/searchbar.html +22 -0
- data/_includes/appscms/uploadbutton/uploadbutton.html +44 -0
- data/_layouts/appscms-blog.html +31 -0
- data/_layouts/appscms-feature.html +32 -0
- data/_layouts/appscms-home.html +27 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +362 -0
- data/assets/css/appscms-home.css +0 -0
- data/assets/css/appscms-theme.css +780 -0
- data/assets/document.png +0 -0
- data/assets/dropbox.png +0 -0
- data/assets/gdrive.png +0 -0
- data/assets/js/appscms-theme.js +62 -0
- metadata +31 -2
@@ -0,0 +1,362 @@
|
|
1
|
+
/* upload page css*/
|
2
|
+
|
3
|
+
.nav-tool-bar {
|
4
|
+
position: sticky;
|
5
|
+
top: 0;
|
6
|
+
width: 100%;
|
7
|
+
z-index: 999;
|
8
|
+
}
|
9
|
+
|
10
|
+
/* uplaod section */
|
11
|
+
|
12
|
+
.appscms-upload-section {
|
13
|
+
height: 300px;
|
14
|
+
border: 2px dotted #484848;
|
15
|
+
padding: 20px;
|
16
|
+
border-radius: 20px;
|
17
|
+
display: flex;
|
18
|
+
align-items: center;
|
19
|
+
justify-content: center;
|
20
|
+
background-color: white;
|
21
|
+
gap: 10px;
|
22
|
+
}
|
23
|
+
.upload-btn {
|
24
|
+
padding: 10px;
|
25
|
+
cursor: pointer;
|
26
|
+
}
|
27
|
+
.upload-btn {
|
28
|
+
text-align: center;
|
29
|
+
background-color: rgb(29, 22, 232);
|
30
|
+
color: white;
|
31
|
+
border-radius: 10px;
|
32
|
+
width: 195px;
|
33
|
+
height: 41px;
|
34
|
+
}
|
35
|
+
|
36
|
+
.appscms-upload-section {
|
37
|
+
display: flex;
|
38
|
+
flex-direction: column;
|
39
|
+
box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.17);
|
40
|
+
}
|
41
|
+
|
42
|
+
.or-in-upload {
|
43
|
+
display: flex;
|
44
|
+
align-items: center;
|
45
|
+
gap: 8px;
|
46
|
+
font-size: 13px;
|
47
|
+
}
|
48
|
+
.line-in-upload {
|
49
|
+
height: 1.5px;
|
50
|
+
width: 60px;
|
51
|
+
background-color: rgb(146, 146, 146);
|
52
|
+
}
|
53
|
+
|
54
|
+
/* feature section */
|
55
|
+
.appscms-feature-image {
|
56
|
+
max-width: 75px;
|
57
|
+
}
|
58
|
+
|
59
|
+
.appscms-feature-title {
|
60
|
+
font-size: 17px;
|
61
|
+
margin-top: 15px;
|
62
|
+
font-weight: 600;
|
63
|
+
margin-bottom: 0.5rem;
|
64
|
+
}
|
65
|
+
|
66
|
+
.appscms-feature-description {
|
67
|
+
font-size: 14px;
|
68
|
+
line-height: 22px;
|
69
|
+
margin-bottom: 0;
|
70
|
+
}
|
71
|
+
|
72
|
+
/* how to section */
|
73
|
+
.appscms-how-to-section {
|
74
|
+
border-radius: 10px;
|
75
|
+
background-color: #f4f5ff;
|
76
|
+
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
|
77
|
+
}
|
78
|
+
.appscms-howto-heading {
|
79
|
+
/* margin-top: 40px; */
|
80
|
+
font-size: 2.5rem;
|
81
|
+
font-weight: 500;
|
82
|
+
}
|
83
|
+
|
84
|
+
.appscms-howto-steps {
|
85
|
+
font-size: 1rem;
|
86
|
+
font-weight: normal;
|
87
|
+
line-height: 200%;
|
88
|
+
}
|
89
|
+
|
90
|
+
/* faq section */
|
91
|
+
.faq-section {
|
92
|
+
text-align: left;
|
93
|
+
}
|
94
|
+
|
95
|
+
.faq-item {
|
96
|
+
margin-bottom: 40px;
|
97
|
+
}
|
98
|
+
|
99
|
+
.faq-question {
|
100
|
+
font-size: 27px;
|
101
|
+
font-weight: 500;
|
102
|
+
line-height: 194%;
|
103
|
+
margin-bottom: 10px;
|
104
|
+
}
|
105
|
+
|
106
|
+
.faq-answer {
|
107
|
+
font-size: 17px;
|
108
|
+
font-weight: normal;
|
109
|
+
margin-bottom: 20px;
|
110
|
+
}
|
111
|
+
|
112
|
+
.faq-answer-list {
|
113
|
+
font-size: 17px;
|
114
|
+
font-weight: normal;
|
115
|
+
margin-left: 20px;
|
116
|
+
}
|
117
|
+
|
118
|
+
/* recent posts */
|
119
|
+
.appscms-recentposts {
|
120
|
+
font-size: 30px;
|
121
|
+
}
|
122
|
+
|
123
|
+
/* rating section */
|
124
|
+
.ratings {
|
125
|
+
display: flex;
|
126
|
+
justify-content: center;
|
127
|
+
align-items: center;
|
128
|
+
background-color: rgb(252, 252, 252);
|
129
|
+
border-radius: 50px;
|
130
|
+
height: 70px;
|
131
|
+
/* color: #000000; */
|
132
|
+
}
|
133
|
+
|
134
|
+
.appsms-user-rating-count {
|
135
|
+
font-size: 25px;
|
136
|
+
font-weight: 600;
|
137
|
+
}
|
138
|
+
.appsms-user-total-count {
|
139
|
+
position: relative;
|
140
|
+
right: 20px;
|
141
|
+
top: 2px;
|
142
|
+
}
|
143
|
+
|
144
|
+
@media (min-width: 768px) {
|
145
|
+
.appscms-h1 {
|
146
|
+
margin-top: 50px !important;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
@media (max-width: 768px) {
|
151
|
+
.heading {
|
152
|
+
padding-top: 0px;
|
153
|
+
text-align: center;
|
154
|
+
display: flex;
|
155
|
+
align-items: center;
|
156
|
+
justify-content: center;
|
157
|
+
}
|
158
|
+
.heading h1 {
|
159
|
+
font-weight: 600;
|
160
|
+
font-size: 30px;
|
161
|
+
}
|
162
|
+
.heading h2 {
|
163
|
+
width: 80vw;
|
164
|
+
font-size: 11px;
|
165
|
+
text-align: center;
|
166
|
+
}
|
167
|
+
.appscms-upload-section-container {
|
168
|
+
padding: 0;
|
169
|
+
position: relative;
|
170
|
+
bottom: 30px;
|
171
|
+
}
|
172
|
+
.appscms-upload-section {
|
173
|
+
height: 0;
|
174
|
+
border: none;
|
175
|
+
background-color: transparent;
|
176
|
+
justify-content: center;
|
177
|
+
align-items: center;
|
178
|
+
flex-direction: column;
|
179
|
+
box-shadow: none;
|
180
|
+
}
|
181
|
+
.appscms-upload-icon {
|
182
|
+
display: none;
|
183
|
+
}
|
184
|
+
.appscms-upload-section > *:not(form) {
|
185
|
+
display: none;
|
186
|
+
}
|
187
|
+
.upload-btn {
|
188
|
+
display: flex;
|
189
|
+
justify-content: center;
|
190
|
+
align-items: center;
|
191
|
+
text-align: center;
|
192
|
+
color: white;
|
193
|
+
border-radius: 27px;
|
194
|
+
width: 200px;
|
195
|
+
height: 78px;
|
196
|
+
font-size: 20px;
|
197
|
+
}
|
198
|
+
|
199
|
+
/* featuer section media query */
|
200
|
+
|
201
|
+
.appscms-feature-image {
|
202
|
+
width: 30px;
|
203
|
+
height: 30px;
|
204
|
+
}
|
205
|
+
.appscms-feature-title {
|
206
|
+
font-size: 14px;
|
207
|
+
font-weight: 600;
|
208
|
+
}
|
209
|
+
.appscms-feature-description {
|
210
|
+
font-size: 12px;
|
211
|
+
}
|
212
|
+
|
213
|
+
/* how to section */
|
214
|
+
.appscms-howto-image {
|
215
|
+
display: none;
|
216
|
+
}
|
217
|
+
.appscms-how-to-section {
|
218
|
+
border-radius: 0px;
|
219
|
+
background-color: transparent;
|
220
|
+
box-shadow: none;
|
221
|
+
}
|
222
|
+
.appscms-howto-heading {
|
223
|
+
text-align: center;
|
224
|
+
margin-top: 40px;
|
225
|
+
font-size: 23px;
|
226
|
+
font-weight: 500;
|
227
|
+
}
|
228
|
+
|
229
|
+
.appscms-howto-steps {
|
230
|
+
font-size: 12px;
|
231
|
+
font-weight: normal;
|
232
|
+
line-height: 200%;
|
233
|
+
}
|
234
|
+
/* recent posts */
|
235
|
+
.appscms-recentposts {
|
236
|
+
font-size: 25px;
|
237
|
+
}
|
238
|
+
|
239
|
+
/* faq section */
|
240
|
+
.faq-question {
|
241
|
+
font-size: 20px;
|
242
|
+
margin-bottom: 5px;
|
243
|
+
}
|
244
|
+
|
245
|
+
.faq-answer {
|
246
|
+
font-size: 12px;
|
247
|
+
margin-bottom: 2px;
|
248
|
+
}
|
249
|
+
|
250
|
+
.faq-answer-list {
|
251
|
+
font-size: 11px;
|
252
|
+
}
|
253
|
+
|
254
|
+
/* ratins */
|
255
|
+
.ratings {
|
256
|
+
/* gap: 2px; */
|
257
|
+
/* padding: 2px; */
|
258
|
+
/* background: transparent; */
|
259
|
+
box-shadow: none !important;
|
260
|
+
}
|
261
|
+
.appsms-user-rating-count {
|
262
|
+
/* font-size: 16px !important; */
|
263
|
+
}
|
264
|
+
.appsms-user-total-count {
|
265
|
+
display: none;
|
266
|
+
}
|
267
|
+
.ratings span {
|
268
|
+
/* font-size: 13px; */
|
269
|
+
padding: 4px;
|
270
|
+
}
|
271
|
+
.raing-votes {
|
272
|
+
/* font-size: 13px !important; */
|
273
|
+
color: rgb(84, 84, 84);
|
274
|
+
/* display: none; */
|
275
|
+
}
|
276
|
+
}
|
277
|
+
@media (max-width: 478px) {
|
278
|
+
body {
|
279
|
+
background-color: rgb(248, 248, 248);
|
280
|
+
}
|
281
|
+
.ratings {
|
282
|
+
/* gap: 2px; */
|
283
|
+
/* padding: 2px; */
|
284
|
+
/* background: transparent; */
|
285
|
+
box-shadow: none !important;
|
286
|
+
}
|
287
|
+
|
288
|
+
/* mobile screen feaure section media query */
|
289
|
+
.appscms-feature-image {
|
290
|
+
width: 30px;
|
291
|
+
height: 30px;
|
292
|
+
}
|
293
|
+
.appscms-feature-title {
|
294
|
+
font-size: 12px;
|
295
|
+
font-weight: 600;
|
296
|
+
}
|
297
|
+
.appscms-feature-description {
|
298
|
+
font-size: 11px;
|
299
|
+
}
|
300
|
+
.appscms-feature-description .card-text {
|
301
|
+
display: none;
|
302
|
+
}
|
303
|
+
.appscms-feature-description .card {
|
304
|
+
text-align: center;
|
305
|
+
}
|
306
|
+
.appscms-feature-description .card-img-top {
|
307
|
+
display: block;
|
308
|
+
margin: 0 auto;
|
309
|
+
}
|
310
|
+
.appscms-feature-description .card-body {
|
311
|
+
text-align: center;
|
312
|
+
}
|
313
|
+
.appscms-feature-description .card-title {
|
314
|
+
margin-top: 10px;
|
315
|
+
margin-bottom: 0;
|
316
|
+
}
|
317
|
+
/* how to section mobile */
|
318
|
+
.appscms-how-to-section {
|
319
|
+
border-radius: 0px;
|
320
|
+
background-color: transparent;
|
321
|
+
box-shadow: none;
|
322
|
+
}
|
323
|
+
.appscms-howto-heading {
|
324
|
+
text-align: center;
|
325
|
+
margin-top: 0px;
|
326
|
+
font-size: 20px;
|
327
|
+
font-weight: 500;
|
328
|
+
background-color: white;
|
329
|
+
width: 100vw;
|
330
|
+
}
|
331
|
+
|
332
|
+
.appscms-howto-steps {
|
333
|
+
font-size: 12px;
|
334
|
+
font-weight: normal;
|
335
|
+
line-height: 200%;
|
336
|
+
}
|
337
|
+
|
338
|
+
/* faq section media query */
|
339
|
+
/* recent posts */
|
340
|
+
.appscms-recentposts {
|
341
|
+
font-size: 25px;
|
342
|
+
}
|
343
|
+
/* rating section */
|
344
|
+
|
345
|
+
.appsms-user-rating-count {
|
346
|
+
/* font-size: 16px !important; */
|
347
|
+
}
|
348
|
+
.appsms-user-total-count {
|
349
|
+
display: none;
|
350
|
+
}
|
351
|
+
.ratings span {
|
352
|
+
/* font-size: 13px; */
|
353
|
+
padding: 4px;
|
354
|
+
}
|
355
|
+
.raing-votes {
|
356
|
+
/* font-size: 13px !important; */
|
357
|
+
color: rgb(84, 84, 84);
|
358
|
+
display: none;
|
359
|
+
}
|
360
|
+
}
|
361
|
+
|
362
|
+
/* faq section media queries */
|
File without changes
|