appscms-tools-theme 4.8.8 → 4.8.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 255cd3531f80b2d7320d93a4d07ac993cd86980611163a0e022ba1f81cbad5bc
4
- data.tar.gz: c14d9d18971851da2998b96c37ec916dc50f8b0de9fda00dbc7e2efa7879e816
3
+ metadata.gz: 48bc92c7ce7ec3beab1dc7d1ffe850b8faad27713e3f3daca23a545093d90826
4
+ data.tar.gz: 8c24fe8f0cf6a300606598c5f1260364aee72f39c6e21634b31589224b47d742
5
5
  SHA512:
6
- metadata.gz: c4587ae4d3e04179f1c3d9d8588d1d75eca1b2661ff12dcb7cbbe69eb62581fe1dfccb2e8562fea1039578d3362622cfd5407bdd52a77356df9456d72655b71f
7
- data.tar.gz: c8908601b811492da421f8772f2e735f1ba18b05a2a0fbffb75e0bffeb06fa647b492ee56385e764a4d87b58edf7c8ca73a7760246ff9fe494af37fbdb722171
6
+ metadata.gz: e052c817906a54b2a29c2c633e819bed85db06b21e9cd693194781e271ddc73420c62c4e3512b279a15b92285c1ab304259c2e541ca28c37c350253be505b6c1
7
+ data.tar.gz: 1b422eb9dfb8d1e94860c6fddd1547b7eed0f91f0bb17c677ca40fcdeec94eac1fb6758493379691e4045490db512b9cc1dbf031b092b6c7caa194b3ec6607b7
data/_data/.DS_Store CHANGED
Binary file
@@ -100,15 +100,19 @@
100
100
  "infographics": [
101
101
  {
102
102
  "image": "/uploads/8_5_2024_1722847835453_template.webp",
103
- "description": "How to set alarm on wake me up at 4:45 am tool"
103
+ "description": "How to set alarm on wake me up at 4:45 am tool",
104
+ "alt": "infographics 1"
105
+
104
106
  },
105
107
  {
106
108
  "image": "/uploads/info.png",
107
- "description": "How to set alarm on wake me up at 4:45 am tool"
109
+ "description": "How to set alarm on wake me up at 4:45 am tool",
110
+ "alt": "infographics 2"
108
111
  },
109
112
  {
110
113
  "image": "/uploads/8_5_2024_1722848984955_template.webp",
111
- "description": "Additional features of wake me up at 4:45 am tool"
114
+ "description": "Additional features of wake me up at 4:45 am tool",
115
+ "alt": "infographics 3"
112
116
  }
113
117
  ],
