appscms-tools-theme 2.3.0 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,267 @@
1
+ {% assign file = page.fileName %}
2
+ {% assign lang = page.lang %}
3
+ {% assign folder = page.folderName %}
4
+ {% assign homeData= site.data[folder][lang][file] %}
5
+
6
+ <!DOCTYPE html>
7
+ <html lang="{{page.lang}}">
8
+ {% include head/index.html %}
9
+
10
+ <body>
11
+ {% include header/index.html %}
12
+ {%- if homeData.h1 or homeData.h2 -%}
13
+ <div class="flex-container mb-1">
14
+ <div class="flex-class py-5">
15
+ <div class="d-flex justify-content-center align-items-center">
16
+ <span class="fHhdVc">
17
+ {%- if homeData.img -%}
18
+ <div class="div-cont feature-img mr-2">
19
+ <img style=width:{{homeData.imgwidth}};height:{{homeData.imgheight}}; src="{{homeData.img}}"
20
+ alt="{{homeData.imgalt}}" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
21
+ </div>
22
+ {%- endif -%}
23
+ </span>
24
+ <h1 class="home1-top-h1 font-weight-bolder">{%- for word in homeData.h1 -%}
25
+ {%- if forloop.first == true -%}
26
+ {{word | capitalize }}
27
+ {%- else -%}
28
+ {{word}}
29
+ {%- endif -%}
30
+ {%- endfor -%}</h1>
31
+ </div>
32
+ <h2 class="home-top-h2">{%- for word in homeData.h2 -%}
33
+ {%- if forloop.first == true -%}
34
+ {{word | capitalize }}
35
+ {%- else -%}
36
+ {{word}}
37
+ {%- endif -%}
38
+ {%- endfor -%}</h2>
39
+ </div>
40
+ </div>
41
+ {%- endif -%}
42
+ {%- if homeData.features -%}
43
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
44
+ <div class="container">
45
+ <div class="row">
46
+ <div class="col-md-9 mx-auto">
47
+ {%- endif -%}
48
+ <div class="flex-container">
49
+ <div class="flex-class">
50
+ <ul class="home1-features">
51
+ {% for product in homeData.features %}
52
+ <li class="home1-features-box">
53
+ <div class="home1-inner-box">
54
+ <a class="home1-feature-name" href="{{product.url}}">
55
+ <div class="home1-feature-text">{{product.name}}</div>
56
+ </a>
57
+ <div style=background:{{homeData.color}} class="home1-feature-img" height="30px"
58
+ width="30px">
59
+ <img style="padding:5px;" src="{{product.icon}}" height="32px" width="32px"
60
+ alt="home1-feature-icon" {%- if site.crossorigin -%} crossorigin {%- endif
61
+ -%}>
62
+ </div>
63
+ <div class="home1-right-arrow-icon">
64
+ <div style="width:24px;height:24px">
65
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
66
+ fill="currentColor">
67
+ <path d="M9 7L10 6L16 12L10 18L9 17L14.17 12L9 7Z"></path>
68
+ </svg>
69
+ </div>
70
+ </div>
71
+ <p class="home1-feature-desc">{{product.description}}</p>
72
+ </div>
73
+ </li>
74
+ {% endfor %}
75
+ </ul>
76
+
77
+ <!-- another tools box design -->
78
+ <!-- <nav class="home1-tools-list">
79
+ <ul class="home1-tools-container">
80
+ {% for product in homeData.features %}
81
+ <li class="home1-tool-box">
82
+ <a href="{{product.url}}" class="home1-tool-name">
83
+ <div class="home1-tool-detials">
84
+ <div class="home1-tool-img">
85
+ <img src="{{product.icon}}" height="25px" width="25px"
86
+ alt="home1-tool-icon" {%- if site.crossorigin -%} crossorigin {%-
87
+ endif -%}>
88
+ </div>
89
+ <div class="home1-tool-text">{{product.name}}</div>
90
+ </div>
91
+ </a>
92
+ </li>
93
+ {% endfor %}
94
+ </ul>
95
+ </nav> -->
96
+ </div>
97
+ </div>
98
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
99
+ </div>
100
+ </div>
101
+ </div>
102
+ {%- endif -%}
103
+ {%- endif -%}
104
+ <div class="home-content-box" id="theme-content-box">
105
+ {{content}}
106
+ </div>
107
+ {%- if homeData.TEXTUAL_CONTENT -%}
108
+ <div class="container mt-4 mb-4">
109
+ <div class="row px-0">
110
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
111
+ <div class="col-md-9 mx-auto">
112
+ <div class="row">
113
+ {%- endif -%}
114
+ {% for data in homeData.TEXTUAL_CONTENT %}
115
+ <div class="
116
+ {%- if site.monumetricId and page.url != '/' and page.lang == 'en' -%} col-md-6 my-4 {%- else -%} col-md-4 my-4
117
+ {%- endif -%} ">
118
+ <div><img class=" feature-card-img" height="48px" width="48px" loading="lazy"
119
+ src="{{data.logoUrl}}" alt={{data.header}} {%- if site.crossorigin -%} crossorigin {%-
120
+ endif -%}>
121
+ <div class="feature-card-title">{{data.header | replace: "$variable", page.value}}</div>
122
+ <div class="feature-card-desc">{{data.content | replace: "$variable", page.value}}</div>
123
+ </div>
124
+ </div>
125
+ {% endfor %}
126
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
127
+ </div>
128
+ </div>
129
+ {%- endif -%}
130
+ </div>
131
+ </div>
132
+ {%- endif -%}
133
+
134
+ {%- if homeData.HOW_TO_CONTENT -%}
135
+ <section class="how-to-section">
136
+ <div class="container">
137
+ <div class="row">
138
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
139
+ <div class="col-md-9 mx-auto">
140
+ <div class="row">
141
+ {%- endif -%}
142
+ <div class="col-md-6 order-0 ">
143
+ {%- if homeData.HOW_TO_CONTENT.logoImageUrl -%}
144
+ <div class="how-to-img-wrapper "><img class="how-to-leftimg" height="180px" width="300px"
145
+ src="{{homeData.HOW_TO_CONTENT.logoImageUrl}}" loading="lazy"
146
+ alt="{{homeData.HOW_TO_CONTENT.logoImageAlt | default: 'how to image' }}" {%- if
147
+ site.crossorigin -%} crossorigin {%- endif -%}>
148
+ </div>
149
+ {%- endif -%}
150
+ </div>
151
+ <div class="col-md-6 order-1">
152
+ <div class="how-to-right">
153
+ <h3 class="how-to-title text-left">{{homeData.HOW_TO_CONTENT.heading | replace:
154
+ "$variable",
155
+ page.value}}</h3>
156
+ <ol class="how-to-list">
157
+ {% for data in homeData.HOW_TO_CONTENT.steps %}
158
+
159
+ <li id="step{{forloop.index}}" class="how-to-list-item">
160
+ <span>{{forloop.index}}.</span>{{data |
161
+ replace: "$variable",
162
+ page.value}}
163
+ </li>
164
+ {% endfor %}
165
+ </ol>
166
+ </div>
167
+ </div>
168
+ {%- if site.monumetricId and page.url != '/' and page.lang == "en" -%}
169
+ </div>
170
+ </div>
171
+ {%- endif -%}
172
+ </div>
173
+
174
+ </div>
175
+ </section>
176
+ {%- endif -%}
177
+ {%- assign showFaqs = true -%}
178
+ {%- for item in site.noFaqsList -%}
179
+ {%- if item == page.lang -%}
180
+ {%- assign showFaqs = false -%}
181
+ {%- break -%}
182
+ {%- else -%}
183
+ {%- assign showFaqs = true -%}
184
+ {%- endif -%}
185
+ {%- endfor -%}
186
+ {%- if showFaqs == true -%}
187
+ {%- if homeData.FAQ -%}
188
+ <section class="faq-section">
189
+ <div class="container">
190
+ <div class="row">
191
+ <div class="col-md-8 mx-auto">
192
+ <div class="faq">
193
+ {%- if homeData.FAQ.size>0 -%}
194
+ <h3 class="feature-h1 text-center mb-4">{{homeData.faqheading | default: 'Frequently Asked
195
+ Questions'}}
196
+ </h3>
197
+ {%- endif -%}
198
+ <ul class="list-unstyled">
199
+ {% for data in homeData.FAQ %}
200
+ <li>
201
+ <h3 class="faq-question" itemprop="name">{{data.question | replace: "$variable",
202
+ page.value}}<em style="transform: rotate(-135deg);">
203
+ <i></i></em>
204
+ </h3>
205
+ <div style="display: block;">
206
+ <p class="faq-answer" itemprop="text">{{data.answer | replace: "$variable",
207
+ page.value}}
208
+ </p>
209
+ </div>
210
+ </li>
211
+ <hr>
212
+ {% endfor %}
213
+ </ul>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ </div>
219
+ </section>
220
+ {%- endif -%}
221
+ {%- endif -%}
222
+
223
+
224
+ <!-- {%- include share/socialshare.html -%} -->
225
+ {%- include Rating/rating.html -%}
226
+ {%- if homeData.USPS -%}
227
+ {%- include /Usp/usp.html -%}
228
+
229
+ {%- endif -%}
230
+ {%- if homeData.display_formats -%}
231
+ <div class="container file-detail-table ">
232
+ {%- include fileformat/fileformatdetail.html -%}
233
+ </div>
234
+ {%- endif -%}
235
+ {%- if homeData.compare_formats -%}
236
+ <div class="container compare-table ">
237
+ {%- include fileformat/comparisonfiles.html -%}
238
+ </div>
239
+ {%- endif -%}
240
+ <!-- {%- assign langen = "en" -%}
241
+ {%- if site.data[folder][langen][file].categories -%}
242
+ {% assign categories= site.data[folder][langen][file].categories %}
243
+ {%- else -%}
244
+ {% assign categories= page.categories %}
245
+ {%- endif -%}
246
+ {%- if site.data[folder][langen][file].tags -%}
247
+ {% assign tags= site.data[folder][langen][file].tags %}
248
+ {%- else -%}
249
+ {% assign tags= page.tags %}
250
+ {%- endif -%}
251
+ {%- if categories.size> 0 or tags.size>0-%}
252
+ {%- include section/related_categories_post.html -%}
253
+ {%- else -%}
254
+ {%- include section/recent_posts.html -%}
255
+ {% endif %}
256
+ {%- if site.customblogdata -%}
257
+ {%- if categories.size> 0 or tags.size>0-%}
258
+ {%- include customblog/relatedposts.html -%}
259
+ {%- else -%}
260
+ {%- include customblog/recentposts.html -%}
261
+ {% endif %}
262
+ {%- endif -%} -->
263
+ {% include footer/index.html %}
264
+ {% include script.html %}
265
+ </body>
266
+
267
+ </html>
data/_layouts/home.html CHANGED
@@ -9,8 +9,8 @@
9
9
  <body>
10
10
  {% include header/index.html %}
11
11
  {%- if homeData.nofileupload -%}
12
- <div id="safeui-alert" class="alert alert-{{homeData.variant | default: 'info'}} alert-dismissible fade show text-center"
13
- role="alert">
12
+ <div id="safeui-alert"
13
+ class="alert alert-{{homeData.variant | default: 'info'}} alert-dismissible fade show text-center" role="alert">
14
14
  <div class="container"> <img src="/assets/secure.svg" height="23px" width="18px" alt="secure" {%- if
15
15
  site.crossorigin -%} crossorigin {%- endif -%}> &nbsp;
16
16
  {%- if homeData.alertmsg -%}
@@ -72,8 +72,8 @@
72
72
  site.crossorigin -%} crossorigin {%- endif -%}>
73
73
  </div>
74
74
  </div>
75
- <div class="home-feature-desc">{{product.description}}</div><a class="home-feature-name"
76
- href="{{product.url}}">{{product.name}}</a>
75
+ <div class="home-feature-desc">{{product.description}}</div>
76
+ <a class="home-feature-name" href="{{product.url}}">{{product.name}}</a>
77
77
  </li>
78
78
  {% endfor %}
79
79
  </ul>
@@ -0,0 +1,117 @@
1
+ ---
2
+ layout: feature
3
+ ---
4
+
5
+
6
+
7
+ <div class="container">
8
+ {%- assign pageData = site.data[page.folderName][page.lang][page.fileName] -%}
9
+ <div class="custom-box" style="background-color:{{pageData.color}};">
10
+ <div class="inner-box">
11
+ <div style="display:none;" id="file-loader"><img src="/spinner.gif" alt="">
12
+ <p>Please Wait ,Loading Your file </p>
13
+ </div>
14
+ <div class="saving-file-download-wrap" style="display: none;">
15
+ <img loading="lazy" class="trust-img" src="/trust.svg" alt="trust">
16
+ <p class="text-white my-2">Thanks for your patience</p>
17
+ <button class="btn" id="download-zip">Download</button>
18
+ </div>
19
+ <div class="file-input">
20
+ <div class="mb-4 d-flex justify-content-center">
21
+ <svg xmlns="http://www.w3.org/2000/svg" id="img-svg" viewBox="0 0 96 60">
22
+ <path fill="white"
23
+ d="M61.9655252,3.24869071 L61.9765763,3.41278068 L62.045,5.866 L73.2405238,6.25793424 C74.5651997,6.30419294 75.6130942,7.37295092 75.6521743,8.67919891 L75.6517521,8.84366004 L73.9765763,56.8144197 C73.9303176,58.1390957 72.8615596,59.1869902 71.5553116,59.2260703 L71.3908505,59.2256481 L68.3103384,59.1184351 C68.0464245,59.8400339 67.3786666,60.3670921 66.5807111,60.425963 L66.4314488,60.4314488 L66.4314488,60.4314488 L30.4314488,60.4314488 C29.3268793,60.4314488 28.4314488,59.5360183 28.4314488,58.4314488 L28.431,55.114 L25.262454,55.2256481 C23.9377781,55.2719068 22.8178834,54.2788497 22.6877793,52.9785097 L22.6767282,52.8144197 L21.0015524,4.84366004 C20.9552937,3.51898409 21.9483508,2.39908942 23.2486907,2.2689853 L23.4127807,2.25793424 L59.3908505,1.00155235 C60.7155264,0.955293651 61.8354211,1.94835077 61.9655252,3.24869071 Z M54.2794488,39.4234488 L45.0024366,47.6809882 L40.7104488,42.4274488 L29.431,51.895 L29.4314488,58.4314488 C29.4314488,58.9442846 29.817489,59.3669559 30.3148276,59.424721 L30.4314488,59.4314488 L66.4314488,59.4314488 C66.9442846,59.4314488 67.3669559,59.0454086 67.424721,58.5480699 L67.4314488,58.4314488 L67.4304488,52.8324488 L54.2794488,39.4234488 Z M37.2275545,6.00094318 C36.4483334,5.97373218 35.7872098,6.54589593 35.688023,7.30354781 L35.676119,7.44768018 L35.676,8.431 L60.4314488,8.43144877 L68.4314488,16.4314488 L68.431,58.121 L71.4257499,58.2262572 C72.2049711,58.2534682 72.8660946,57.6813045 72.9652815,56.9236526 L72.9771854,56.7795202 L74.6523613,8.80876055 C74.6795723,8.0295394 74.1074085,7.36841587 73.3497567,7.26922904 L73.2056243,7.25732506 L37.2275545,6.00094318 Z M59.4257499,2.00094318 L23.4476802,3.25732506 C22.668459,3.28453606 22.0488581,3.9014237 22.002764,4.6641489 L22.0009432,4.80876055 L23.676119,52.7795202 C23.70333,53.5587414 24.3202177,54.1783423 25.0829429,54.2244364 L25.2275545,54.2262572 L28.431,54.114 L28.4314488,10.4314488 C28.4314488,9.32687927 29.3268793,8.43144877 30.4314488,8.43144877 L34.611,8.431 L34.6767282,7.41278068 C34.7229869,6.08810473 35.7917449,5.04021022 37.0979929,5.00113017 L37.262454,5.00155235 L61.045,5.831 L60.9771854,3.44768018 C60.9499744,2.66845903 60.3330868,2.04885809 59.5703616,2.00276399 L59.4257499,2.00094318 Z M59.431,9.431 L30.4314488,9.43144877 C29.9186129,9.43144877 29.4959416,9.81748896 29.4381765,10.3148276 L29.4314488,10.4314488 L29.431,50.591 L40.8439098,41.010846 L45.1168036,46.2404726 L54.3266522,38.0432874 L67.431,51.405 L67.431,17.431 L59.4314488,17.4314488 L59.431,9.431 Z M58.4314488,26.4314488 C60.088303,26.4314488 61.4314488,27.7745945 61.4314488,29.4314488 C61.4314488,31.088303 60.088303,32.4314488 58.4314488,32.4314488 C56.7745945,32.4314488 55.4314488,31.088303 55.4314488,29.4314488 C55.4314488,27.7745945 56.7745945,26.4314488 58.4314488,26.4314488 Z M60.431,9.846 L60.431,16.431 L67.016,16.431 L60.431,9.846 Z">
24
+ </path>
25
+ </svg>
26
+ </div>
27
+ <div class="d-flex justify-content-center align-items-center ">
28
+ <div id="Inputbox" class="boxes"> <img height="22px" class="mr-1" width="22px"
29
+ src="/assets/images/addimg.svg" />
30
+ <span class='ml-1'>CHOOSE FILE</span>
31
+ </div>
32
+ <div class="file-pick-dropdown">
33
+ <i class="fas fa-angle-down arrow-sign "></i>
34
+ <div class="file-picker-dropdown" style="display: none;">
35
+ <button id="dropbox"> <svg viewBox="0 0 24 24" fill="#0061FF"
36
+ xmlns="http://www.w3.org/2000/svg">
37
+ <path id="icon"
38
+ d="M12.0146 6.57367L6.50732 10.1473L12.0146 13.721L6.50732 17.2947L1 13.6912L6.50732 10.1176L1 6.57367L6.50732 3L12.0146 6.57367ZM6.47803 18.4263L11.9854 14.8527L17.4927 18.4263L11.9854 22L6.47803 18.4263ZM12.0146 13.6912L17.522 10.1176L12.0146 6.57367L17.4927 3L23 6.57367L17.4927 10.1473L23 13.721L17.4927 17.2947L12.0146 13.6912Z">
39
+ </path>
40
+ </svg> From Dropbox</button>
41
+ <button id='filepicker'> <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
42
+ <path id="Path" d="M8.33331 3H15.6666L23 15H15.6666L8.33331 3Z" fill="#FFC107">
43
+ </path>
44
+ <path id="Path_2" d="M4.6012 21L8.30086 15H23L19.3333 21H4.6012Z" fill="#1976D2">
45
+ </path>
46
+ <path id="Path_3" d="M1 15.0625L4.60119 21L12 9L8.33333 3L1 15.0625Z"
47
+ fill="#4CAF50">
48
+ </path>
49
+ </svg> From Google Drive</button>
50
+ </div>
51
+ </div>
52
+ </div>
53
+ <p id="dropfile">or drop your file here</p>
54
+ </div>
55
+ </div>
56
+ </div>
57
+
58
+ <div class="workspace">
59
+ <div class="row">
60
+ <div class="col-12">
61
+ <div class="download-wrapper mt-3">
62
+ <div class="d-flex align-items-center justify-content-center">
63
+ <div class="select-format-title">image's format</div>
64
+ <div class="download-format">
65
+ <select name="image-format" id="image-format">
66
+ <option value="png">png</option>
67
+ <option value="jpg">jpg</option>
68
+ <option value="jpeg">jpeg</option>
69
+ <option value="webp">webp</option>
70
+ <option value="gif">gif</option>
71
+ </select>
72
+ </div>
73
+ </div>
74
+ <div>
75
+ <button id="download-button" style="background-color: {{pageData.color}};"><svg
76
+ xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
77
+ <path
78
+ d="M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 302.6l-103.1 103.1C270.7 414.6 260.9 416 256 416c-4.881 0-14.65-1.391-22.65-9.398L129.4 302.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 306.8V128c0-17.69 14.33-32 32-32s32 14.31 32 32v178.8l49.38-49.38c12.5-12.5 32.75-12.5 45.25 0S395.1 290.1 382.6 302.6z" />
79
+ </svg>Download</button>
80
+ </div>
81
+ </div>
82
+
83
+ </div>
84
+ </div>
85
+ {%- if page.commonStructure != false -%}
86
+ <div class="row">
87
+ <div class="col-md-8 mx-auto">
88
+ <div class="select-img-panel">
89
+ <div id="saving-data">
90
+ <img loading="lazy" src="/assets/images/loader.gif" alt="saving"> <span class="ml-2">Saving your
91
+ images...</span>
92
+ </div>
93
+ <div id="pixel-box-panel">
94
+ <canvas id="pixelitcanvas"></canvas>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ <div class="col-md-4">
99
+ <div class="options-panel">
100
+ <div class="title">
101
+ {{pageData.optionPanelTitle}}
102
+ </div>
103
+ {{content}}
104
+ </div>
105
+ </div>
106
+ </div>
107
+ {%- else -%}
108
+ {{content}}
109
+ {%- endif -%}
110
+ </div>
111
+
112
+ </div>
113
+ {%- assign fileType = "image/*" -%}
114
+ {%- if page.fileType -%}
115
+ {%- assign fileType = page.fileType -%}
116
+ {%- endif -%}
117
+ <input class="d-none" onchange="fileOnChange()" type="file" id="file" accept="{{fileType}}" />
data/assets/css/batch.css CHANGED
@@ -59,6 +59,10 @@
59
59
  color: #000;
60
60
  }
61
61
 
62
+ .files-processing-list {
63
+ box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
64
+ }
65
+
62
66
  .inputfiles-label {
63
67
  background: #d6f0fb70;
64
68
  /* padding: 10px; */
@@ -133,6 +137,7 @@
133
137
 
134
138
  .table td,
135
139
  .table th {
140
+ font-size: 15px;
136
141
  border-top: none !important;
137
142
  border-bottom: 1px solid #dee2e6;
138
143
  vertical-align: middle !important;
@@ -148,33 +153,39 @@
148
153
  font-size: 14px;
149
154
  }
150
155
 
151
- .download-file-btn:hover,
156
+ .download-file-btn:hover {
157
+ color: #fff !important;
158
+ }
159
+
152
160
  .add-more-files-button:hover {
153
- color: white !important;
161
+ color: #fff !important
154
162
  }
155
163
 
156
164
  .add-more-files-button {
157
- padding: 6px 20px;
165
+ border: 1px solid rgba(0, 0, 0, 0.1) !important;
166
+ border-bottom-left-radius: unset;
167
+ border-bottom-right-radius: unset;
158
168
  color: #fff;
159
169
  background-color: #404040;
160
- border-color: #404040;
161
- /* width: 200px; */
162
170
  font-size: 15px;
163
171
  display: flex;
164
172
  align-items: center;
165
173
  justify-content: center;
166
174
  gap: 10px;
167
- /* margin-left: 12px; */
175
+ position: absolute;
176
+ top: -28px;
177
+ padding: 9px 20px;
178
+
168
179
  }
169
180
 
170
181
  .add-more-files-button img {
171
- width: 30px;
182
+ width: 18px;
172
183
  }
173
184
 
174
185
  .bottom-section-container {
175
- background: #0000000f;
176
- padding: 25px 10px;
177
- border: 1px solid #0000000f;
186
+ display: none;
187
+ background: #f8f9fa;
188
+ border: 1px solid #f8f9fa;
178
189
  box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
179
190
  }
180
191
 
@@ -184,6 +195,9 @@
184
195
  display: flex;
185
196
  gap: 20px;
186
197
  align-items: center;
198
+ margin-top: 1.5rem;
199
+ justify-content: center;
200
+ width: 100%;
187
201
  }
188
202
 
189
203
  #submit-button:focus {
@@ -359,8 +373,8 @@ input[type='range']::-moz-focus-outer {
359
373
  display: flex;
360
374
  align-items: flex-start;
361
375
  border-bottom: 1px solid #ddd;
362
- margin: 12px 0px;
363
- padding: 12px 0px;
376
+ /* margin: 12px 0px; */
377
+ /* padding: 12px 0px; */
364
378
  flex-direction: column;
365
379
  }
366
380
 
@@ -375,15 +389,16 @@ input[type='range']::-moz-focus-outer {
375
389
  #addMore,
376
390
  #common_btn,
377
391
  #download-zip {
392
+ border-radius: 5px;
378
393
  cursor: pointer;
379
394
  display: inline-block;
380
395
  width: 100%;
381
396
  padding: 14px 0;
382
- margin-bottom: 20px;
397
+ /* margin-bottom: 20px; */
383
398
  text-align: center;
384
- border-radius: 50px;
385
- background: var(--maincolor) !important;
386
- font-size: 18px;
399
+ /* border-radsius: 50px; */
400
+ background: #404044 !important;
401
+ font-size: 15px;
387
402
  color: #fff;
388
403
  font-weight: 700;
389
404
  text-decoration: none;
@@ -398,7 +413,7 @@ input[type='range']::-moz-focus-outer {
398
413
  }
399
414
 
400
415
  #download-zip {
401
- padding: 10px 16px;
416
+ padding: 10px 20px;
402
417
  display: none;
403
418
  /* backgr/ound: #fff; */
404
419
  }
@@ -0,0 +1,66 @@
1
+ .blog1-card {
2
+ position: relative;
3
+ display: -ms-flexbox;
4
+ display: flex;
5
+ -ms-flex-direction: column;
6
+ flex-direction: column;
7
+ min-width: 0;
8
+ word-wrap: break-word;
9
+ background-color: #fff;
10
+ background-clip: border-box;
11
+ width: 100%;
12
+ border-radius: 0.25rem;
13
+ /* box-shadow: 0 10px 35px 0 rgb(0 0 0 / 9%); */
14
+ }
15
+
16
+ .blog1-card-body {
17
+ flex: 1 1 auto;
18
+ min-height: 1px;
19
+ padding: 1rem 0px;
20
+ }
21
+
22
+ .blog1-card-title {
23
+ font-weight: 600;
24
+ font-size: 20px;
25
+ line-height: 1.3;
26
+ text-decoration: underline;
27
+ text-decoration-color: transparent;
28
+ text-decoration-thickness: 2px;
29
+ color: #1e2740;
30
+ transition: all 0.35s;
31
+ }
32
+
33
+ .blog-card-desc {
34
+ font-size: 15px;
35
+ margin-bottom: 0;
36
+ color: #716f8a
37
+ }
38
+
39
+ .blog1-card-img-top {
40
+ border-radius: 10px;
41
+ }
42
+
43
+ .blog1-card:hover {
44
+ will-change: transform;
45
+ transition: transform .2s;
46
+ transform: translateY(-5px);
47
+ }
48
+
49
+ .blog1-card:hover .blog1-card-title {
50
+ text-decoration: underline;
51
+ text-decoration-color: #1e2740;
52
+ text-decoration-thickness: 2px;
53
+ }
54
+
55
+ .blog1-wrapfooter img {
56
+ width: 40px;
57
+ height: 40px;
58
+ }
59
+
60
+ .blog1-wrapfooter .post-date {
61
+ font-size: 12px;
62
+ }
63
+
64
+ .blog1-wrapfooter .author-meta {
65
+ padding: 0 10px;
66
+ }