appscms-tools-theme 3.8.5 → 3.8.6
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/header/en/data.json +1 -1
- data/_data/home/en/en.json +54 -26
- data/_includes/appscms/extras/ratings.html +1 -1
- data/_includes/appscms/faq/faq.html +6 -10
- data/_includes/appscms/featurehighlight/featurehighlight.html +45 -45
- data/_includes/appscms/footer/footer.html +3 -22
- data/_includes/appscms/head/head.html +2 -1
- data/_includes/appscms/headings/headings.html +3 -1
- data/_includes/appscms/home/feature-boxes.html +1 -1
- data/_includes/appscms/howto/howto.html +1 -1
- data/_includes/appscms/recent-posts/recent-posts.html +8 -8
- data/_includes/appscms/scripts/script.html +11 -11
- data/_includes/appscms/searchbar/searchbar.html +20 -6
- data/_includes/appscms/uploadbutton/uploadbutton.html +15 -9
- data/_layouts/appscms-audio.html +33 -0
- data/_layouts/appscms-download.html +24 -24
- data/_layouts/appscms-feature.html +17 -3
- data/_layouts/appscms-home.html +19 -4
- data/_layouts/appscms-video.html +33 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/appscms-feature.css +90 -167
- data/assets/css/appscms-theme.css +40 -9
- data/assets/images/.DS_Store +0 -0
- data/assets/images/document.png +0 -0
- data/assets/images/video.png +0 -0
- data/assets/js/appscms-search.js +101 -0
- data/assets/js/appscms-theme.js +80 -41
- metadata +7 -3
- data/assets/images/image.webp +0 -0
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
</div>
|
|
29
29
|
|
|
30
30
|
</div>
|
|
31
|
-
<div class="col-lg-7 col-md-9 col-sm-
|
|
31
|
+
<div class="col-lg-7 col-md-9 col-sm-11 text-center mx-auto">
|
|
32
32
|
<img id="rating-img" loading='lazy' src="/assets/images/rating.png" alt="rating-img" {%- if
|
|
33
33
|
site.crossorigin -%} crossorigin {%- endif -%}>
|
|
34
34
|
<div class="rating-tool" style="border: none;">
|
|
@@ -116,15 +116,15 @@
|
|
|
116
116
|
}))
|
|
117
117
|
</script>
|
|
118
118
|
</div>
|
|
119
|
-
<div class="try-more-features ">
|
|
119
|
+
<div class="try-more-features mt-4 ">
|
|
120
120
|
<h2 class="appscms-heading"> {{downloadData.tryfeatureheading | default: 'You can also
|
|
121
121
|
try
|
|
122
122
|
These features'
|
|
123
123
|
}} </h2>
|
|
124
|
-
<div class="feature-showcase ">
|
|
124
|
+
<div class="feature-showcase row">
|
|
125
125
|
{%- if downloadData.recommendedfeatures -%}
|
|
126
126
|
{%- for item in downloadData.recommendedfeatures -%}
|
|
127
|
-
<div>
|
|
127
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
128
128
|
|
|
129
129
|
<a class="px-2 feature-showcase-div w-100 d-flex justify-content-between " href="{{item.url}}">
|
|
130
130
|
<img src="{{item.logo}}" loading="lazy" alt="feature-logo" {%- if site.crossorigin -%}
|
|
@@ -139,19 +139,17 @@
|
|
|
139
139
|
</div>
|
|
140
140
|
</div>
|
|
141
141
|
</div>
|
|
142
|
-
<div class="row w-100 px-3">
|
|
143
|
-
<div class="col-12">
|
|
144
|
-
{%- if downloadData.recommendedsitesheading -%}
|
|
145
|
-
<p class="appscms-heading my-5">{{downloadData.recommendedsitesheading}}</p>
|
|
146
|
-
{%- else -%}
|
|
147
|
-
<p class="appscms-heading my-5">Try our other sites for safe processing of you files ! </p>
|
|
148
|
-
{%- endif -%}
|
|
149
|
-
</div>
|
|
150
142
|
|
|
143
|
+
{%- if downloadData.recommendedsitesheading -%}
|
|
144
|
+
<p class="appscms-heading col-12">{{downloadData.recommendedsitesheading}}</p>
|
|
145
|
+
{%- else -%}
|
|
146
|
+
<p class="appscms-heading col-12">Try our other sites for safe processing of you files ! </p>
|
|
147
|
+
{%- endif -%}
|
|
148
|
+
<div class="row w-100 px-3 website-showcases">
|
|
151
149
|
{%- if downloadData.recommendedsites -%}
|
|
152
150
|
{%- assign recommendedsitesData = downloadData.recommendedsites -%}
|
|
153
151
|
{%- for item in recommendedsitesData -%}
|
|
154
|
-
<div class="col-md-4">
|
|
152
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
155
153
|
<div class="website-showcase">
|
|
156
154
|
<img loading='lazy' class="website-img" src="{{item.logo}}" alt="{{item.name}} logo" {%- if
|
|
157
155
|
site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a target="_blank"
|
|
@@ -159,7 +157,7 @@
|
|
|
159
157
|
</div>
|
|
160
158
|
{%- endfor -%}
|
|
161
159
|
{%- else -%}
|
|
162
|
-
<div class="col-md-4">
|
|
160
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
163
161
|
<div class="website-showcase">
|
|
164
162
|
<img loading='lazy' class="website-img"
|
|
165
163
|
src="https://d33wubrfki0l68.cloudfront.net/0623ca017395ac8b757b16b645ff38a89963b01b/a43c6/assets/logo.svg"
|
|
@@ -167,7 +165,7 @@
|
|
|
167
165
|
target="_blank" href="https://safepdfkit.com">Safepdfkit.com</a>
|
|
168
166
|
</div>
|
|
169
167
|
</div>
|
|
170
|
-
<div class="col-md-4">
|
|
168
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
171
169
|
<div class="website-showcase">
|
|
172
170
|
<img class="website-img" loading='lazy'
|
|
173
171
|
src="https://d33wubrfki0l68.cloudfront.net/796c1a01dae9c2d10224fd72a820156974b26ab1/3b885/assets/images/logo.png"
|
|
@@ -175,7 +173,7 @@
|
|
|
175
173
|
target="_blank" href="https://safeaudiokit.com">safeaudiokit.com</a>
|
|
176
174
|
</div>
|
|
177
175
|
</div>
|
|
178
|
-
<div class="col-md-4">
|
|
176
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
179
177
|
<div class="website-showcase">
|
|
180
178
|
<img class="website-img" loading="lazy"
|
|
181
179
|
src="https://d33wubrfki0l68.cloudfront.net/ab0207d780c019c54db62b002396bc8c3fddddaf/9abb9/assets/safevideokit.svg"
|
|
@@ -183,7 +181,7 @@
|
|
|
183
181
|
target="_blank" href="https://safevideokit.com">safevideokit.com</a>
|
|
184
182
|
</div>
|
|
185
183
|
</div>
|
|
186
|
-
<div class="col-md-4 ">
|
|
184
|
+
<div class="col-md-4 col-sm-6 col-6 ">
|
|
187
185
|
<div class="website-showcase">
|
|
188
186
|
<img loading='lazy' class="website-img"
|
|
189
187
|
src="https://d33wubrfki0l68.cloudfront.net/2e37a1020563aa528471da7425b8e58343e2baf7/a186c/picture.png"
|
|
@@ -191,7 +189,7 @@
|
|
|
191
189
|
target="_blank" href="https://safeimagekit.com/">safeimagekit.com</a>
|
|
192
190
|
</div>
|
|
193
191
|
</div>
|
|
194
|
-
<div class="col-md-4">
|
|
192
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
195
193
|
<div class="website-showcase">
|
|
196
194
|
<img loading='lazy' class="website-img"
|
|
197
195
|
src="https://d33wubrfki0l68.cloudfront.net/74bf3f3836d56b30d16137169cd4c28bf15494ed/11962/js/pt.png"
|
|
@@ -199,7 +197,7 @@
|
|
|
199
197
|
target="_blank" href="https://safezipkit.com/">safezipkit.com</a>
|
|
200
198
|
</div>
|
|
201
199
|
</div>
|
|
202
|
-
<div class="col-md-4">
|
|
200
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
203
201
|
<div class="website-showcase">
|
|
204
202
|
<img loading='lazy' class="website-img"
|
|
205
203
|
src="https://d33wubrfki0l68.cloudfront.net/325cdfad7de6cae4a03aecfadc70b38af754cbd0/d87f9/assets/images/logo.png"
|
|
@@ -210,14 +208,14 @@
|
|
|
210
208
|
</a>
|
|
211
209
|
</div>
|
|
212
210
|
</div>
|
|
213
|
-
<div class="col-md-4">
|
|
211
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
214
212
|
<div class="website-showcase">
|
|
215
213
|
<img loading='lazy' class="website-img" src="/assets//images/safevideoconverter.svg"
|
|
216
214
|
alt="safevideoconverter logo" {%- if site.crossorigin -%} crossorigin="anonymous" {%- endif -%}> <a
|
|
217
215
|
target="_blank" href="https://safevideoconverter.com/">safevideoconverter.com</a>
|
|
218
216
|
</div>
|
|
219
217
|
</div>
|
|
220
|
-
<div class="col-md-4">
|
|
218
|
+
<div class="col-md-4 col-sm-6 col-6">
|
|
221
219
|
<div class="website-showcase">
|
|
222
220
|
<img loading='lazy' class="website-img"
|
|
223
221
|
src="https://d33wubrfki0l68.cloudfront.net/c8fef6be5192b9fa57b8503c6ad93befa361926d/a66d0/picture.svg"
|
|
@@ -243,8 +241,9 @@
|
|
|
243
241
|
|
|
244
242
|
|
|
245
243
|
<div class="download-social-share">
|
|
244
|
+
<div class="container">
|
|
246
245
|
<div class="row">
|
|
247
|
-
<div class="col-md-
|
|
246
|
+
<div class="col-md-12 mx-auto">
|
|
248
247
|
<div class="row">
|
|
249
248
|
<div class="col-md-8">
|
|
250
249
|
<p class=" share-heading mb-0 " >
|
|
@@ -267,7 +266,7 @@
|
|
|
267
266
|
<a id=" {{share.type}}" href="{{ link }}" data-toggle="tooltip"
|
|
268
267
|
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
|
269
268
|
data-placement="top" title="{{ share.type }}" aria-label="{{ share.type }}">
|
|
270
|
-
<i class="fa-fw {{ share.icon }} mb-0
|
|
269
|
+
<i class="fa-fw {{ share.icon }} mb-0"></i>
|
|
271
270
|
</a>
|
|
272
271
|
{% endfor %}
|
|
273
272
|
</div>
|
|
@@ -280,9 +279,10 @@
|
|
|
280
279
|
</div>
|
|
281
280
|
</div>
|
|
282
281
|
</div>
|
|
282
|
+
</div>
|
|
283
283
|
|
|
284
284
|
{% include appscms/footer/footer.html %}
|
|
285
|
-
{% include script.html %}
|
|
285
|
+
{% include appscms/scripts/script.html %}
|
|
286
286
|
|
|
287
287
|
</body>
|
|
288
288
|
|
|
@@ -7,12 +7,26 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
7
7
|
{%- include appscms/head/head.html -%}
|
|
8
8
|
<body>
|
|
9
9
|
{%- include appscms/navbars/navbar.html -%} {%- include
|
|
10
|
-
appscms/navbars/toolbar.html -%} {%- include
|
|
11
|
-
|
|
10
|
+
appscms/navbars/toolbar.html -%} {%- include bookmark.html -%} {%- if
|
|
11
|
+
site.safeui -%}
|
|
12
|
+
<div
|
|
13
|
+
class="alert alert-{{featureData.variant | default: 'primary'}} fade show text-center"
|
|
14
|
+
role="alert"
|
|
15
|
+
id="safeui-alert"
|
|
16
|
+
>
|
|
17
|
+
<div class="container">
|
|
18
|
+
{%- if featureData.alertmsg -%} {{featureData.alertmsg}} {%- else -%} We
|
|
19
|
+
do not upload any files to server, hence your data is 100% secure. {%-
|
|
20
|
+
endif -%}
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
{%- endif -%} {%- include appscms/headings/headings.html -%} {%- include
|
|
24
|
+
appscms/uploadbutton/uploadbutton.html -%} {%- include
|
|
12
25
|
appscms/featurehighlight/featurehighlight.html -%} {%- include
|
|
13
26
|
appscms/howto/howto.html -%} {%- include appscms/faq/faq.html -%} {%-
|
|
14
27
|
include appscms/recent-posts/recent-posts.html -%}
|
|
15
|
-
<!-- {%- include
|
|
28
|
+
<!-- {%- include
|
|
29
|
+
appscms/extras/traffic-count.html -%} -->
|
|
16
30
|
{%- include appscms/extras/ratings.html -%} {%- include
|
|
17
31
|
appscms/footer/products.html -%} {%- include appscms/footer/footer.html -%}
|
|
18
32
|
{%- include appscms/scripts/script.html -%}
|
data/_layouts/appscms-home.html
CHANGED
|
@@ -6,15 +6,30 @@ assign boxColor = site.data[page.folderName][page.lang][page.fileName].color -%}
|
|
|
6
6
|
{%- include appscms/head/head.html -%}
|
|
7
7
|
<body>
|
|
8
8
|
{%- include appscms/navbars/navbar.html -%} {%- include
|
|
9
|
-
appscms/navbars/toolbar.html -%} {%-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
appscms/navbars/toolbar.html -%} {%- if homeData.nofileupload -%}
|
|
10
|
+
<div
|
|
11
|
+
id="safeui-alert"
|
|
12
|
+
class="alert alert-{{homeData.variant | default: 'primary'}} fade show text-center"
|
|
13
|
+
role="alert"
|
|
14
|
+
>
|
|
15
|
+
<div class="container">
|
|
16
|
+
{%- if homeData.alertmsg -%} {{homeData.alertmsg}} {%- else -%} We do
|
|
17
|
+
not upload any files to server, hence your data is 100% secure. {%-
|
|
18
|
+
endif -%}
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
{%- endif -%} {%- include appscms/headings/headings.html -%} {%- include
|
|
22
|
+
appscms/searchbar/searchbar.html -%}
|
|
23
|
+
<!-- {%- include
|
|
24
|
+
appscms/category-tabs/category-tabs.html -%} -->
|
|
12
25
|
{%- include appscms/home/feature-boxes.html -%}
|
|
13
26
|
<div class="appcms-home-content-box" id="appcms-home-content-box">
|
|
14
27
|
{{ content }}
|
|
15
28
|
</div>
|
|
16
29
|
{%- include appscms/recent-posts/recent-posts.html -%}
|
|
17
|
-
<!--
|
|
30
|
+
<!--
|
|
31
|
+
{%- include
|
|
32
|
+
appscms/extras/traffic-count.html -%} -->
|
|
18
33
|
{%- include appscms/footer/products.html -%} {%- include
|
|
19
34
|
appscms/footer/footer.html -%} {%- include appscms/scripts/script.html -%}
|
|
20
35
|
</body>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: appscms-feature
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{%- assign fileData = site.data[page.folderName][page.lang][page.fileName] -%}
|
|
6
|
+
<div class="container mt-4 pt-5 mt-5">
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="col-md-6 mb-5" id="left-section">
|
|
9
|
+
<div>
|
|
10
|
+
{%- assign h1 = fileData.H1 | replace: "$variable", page.value -%}
|
|
11
|
+
<h1 class="video-h1">
|
|
12
|
+
{%- for word in h1-%} {%- if forloop.first == true -%} {{word |
|
|
13
|
+
capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
14
|
+
</h1>
|
|
15
|
+
</div>
|
|
16
|
+
{%- assign h2 = fileData.H2 | replace: "$variable", page.value -%}
|
|
17
|
+
<div>
|
|
18
|
+
<h2 class="video-h2">
|
|
19
|
+
{%- for word in h2 -%} {%- if forloop.first == true -%} {{word |
|
|
20
|
+
capitalize }} {%- else -%} {{word}} {%- endif -%} {%- endfor -%}
|
|
21
|
+
</h2>
|
|
22
|
+
</div>
|
|
23
|
+
<div class="d-flex justify-content-left mt-4">
|
|
24
|
+
<button class="upload-redirect">Upload Your Video</button>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-md-6">
|
|
28
|
+
<div class="right-section mb-5">
|
|
29
|
+
<img src="/assets/images/video.png" alt="alt" />
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
data/assets/.DS_Store
CHANGED
|
Binary file
|
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
/* upload page css*/
|
|
2
|
-
|
|
3
1
|
.nav-tool-bar {
|
|
4
2
|
position: sticky;
|
|
5
3
|
top: 0;
|
|
6
4
|
width: 100%;
|
|
7
5
|
z-index: 999;
|
|
8
6
|
}
|
|
9
|
-
|
|
10
|
-
/* uplaod section */
|
|
11
|
-
|
|
12
7
|
.appscms-upload-section {
|
|
13
8
|
height: 300px;
|
|
14
|
-
border: 2px
|
|
9
|
+
border: 2px dashed #484848;
|
|
15
10
|
padding: 20px;
|
|
16
11
|
border-radius: 20px;
|
|
17
12
|
display: flex;
|
|
@@ -50,12 +45,9 @@
|
|
|
50
45
|
width: 60px;
|
|
51
46
|
background-color: rgb(146, 146, 146);
|
|
52
47
|
}
|
|
53
|
-
|
|
54
|
-
/* feature section */
|
|
55
48
|
.appscms-feature-image {
|
|
56
49
|
max-width: 75px;
|
|
57
50
|
}
|
|
58
|
-
|
|
59
51
|
.appscms-feature-title {
|
|
60
52
|
font-size: 17px;
|
|
61
53
|
margin-top: 15px;
|
|
@@ -77,9 +69,12 @@
|
|
|
77
69
|
}
|
|
78
70
|
.appscms-howto-heading {
|
|
79
71
|
/* margin-top: 40px; */
|
|
80
|
-
font-size:
|
|
72
|
+
font-size: 25px;
|
|
81
73
|
font-weight: 500;
|
|
82
74
|
}
|
|
75
|
+
.how-to-video-wrapper iframe {
|
|
76
|
+
width: 100%;
|
|
77
|
+
}
|
|
83
78
|
|
|
84
79
|
.appscms-howto-steps {
|
|
85
80
|
font-size: 1rem;
|
|
@@ -93,18 +88,22 @@
|
|
|
93
88
|
}
|
|
94
89
|
|
|
95
90
|
.faq-item {
|
|
96
|
-
|
|
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;
|
|
97
96
|
}
|
|
98
97
|
|
|
99
98
|
.faq-question {
|
|
100
|
-
font-size:
|
|
99
|
+
font-size: 22px;
|
|
101
100
|
font-weight: 500;
|
|
102
|
-
|
|
101
|
+
|
|
103
102
|
margin-bottom: 10px;
|
|
104
103
|
}
|
|
105
104
|
|
|
106
105
|
.faq-answer {
|
|
107
|
-
font-size:
|
|
106
|
+
font-size: 15px;
|
|
108
107
|
font-weight: normal;
|
|
109
108
|
margin-bottom: 20px;
|
|
110
109
|
}
|
|
@@ -148,72 +147,54 @@
|
|
|
148
147
|
}
|
|
149
148
|
|
|
150
149
|
@media (max-width: 768px) {
|
|
151
|
-
.
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}
|
|
158
|
-
.heading h1 {
|
|
159
|
-
font-weight: 600;
|
|
160
|
-
font-size: 30px;
|
|
150
|
+
.upload-btn {
|
|
151
|
+
width: 268px;
|
|
152
|
+
padding: 15px;
|
|
153
|
+
border-radius: 50px;
|
|
154
|
+
font-size: 20px;
|
|
155
|
+
height: auto;
|
|
161
156
|
}
|
|
162
|
-
.
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
text-align: center;
|
|
157
|
+
.upload-from-drives img {
|
|
158
|
+
height: 40px;
|
|
159
|
+
width: 42px;
|
|
166
160
|
}
|
|
167
|
-
.
|
|
168
|
-
|
|
169
|
-
position: relative;
|
|
170
|
-
bottom: 30px;
|
|
161
|
+
.drag-msg {
|
|
162
|
+
display: none;
|
|
171
163
|
}
|
|
172
164
|
.appscms-upload-section {
|
|
173
|
-
height:
|
|
174
|
-
border: none;
|
|
165
|
+
height: 100px;
|
|
175
166
|
background-color: transparent;
|
|
176
|
-
justify-content: center;
|
|
177
|
-
align-items: center;
|
|
178
|
-
flex-direction: column;
|
|
179
167
|
box-shadow: none;
|
|
168
|
+
border: none;
|
|
180
169
|
}
|
|
181
|
-
.appscms-upload-icon
|
|
170
|
+
.appscms-upload-icon,
|
|
171
|
+
.or-in-upload {
|
|
182
172
|
display: none;
|
|
183
173
|
}
|
|
184
|
-
.
|
|
185
|
-
|
|
174
|
+
.rating-tool {
|
|
175
|
+
flex-direction: column;
|
|
176
|
+
display: flex;
|
|
177
|
+
gap: 15px;
|
|
178
|
+
height: auto;
|
|
179
|
+
padding: 15px 0px;
|
|
186
180
|
}
|
|
187
|
-
.
|
|
181
|
+
.heading {
|
|
182
|
+
padding-top: 0px;
|
|
183
|
+
text-align: center;
|
|
188
184
|
display: flex;
|
|
189
|
-
justify-content: center;
|
|
190
185
|
align-items: center;
|
|
191
|
-
|
|
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;
|
|
186
|
+
justify-content: center;
|
|
204
187
|
}
|
|
205
|
-
.
|
|
206
|
-
font-size: 14px;
|
|
188
|
+
.heading h1 {
|
|
207
189
|
font-weight: 600;
|
|
190
|
+
font-size: 30px;
|
|
208
191
|
}
|
|
209
|
-
.
|
|
210
|
-
|
|
192
|
+
.heading h2 {
|
|
193
|
+
width: 80vw;
|
|
194
|
+
font-size: 11px;
|
|
195
|
+
text-align: center;
|
|
211
196
|
}
|
|
212
197
|
|
|
213
|
-
/* how to section */
|
|
214
|
-
.appscms-howto-image {
|
|
215
|
-
display: none;
|
|
216
|
-
}
|
|
217
198
|
.appscms-how-to-section {
|
|
218
199
|
border-radius: 0px;
|
|
219
200
|
background-color: transparent;
|
|
@@ -239,7 +220,7 @@
|
|
|
239
220
|
/* faq section */
|
|
240
221
|
.faq-question {
|
|
241
222
|
font-size: 20px;
|
|
242
|
-
margin-bottom:
|
|
223
|
+
margin-bottom: 18px;
|
|
243
224
|
}
|
|
244
225
|
|
|
245
226
|
.faq-answer {
|
|
@@ -250,113 +231,55 @@
|
|
|
250
231
|
.faq-answer-list {
|
|
251
232
|
font-size: 11px;
|
|
252
233
|
}
|
|
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
234
|
}
|
|
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
235
|
|
|
288
|
-
|
|
289
|
-
.
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
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
|
-
}
|
|
236
|
+
.upload-redirect {
|
|
237
|
+
padding: 13px 1.5em 14px 1.5em;
|
|
238
|
+
color: #fff;
|
|
239
|
+
background-color: #5c5ce0;
|
|
240
|
+
border-color: #5c5ce0;
|
|
241
|
+
border-radius: 27px;
|
|
242
|
+
font-size: 18px;
|
|
243
|
+
font-weight: 600;
|
|
244
|
+
border: none;
|
|
245
|
+
}
|
|
331
246
|
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
247
|
+
#left-section {
|
|
248
|
+
display: flex;
|
|
249
|
+
flex-direction: column;
|
|
250
|
+
align-items: baseline;
|
|
251
|
+
justify-content: center;
|
|
252
|
+
}
|
|
337
253
|
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
font-size: 25px;
|
|
342
|
-
}
|
|
343
|
-
/* rating section */
|
|
254
|
+
.right-section img {
|
|
255
|
+
width: 90%;
|
|
256
|
+
}
|
|
344
257
|
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
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
|
-
}
|
|
258
|
+
#left-section h1,
|
|
259
|
+
#left-section h2 {
|
|
260
|
+
text-align: left;
|
|
261
|
+
width: 100%;
|
|
360
262
|
}
|
|
361
263
|
|
|
362
|
-
|
|
264
|
+
.video-h1,
|
|
265
|
+
.audio-h1 {
|
|
266
|
+
font-weight: 600;
|
|
267
|
+
font-size: 53px;
|
|
268
|
+
}
|
|
269
|
+
.toaster {
|
|
270
|
+
top: 150px;
|
|
271
|
+
padding: 12px 20px;
|
|
272
|
+
color: #fff;
|
|
273
|
+
display: inline-block;
|
|
274
|
+
box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%),
|
|
275
|
+
0 10px 36px -4px rgb(77 96 232 / 30%);
|
|
276
|
+
background: var(--primary-color);
|
|
277
|
+
position: fixed;
|
|
278
|
+
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
279
|
+
border-radius: 2px;
|
|
280
|
+
right: 0px;
|
|
281
|
+
cursor: pointer;
|
|
282
|
+
text-decoration: none;
|
|
283
|
+
max-width: calc(50% - 20px);
|
|
284
|
+
z-index: 2147483647;
|
|
285
|
+
}
|