114
118
  "posts": [
data/_includes/.DS_Store CHANGED
Binary file
@@ -1,6 +1,63 @@
1
1
  <style>
2
+
3
+ .modal-arrow-btn {
4
+ position: absolute;
5
+ top: 50%;
6
+ width: 50px;
7
+ height: 50px;
8
+ background: rgba(0, 0, 0, 0.5);
9
+ color: #fff;
10
+ border: none;
11
+ cursor: pointer;
12
+ font-size: 24px;
13
+ text-align: center;
14
+ line-height: 50px;
15
+ border-radius: 50%;
16
+ transform: translateY(-50%);
17
+ }
18
+
19
+ .modal-arrow-btn.prev {
20
+ left: 10px;
21
+ }
22
+
23
+ .modal-arrow-btn.next {
24
+ right: 10px;
25
+ }
26
+ @media (max-width: 768px) {
27
+ .modal-arrow-btn {
28
+ top: 30%;
29
+ width: 40px;
30
+ height: 40px;
31
+ font-size: 20px;
32
+ line-height: 40px;
33
+ }
34
+
35
+ .modal-arrow-btn.prev {
36
+ left: 5px;
37
+ }
38
+
39
+ .modal-arrow-btn.next {
40
+ right: 5px;
41
+ }
42
+ }
43
+
44
+ @media (max-width: 480px) {
45
+ .modal-arrow-btn {
46
+ width: 30px;
47
+ height: 30px;
48
+ font-size: 16px;
49
+ line-height: 30px;
50
+ }
51
+
52
+ .modal-arrow-btn.prev {
53
+ left: 3px;
54
+ }
55
+
56
+ .modal-arrow-btn.next {
57
+ right: 3px;
58
+ }
59
+ }
2
60
  .modal1 {
3
- display: none;
4
61
  position: fixed;
5
62
  z-index: 1000;
6
63
  left: 0;
@@ -9,120 +66,153 @@
9
66
  height: 100%;
10
67
  overflow: auto;
11
68
  background-color: rgba(59, 58, 58, 0.9);
69
+ opacity: 0;
70
+ visibility: hidden;
71
+ transform: scale(0.8);
72
+ transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
73
+ }
74
+
75
+ .modal1.show {
76
+ opacity: 1;
77
+ visibility: visible;
78
+ transform: scale(1);
79
+ transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
12
80
  }
81
+
13
82
  .modal1-content1 {
14
83
  margin: auto;
15
84
  display: block;
16
85
  width: 80%;
17
86
  max-width: 800px;
18
87
  margin-top: 20px;
88
+ opacity: 0;
89
+ transform: translateY(-20px);
90
+ transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
19
91
  }
20
- .modal1-body img {
21
- width: 100%;
22
- height: auto;
23
- }
24
- .close1 {
25
- position: absolute;
26
- top: 10px;
27
- right: 10px;
28
- font-size: 24px;
29
- color: #fff;
30
- cursor: pointer;
31
- }
32
- .close1:hover {
33
- color: #ccc;
92
+
93
+ .modal1.show .modal1-content1 {
94
+ opacity: 1;
95
+ transform: translateY(0);
34
96
  }
35
- </style>
36
- <div class="inforgraphics_section">
37
- <h3 class="text-center w-100 mb-5"><b>Other useful information</b></h3>
38
- <div class="wrapper">
39
- <img
40
- class="infographics-arrow"
41
- id="left"
42
- src="/assets/images/arrow-left.svg"
43
- alt=""
44
- />
45
- <div class="carousel">
46
- <div class="carousel-inner">
47
- {%- if pageData.infographics -%} {% for item in pageData.infographics %}
48
- <div class="slide">
49
- <img
50
- loading="lazy"
51
- src="{{ item.image }}"
52
- alt="img"
53
- draggable="false"
54
- class="infographic-img"
55
- onclick="openModal1('{{ item.image }}')"
56
- />
57
- <p class="infographic-desc">{{ item.description | capitalize }}</p>
97
+ .modal1-body img {
98
+ width: 100%;
99
+ height: auto;
100
+ }
101
+ .close1 {
102
+ position: absolute;
103
+ top: 10px;
104
+ right: 10px;
105
+ font-size: 24px;
106
+ color: #fff;
107
+ cursor: pointer;
108
+ }
109
+ .close1:hover {
110
+ color: #ccc;
111
+ }
112
+ </style>
113
+ <div class="inforgraphics_section">
114
+ <h3 class="text-center w-100 mb-5"><b>Other useful information</b></h3>
115
+ <div class="wrapper">
116
+ <i id="left" class="fas fa-angle-left"></i>
117
+ <div class="carousel">
118
+ <div class="carousel-inner">
119
+ {%- if pageData.infographics -%} {% for item in pageData.infographics %}
120
+ <div class="slide">
121
+ <img
122
+ loading="lazy"
123
+ src="{{ item.image }}"
124
+ alt="{{item.alt}}"
125
+ draggable="false"
126
+ class="infographic-img"
127
+ onclick="openModal1('{{ item.image }}')"
128
+ />
129
+ <p class="infographic-desc">{{ item.description | capitalize }}</p>
130
+ </div>
131
+ {% endfor %} {%- endif -%}
58
132
  </div>
59
- {% endfor %} {%- endif -%}
60
133
  </div>
134
+ <i id="right" class="fas fa-angle-right"></i>
61
135
  </div>
62
- <img
63
- class="infographics-arrow"
64
- id="right"
65
- src="/assets/images/arrow-right.svg"
66
- alt=""
67
- />
68
136
  </div>
69
- </div>
70
- <div id="imageModal1" class="modal1" onclick="closeModal1()">
71
- <span class="close1" onclick="closeModal1()">&times;</span>
72
- <div class="modal1-content1">
73
- <div class="modal1-body">
74
- <img id="modal1Image" src="" alt="Image" />
137
+ <div id="imageModal1" class="modal1" onclick="closeModal1()">
138
+ <span class="close1" onclick="closeModal1()">&times;</span>
139
+ <button class="modal-arrow-btn prev">&#10094;</button>
140
+ <button class="modal-arrow-btn next">&#10095;</button>
141
+ <div class="modal1-content1">
142
+ <div class="modal1-body">
143
+ <img id="modal1Image" src="" alt="Image" />
144
+ </div>
75
145
  </div>
76
146
  </div>
77
- </div>
78
- <script>
79
- function openModal1(imageSrc) {
80
- var modal1 = document.getElementById("imageModal1");
81
- var modal1Img = document.getElementById("modal1Image");
82
- modal1.style.display = "block";
83
- modal1Img.src = imageSrc;
84
- }
85
- function closeModal1() {
86
- var modal1 = document.getElementById("imageModal1");
87
- modal1.style.display = "none";
88
- }
89
- document.addEventListener("click", function (event) {
90
- var modal1 = document.getElementById("imageModal1");
91
- if (event.target === modal1) {
92
- closeModal1();
147
+ <script>
148
+ document.addEventListener("DOMContentLoaded", () => {
149
+ let modal_array_of_images = [];
150
+ let current_modal_img = 0;
151
+
152
+ // Function to update the modal image
153
+ function updateModalImage() {
154
+ const modal1Img = document.getElementById("modal1Image");
155
+ if (modal_array_of_images.length > 0) {
156
+ modal1Img.src = modal_array_of_images[current_modal_img].src;
157
+ }
93
158
  }
94
- });
95
- const carousel = document.querySelector(".carousel-inner"),
96
- firstImg = carousel.querySelectorAll("img")[0],
97
- arrowIcons = document.querySelectorAll(".infographics-arrow");
98
- const numImages = carousel.querySelectorAll("img").length;
99
- const isMobile = window.matchMedia("(max-width: 767px)").matches; // Check if screen width is less than or equal to 767px
100
- if (numImages > 3) {
101
- arrowIcons[1].style.display = "block";
102
- } else {
103
- arrowIcons[0].style.display = "none";
104
- arrowIcons[1].style.display = "none";
105
- }
106
- let isDragStart = false,
107
- isDragging = false,
108
- prevPageX,
109
- prevScrollLeft,
110
- positionDiff;
111
- const showHideIcons = () => {
112
- let scrollWidth = carousel.scrollWidth - carousel.clientWidth; // getting max scrollable width
113
- arrowIcons[0].style.display = carousel.scrollLeft == 0 ? "none" : "block";
114
- arrowIcons[1].style.display =
115
- carousel.scrollLeft == scrollWidth ? "none" : "block";
116
- };
117
- arrowIcons.forEach((icon) => {
118
- icon.addEventListener("click", () => {
119
- let firstImgWidth = firstImg.clientWidth + 40;
120
- const scrollAmount = icon.id === "left" ? -firstImgWidth : firstImgWidth;
121
- carousel.scrollBy({
122
- left: scrollAmount,
123
- behavior: "smooth",
159
+
160
+ // Function to prepare the array of images for the modal
161
+ function readyallimages() {
162
+ modal_array_of_images = Array.from(document.querySelectorAll('.infographic-img'));
163
+ }
164
+
165
+ // Function to open the modal and set the current image
166
+ function openModal1(imageSrc) {
167
+ const modal1 = document.getElementById("imageModal1");
168
+ modal1.classList.add("show");
169
+ modal_array_of_images = Array.from(document.querySelectorAll('.infographic-img'));
170
+ current_modal_img = modal_array_of_images.findIndex(img => img.src === imageSrc);
171
+ updateModalImage();
172
+ }
173
+
174
+ // Function to close the modal
175
+ function closeModal1() {
176
+ const modal1 = document.getElementById("imageModal1");
177
+ modal1.classList.remove("show");
178
+ }
179
+
180
+ // Add click event listeners to each infographic image
181
+ document.querySelectorAll('.infographic-img').forEach(img => {
182
+ img.addEventListener('click', (event) => {
183
+ openModal1(event.target.src);
184
+ });
185
+ });
186
+
187
+ // Event listeners for the modal arrow buttons
188
+ const modal_btns = document.querySelectorAll('.modal-arrow-btn');
189
+ modal_btns.forEach(modal_btn => {
190
+ modal_btn.addEventListener('click', (e) => {
191
+ e.stopPropagation();
192
+ if (modal_btn.classList.contains('prev')) {
193
+ current_modal_img = (current_modal_img > 0) ? current_modal_img - 1 : modal_array_of_images.length - 1;
194
+ } else {
195
+ current_modal_img = (current_modal_img < modal_array_of_images.length - 1) ? current_modal_img + 1 : 0;
196
+ }
197
+ updateModalImage();
124
198
  });
125
- setTimeout(() => showHideIcons(), 60); // calling showHideIcons after 60ms
126
199
  });
200
+
201
+ // Event listener for the close button
202
+ document.querySelectorAll(".close1").forEach(element => {
203
+ element.addEventListener("click", closeModal1);
204
+ });
205
+
206
+ // Event listener for closing the modal when clicking outside the image
207
+ document.getElementById("imageModal1").addEventListener("click", (event) => {
208
+ if (event.target === document.getElementById("imageModal1")) {
209
+ closeModal1();
210
+ }
211
+ });
212
+
213
+ // Initialize modal images on page load
214
+ readyallimages();
127
215
  });
128
- </script>
216
+
217
+ </script>
218
+
@@ -5,11 +5,7 @@ layout: appscms-feature
5
5
  <div class="container-fluid mt-4">
6
6
  {%- assign boxColor =
7
7
  site.data[page.folderName][page.lang][page.fileName].color -%}
8
- <div
9
- class="custom-box"
10
- style=" padding-top: 0px"
11
- data-color="{{boxColor}}"
12
- >
8
+ <div class="custom-box" style="padding-top: 0px" data-color="{{boxColor}}">
13
9
  <div style="display: none" id="file-loader">
14
10
  <img
15
11
  src="/assets/images/spinner.gif"
@@ -44,7 +40,6 @@ layout: appscms-feature
44
40
  />
45
41
  <span class="ml-1">CHOOSE FILES</span>
46
42
  </div>
47
-
48
43
  </div>
49
44
  <p id="dropfile" class="text-dark">or drop your image here</p>
50
45
  </div>
data/assets/.DS_Store CHANGED
Binary file
@@ -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
- }
@@ -2190,3 +2190,401 @@ select:focus {
2190
2190
  grid-template-columns: auto; /* 1 column for small screens */
2191
2191
  }
2192
2192
  }
2193
+ .nav-tool-bar {
2194
+ position: sticky;
2195
+ top: 0;
2196
+ width: 100%;
2197
+ z-index: 999;
2198
+ }
2199
+ .appscms-upload-section {
2200
+ height: 290px;
2201
+ border: 2px dashed #484848;
2202
+ padding: 20px;
2203
+ border-radius: 20px;
2204
+ display: flex;
2205
+ align-items: center;
2206
+ justify-content: center;
2207
+ background-color: white;
2208
+ gap: 10px;
2209
+ }
2210
+ .upload-btn {
2211
+ text-align: center;
2212
+ background-color: rgb(29, 22, 232);
2213
+ color: white;
2214
+ border-radius: 10px;
2215
+ width: 195px;
2216
+ height: 41px;
2217
+ padding: 10px;
2218
+ cursor: pointer;
2219
+ }
2220
+ .appscms-upload-section {
2221
+ display: flex;
2222
+ flex-direction: column;
2223
+ box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.17);
2224
+ }
2225
+
2226
+ .or-in-upload {
2227
+ display: flex;
2228
+ align-items: center;
2229
+ gap: 8px;
2230
+ font-size: 13px;
2231
+ }
2232
+ .line-in-upload {
2233
+ height: 1.5px;
2234
+ width: 60px;
2235
+ background-color: rgb(146, 146, 146);
2236
+ }
2237
+ .appscms-feature-image {
2238
+ max-width: 75px;
2239
+ }
2240
+ .appscms-feature-title {
2241
+ font-size: 17px;
2242
+ margin-top: 15px;
2243
+ font-weight: 600;
2244
+ margin-bottom: 0.5rem;
2245
+ }
2246
+
2247
+ .appscms-feature-description {
2248
+ font-size: 14px;
2249
+ line-height: 22px;
2250
+ margin-bottom: 0;
2251
+ }
2252
+
2253
+ /* how to section */
2254
+ .appscms-how-to-section {
2255
+ border-radius: 10px;
2256
+ background-color: #f4f5ff;
2257
+ box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
2258
+ }
2259
+ .appscms-howto-heading {
2260
+ /* margin-top: 40px; */
2261
+ font-size: 25px;
2262
+ font-weight: 500;
2263
+ }
2264
+ .how-to-video-wrapper {
2265
+ display: flex;
2266
+ align-items: center;
2267
+ justify-content: center;
2268
+ height: 100%;
2269
+ }
2270
+
2271
+ .appscms-howto-steps {
2272
+ font-size: 1rem;
2273
+ font-weight: normal;
2274
+ line-height: 200%;
2275
+ }
2276
+
2277
+ /* faq section */
2278
+ .faq-section {
2279
+ text-align: left;
2280
+ }
2281
+
2282
+ .faq-item {
2283
+ box-shadow: 5px 2px 8px rgba(0, 0, 0, 0.1);
2284
+ margin-bottom: 15px;
2285
+ background: white;
2286
+ padding: 1.5rem;
2287
+ border-radius: 7px;
2288
+ }
2289
+
2290
+ .faq-question {
2291
+ font-size: 25px;
2292
+ font-weight: 500;
2293
+
2294
+ margin-bottom: 10px;
2295
+ }
2296
+
2297
+ .faq-answer {
2298
+ font-size: 16px;
2299
+ font-weight: normal;
2300
+ margin-bottom: 20px;
2301
+ }
2302
+
2303
+ .faq-answer-list {
2304
+ font-size: 17px;
2305
+ font-weight: normal;
2306
+ margin-left: 20px;
2307
+ }
2308
+
2309
+ /* recent posts */
2310
+ .appscms-recentposts {
2311
+ font-size: 30px;
2312
+ }
2313
+
2314
+ /* rating section */
2315
+ .ratings {
2316
+ display: flex;
2317
+ justify-content: center;
2318
+ align-items: center;
2319
+ background-color: rgb(252, 252, 252);
2320
+ border-radius: 50px;
2321
+ height: 70px;
2322
+ /* color: #000000; */
2323
+ }
2324
+
2325
+ .appsms-user-rating-count {
2326
+ font-size: 25px;
2327
+ font-weight: 600;
2328
+ }
2329
+ .appsms-user-total-count {
2330
+ position: relative;
2331
+ right: 20px;
2332
+ top: 2px;
2333
+ }
2334
+
2335
+ @media (max-width: 768px) {
2336
+ .upload-btn {
2337
+ width: 268px;
2338
+ padding: 15px;
2339
+ border-radius: 50px;
2340
+ font-size: 20px;
2341
+ height: auto;
2342
+ }
2343
+ .upload-from-drives img {
2344
+ height: 40px;
2345
+ width: 40px;
2346
+ }
2347
+ .drag-msg {
2348
+ display: none;
2349
+ }
2350
+ .appscms-upload-section {
2351
+ height: 100px;
2352
+ margin-top: 20px;
2353
+ background-color: transparent;
2354
+ box-shadow: none;
2355
+ border: none;
2356
+ }
2357
+ .appscms-upload-icon,
2358
+ .or-in-upload {
2359
+ display: none;
2360
+ }
2361
+ .rating-tool {
2362
+ flex-direction: column;
2363
+ display: flex;
2364
+ gap: 15px;
2365
+ height: auto;
2366
+ padding: 15px 0px;
2367
+ }
2368
+ .heading {
2369
+ padding-top: 70px;
2370
+ text-align: center;
2371
+ display: flex;
2372
+ align-items: center;
2373
+ justify-content: center;
2374
+ }
2375
+ .heading h1 {
2376
+ font-weight: 600;
2377
+ font-size: 30px;
2378
+ }
2379
+ .heading h2 {
2380
+ width: 80vw;
2381
+ font-size: 14px;
2382
+ text-align: center;
2383
+ }
2384
+
2385
+ .appscms-how-to-section {
2386
+ border-radius: 0px;
2387
+ background-color: transparent;
2388
+ box-shadow: none;
2389
+ }
2390
+ .appscms-howto-heading {
2391
+ text-align: center;
2392
+ margin-top: 40px;
2393
+ font-size: 23px;
2394
+ font-weight: 500;
2395
+ }
2396
+
2397
+ .appscms-howto-steps {
2398
+ font-size: 12px;
2399
+ font-weight: normal;
2400
+ line-height: 200%;
2401
+ }
2402
+ /* recent posts */
2403
+ .appscms-recentposts {
2404
+ font-size: 25px;
2405
+ }
2406
+
2407
+ /* faq section */
2408
+ .faq-question {
2409
+ font-size: 22px;
2410
+ margin-bottom: 18px;
2411
+ }
2412
+
2413
+ .faq-answer {
2414
+ font-size: 18px;
2415
+ margin-bottom: 2px;
2416
+ }
2417
+
2418
+ .faq-answer-list {
2419
+ font-size: 11px;
2420
+ }
2421
+ }
2422
+
2423
+ .upload-redirect {
2424
+ padding: 13px 1.5em 14px 1.5em;
2425
+ color: #fff;
2426
+ background-color: #5c5ce0;
2427
+ border-color: #5c5ce0;
2428
+ border-radius: 27px;
2429
+ font-size: 18px;
2430
+ font-weight: 600;
2431
+ border: none;
2432
+ }
2433
+
2434
+ #left-section {
2435
+ display: flex;
2436
+ flex-direction: column;
2437
+ align-items: baseline;
2438
+ justify-content: center;
2439
+ }
2440
+
2441
+ .right-section img {
2442
+ width: 90%;
2443
+ }
2444
+
2445
+ #left-section h1,
2446
+ #left-section h2 {
2447
+ text-align: left;
2448
+ width: 100%;
2449
+ }
2450
+
2451
+ .video-h1,
2452
+ .audio-h1 {
2453
+ font-weight: 600;
2454
+ font-size: 53px;
2455
+ }
2456
+ .toaster {
2457
+ top: 150px;
2458
+ padding: 12px 20px;
2459
+ color: #fff;
2460
+ display: inline-block;
2461
+ box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%),
2462
+ 0 10px 36px -4px rgb(77 96 232 / 30%);
2463
+ background: var(--primary-color);
2464
+ position: fixed;
2465
+ transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
2466
+ border-radius: 2px;
2467
+ right: 0px;
2468
+ cursor: pointer;
2469
+ text-decoration: none;
2470
+ max-width: calc(50% - 20px);
2471
+ z-index: 2147483647;
2472
+ }
2473
+ .inforgraphics_section {
2474
+ width: 100%;
2475
+ padding: 50px 0px 50px 0px;
2476
+ border-top: 1px solid rgb(224, 224, 224);
2477
+ display: flex;
2478
+ flex-direction: column;
2479
+ align-items: center;
2480
+ }
2481
+
2482
+ .inforgraphics_section .wrapper {
2483
+ display: flex;
2484
+ max-width: 90%;
2485
+ position: relative;
2486
+ }
2487
+
2488
+ .inforgraphics_section .wrapper i {
2489
+ top: 50%;
2490
+ height: 44px;
2491
+ width: 44px;
2492
+ color: #343f4f;
2493
+ cursor: pointer;
2494
+ font-size: 1.15rem;
2495
+ position: absolute;
2496
+ text-align: center;
2497
+ line-height: 44px;
2498
+ background: #eee;
2499
+ border-radius: 50%;
2500
+ transform: translateY(-50%);
2501
+ transition: transform 0.1s linear;
2502
+ }
2503
+
2504
+ .inforgraphics_section .wrapper i:active {
2505
+ transform: translateY(-50%) scale(0.9);
2506
+ }
2507
+
2508
+ .inforgraphics_section .wrapper i:hover {
2509
+ background: #f2f2f2;
2510
+ }
2511
+
2512
+ .inforgraphics_section .wrapper i:first-child {
2513
+ left: 0px;
2514
+ display: none;
2515
+ z-index: 999;
2516
+ }
2517
+
2518
+ .inforgraphics_section .wrapper i:last-child {
2519
+ right: 0px;
2520
+ }
2521
+
2522
+ .carousel {
2523
+ display: flex;
2524
+ max-width: 100%;
2525
+ overflow-x: scroll;
2526
+ scroll-snap-type: x mandatory;
2527
+ scroll-behavior: smooth;
2528
+ }
2529
+
2530
+ .carousel-inner {
2531
+ display: flex;
2532
+ flex-wrap: nowrap;
2533
+ justify-content: center;
2534
+ }
2535
+ @media screen and (max-width: 768px) {
2536
+ .carousel-inner {
2537
+ justify-content: normal;
2538
+ }
2539
+ }
2540
+ .slide {
2541
+ flex: 0 0 calc(100% / 3);
2542
+ scroll-snap-align: start;
2543
+ padding: 20px;
2544
+ }
2545
+
2546
+ .carousel img {
2547
+ width: 100%;
2548
+ object-fit: contain;
2549
+ max-width: 100%;
2550
+ height: auto;
2551
+ border-radius: 8px;
2552
+ }
2553
+
2554
+ .carousel-inner p {
2555
+ text-align: center;
2556
+ margin: 10px 0;
2557
+ font-size: 14px;
2558
+ white-space: normal;
2559
+ word-wrap: break-word;
2560
+ }
2561
+
2562
+ @media screen and (max-width: 768px) {
2563
+ .inforgraphics_section .wrapper {
2564
+ max-width: 100%;
2565
+ }
2566
+
2567
+ .carousel-inner p {
2568
+ font-size: 20px;
2569
+ }
2570
+
2571
+ .inforgraphics_section .wrapper i:first-child {
2572
+ left: 0;
2573
+ z-index: 99;
2574
+ }
2575
+
2576
+ .inforgraphics_section .wrapper i:last-child {
2577
+ right: 0;
2578
+ z-index: 99;
2579
+ display: block !important;
2580
+ }
2581
+
2582
+ .carousel {
2583
+ overflow-x: hidden;
2584
+ }
2585
+
2586
+ .slide {
2587
+ flex: 0 0 100%;
2588
+ margin-right: 0;
2589
+ }
2590
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appscms-tools-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.8.8
4
+ version: 4.8.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - vivek-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-25 00:00:00.000000000 Z
11
+ date: 2024-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll