appscms-tools-theme 1.5.1 → 1.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/blog/blog.json +1 -269
- data/_data/home/en/en.json +0 -3
- data/_data/rating/rating.json +1 -1
- data/_includes/head/index.html +2 -8
- data/_includes/script.html +7 -4
- data/_layouts/feature.html +1 -1
- data/_layouts/post.html +9 -0
- data/assets/css/bootstrap.min.css +7 -0
- data/assets/css/tools.css +13 -629
- data/assets/js/googledrive.js +2 -0
- data/assets/js/multiselect.js +2 -0
- metadata +3 -2
data/assets/css/tools.css
CHANGED
@@ -1,14 +1,9 @@
|
|
1
1
|
* {
|
2
2
|
box-sizing: border-box;
|
3
|
-
margin-block-start: 0px;
|
4
|
-
margin-block-end: 0px;
|
5
|
-
margin-inline-start: 0px;
|
6
|
-
margin-inline-end: 0px;
|
7
3
|
}
|
8
4
|
body {
|
9
5
|
padding: 0;
|
10
6
|
margin: 0;
|
11
|
-
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
12
7
|
-webkit-font-smoothing: antialiased;
|
13
8
|
box-sizing: border-box;
|
14
9
|
overflow-y: scroll;
|
@@ -17,6 +12,10 @@ body {
|
|
17
12
|
header {
|
18
13
|
width: 100%;
|
19
14
|
}
|
15
|
+
a {
|
16
|
+
text-decoration: none;
|
17
|
+
color: rgb(26, 25, 25);
|
18
|
+
}
|
20
19
|
.navbar-toggler {
|
21
20
|
outline: none !important;
|
22
21
|
}
|
@@ -65,40 +64,6 @@ header {
|
|
65
64
|
font-size: 14px !important;
|
66
65
|
font-weight: 500;
|
67
66
|
}
|
68
|
-
|
69
|
-
.navCatContainer {
|
70
|
-
position: absolute;
|
71
|
-
z-index: 9;
|
72
|
-
padding: 25px;
|
73
|
-
height: 300px;
|
74
|
-
background: white;
|
75
|
-
width: 100%;
|
76
|
-
}
|
77
|
-
.navCat {
|
78
|
-
display: flex;
|
79
|
-
width: 100%;
|
80
|
-
justify-content: space-between;
|
81
|
-
}
|
82
|
-
.anchor_color {
|
83
|
-
color: rgb(117, 117, 117);
|
84
|
-
}
|
85
|
-
.nav__item_Cat {
|
86
|
-
margin: 0 !important;
|
87
|
-
padding: 0 15px;
|
88
|
-
font-size: 15px;
|
89
|
-
font-weight: 400;
|
90
|
-
line-height: 38px;
|
91
|
-
text-align: left;
|
92
|
-
/* color: #11304e; */
|
93
|
-
list-style: none;
|
94
|
-
position: relative;
|
95
|
-
}
|
96
|
-
.navItemlist {
|
97
|
-
width: 100%;
|
98
|
-
display: flex;
|
99
|
-
flex-direction: column;
|
100
|
-
padding: 20px 0;
|
101
|
-
}
|
102
67
|
@media (max-width: 992px) {
|
103
68
|
.dropdown-menu {
|
104
69
|
overflow-y: scroll;
|
@@ -110,9 +75,6 @@ header {
|
|
110
75
|
flex-direction: column;
|
111
76
|
padding: 0px 30px;
|
112
77
|
}
|
113
|
-
.catPad {
|
114
|
-
padding: 20px 0;
|
115
|
-
}
|
116
78
|
.navbar-nav {
|
117
79
|
margin: 0 !important;
|
118
80
|
}
|
@@ -165,7 +127,6 @@ header {
|
|
165
127
|
.how-to-list-item {
|
166
128
|
line-height: 24px;
|
167
129
|
font-size: 16px;
|
168
|
-
|
169
130
|
font-weight: 400;
|
170
131
|
display: flex;
|
171
132
|
padding: 6px 0px;
|
@@ -173,21 +134,20 @@ header {
|
|
173
134
|
.how-to-title {
|
174
135
|
line-height: 30px;
|
175
136
|
font-size: 20px;
|
176
|
-
|
177
137
|
font-weight: 600;
|
178
138
|
margin: 0px;
|
179
139
|
padding-bottom: 12px;
|
180
140
|
}
|
181
|
-
|
182
141
|
.feature-card-img {
|
183
142
|
width: 48px;
|
184
143
|
height: 48px;
|
185
144
|
}
|
186
|
-
|
187
|
-
.
|
145
|
+
.feature-card-title,
|
146
|
+
.faq-question,
|
147
|
+
.feature-card-desc,
|
148
|
+
.faq-answer {
|
188
149
|
line-height: 24px;
|
189
150
|
font-size: 16px;
|
190
|
-
|
191
151
|
font-weight: 600;
|
192
152
|
color: rgb(33, 33, 33);
|
193
153
|
text-align: center;
|
@@ -195,183 +155,20 @@ header {
|
|
195
155
|
padding: 12px 0px;
|
196
156
|
}
|
197
157
|
.faq-question {
|
198
|
-
line-height: 24px;
|
199
|
-
font-size: 16px;
|
200
|
-
|
201
|
-
font-weight: 600;
|
202
|
-
color: rgb(33, 33, 33);
|
203
158
|
text-align: left;
|
204
|
-
margin: 0px;
|
205
|
-
padding: 12px 0px;
|
206
159
|
}
|
207
160
|
.feature-card-desc {
|
208
|
-
line-height: 24px;
|
209
|
-
font-size: 16px;
|
210
|
-
|
211
161
|
font-weight: 400;
|
212
|
-
color: rgb(33, 33, 33);
|
213
|
-
text-align: center;
|
214
|
-
margin: 0px;
|
215
|
-
padding: 0px 24px;
|
216
|
-
max-width: 100%;
|
217
162
|
}
|
218
163
|
.faq-answer {
|
219
|
-
line-height: 24px;
|
220
|
-
font-size: 16px;
|
221
|
-
|
222
164
|
font-weight: 400;
|
223
|
-
color: rgb(33, 33, 33);
|
224
165
|
text-align: left;
|
225
166
|
margin: 0px;
|
226
167
|
max-width: 100%;
|
227
168
|
}
|
228
|
-
|
229
169
|
main {
|
230
170
|
display: block;
|
231
171
|
}
|
232
|
-
h1 {
|
233
|
-
font-size: 2em;
|
234
|
-
margin: 0.67em 0;
|
235
|
-
}
|
236
|
-
hr {
|
237
|
-
box-sizing: content-box;
|
238
|
-
height: 0;
|
239
|
-
overflow: visible;
|
240
|
-
}
|
241
|
-
pre {
|
242
|
-
font-family: monospace, monospace;
|
243
|
-
font-size: 1em;
|
244
|
-
}
|
245
|
-
a {
|
246
|
-
background-color: transparent;
|
247
|
-
}
|
248
|
-
a:hover {
|
249
|
-
color: currentColor;
|
250
|
-
text-decoration: none;
|
251
|
-
}
|
252
|
-
abbr[title] {
|
253
|
-
border-bottom: none;
|
254
|
-
-webkit-text-decoration: underline;
|
255
|
-
text-decoration: underline;
|
256
|
-
-webkit-text-decoration: underline dotted;
|
257
|
-
text-decoration: underline dotted;
|
258
|
-
}
|
259
|
-
b,
|
260
|
-
strong {
|
261
|
-
font-weight: bolder;
|
262
|
-
}
|
263
|
-
code,
|
264
|
-
kbd,
|
265
|
-
samp {
|
266
|
-
font-family: monospace, monospace;
|
267
|
-
font-size: 1em;
|
268
|
-
}
|
269
|
-
small {
|
270
|
-
font-size: 80%;
|
271
|
-
}
|
272
|
-
sub,
|
273
|
-
sup {
|
274
|
-
font-size: 75%;
|
275
|
-
line-height: 0;
|
276
|
-
position: relative;
|
277
|
-
vertical-align: baseline;
|
278
|
-
}
|
279
|
-
sub {
|
280
|
-
bottom: -0.25em;
|
281
|
-
}
|
282
|
-
sup {
|
283
|
-
top: -0.5em;
|
284
|
-
}
|
285
|
-
img {
|
286
|
-
border-style: none;
|
287
|
-
}
|
288
|
-
button,
|
289
|
-
input,
|
290
|
-
optgroup,
|
291
|
-
select,
|
292
|
-
textarea {
|
293
|
-
font-family: inherit;
|
294
|
-
font-size: 100%;
|
295
|
-
line-height: 1.15;
|
296
|
-
margin: 0;
|
297
|
-
}
|
298
|
-
button,
|
299
|
-
input {
|
300
|
-
overflow: visible;
|
301
|
-
}
|
302
|
-
button,
|
303
|
-
select {
|
304
|
-
text-transform: none;
|
305
|
-
}
|
306
|
-
button,
|
307
|
-
[type='button'],
|
308
|
-
[type='reset'],
|
309
|
-
[type='submit'] {
|
310
|
-
-webkit-appearance: button;
|
311
|
-
}
|
312
|
-
button::-moz-focus-inner,
|
313
|
-
[type='button']::-moz-focus-inner,
|
314
|
-
[type='reset']::-moz-focus-inner,
|
315
|
-
[type='submit']::-moz-focus-inner {
|
316
|
-
border-style: none;
|
317
|
-
padding: 0;
|
318
|
-
}
|
319
|
-
button:-moz-focusring,
|
320
|
-
[type='button']:-moz-focusring,
|
321
|
-
[type='reset']:-moz-focusring,
|
322
|
-
[type='submit']:-moz-focusring {
|
323
|
-
outline: 1px dotted ButtonText;
|
324
|
-
}
|
325
|
-
fieldset {
|
326
|
-
padding: 0.35em 0.75em 0.625em;
|
327
|
-
}
|
328
|
-
legend {
|
329
|
-
box-sizing: border-box;
|
330
|
-
color: inherit;
|
331
|
-
display: table;
|
332
|
-
max-width: 100%;
|
333
|
-
padding: 0;
|
334
|
-
white-space: normal;
|
335
|
-
}
|
336
|
-
progress {
|
337
|
-
vertical-align: baseline;
|
338
|
-
}
|
339
|
-
textarea {
|
340
|
-
overflow: auto;
|
341
|
-
}
|
342
|
-
[type='checkbox'],
|
343
|
-
[type='radio'] {
|
344
|
-
box-sizing: border-box;
|
345
|
-
padding: 0;
|
346
|
-
}
|
347
|
-
[type='number']::-webkit-inner-spin-button,
|
348
|
-
[type='number']::-webkit-outer-spin-button {
|
349
|
-
height: auto;
|
350
|
-
}
|
351
|
-
[type='search'] {
|
352
|
-
-webkit-appearance: textfield;
|
353
|
-
outline-offset: -2px;
|
354
|
-
}
|
355
|
-
[type='search']::-webkit-search-decoration {
|
356
|
-
-webkit-appearance: none;
|
357
|
-
}
|
358
|
-
::-webkit-file-upload-button {
|
359
|
-
-webkit-appearance: button;
|
360
|
-
font: inherit;
|
361
|
-
}
|
362
|
-
details {
|
363
|
-
display: block;
|
364
|
-
}
|
365
|
-
summary {
|
366
|
-
display: list-item;
|
367
|
-
}
|
368
|
-
template {
|
369
|
-
display: none;
|
370
|
-
}
|
371
|
-
[hidden] {
|
372
|
-
display: none;
|
373
|
-
}
|
374
|
-
|
375
172
|
#app {
|
376
173
|
display: -webkit-box;
|
377
174
|
display: -webkit-flex;
|
@@ -379,7 +176,6 @@ template {
|
|
379
176
|
display: flex;
|
380
177
|
min-height: 100vh;
|
381
178
|
}
|
382
|
-
|
383
179
|
.box-border {
|
384
180
|
position: absolute;
|
385
181
|
inset: 12px;
|
@@ -388,7 +184,6 @@ template {
|
|
388
184
|
}
|
389
185
|
.div-cont {
|
390
186
|
display: flex;
|
391
|
-
/* overflow: hidden; */
|
392
187
|
}
|
393
188
|
.content-box {
|
394
189
|
display: flex;
|
@@ -401,7 +196,6 @@ template {
|
|
401
196
|
justify-content: center;
|
402
197
|
width: 100%;
|
403
198
|
}
|
404
|
-
|
405
199
|
.flex-class {
|
406
200
|
-webkit-flex: 1 0 auto;
|
407
201
|
-ms-flex: 1 0 auto;
|
@@ -432,16 +226,17 @@ template {
|
|
432
226
|
flex: 1 0 auto;
|
433
227
|
width: 100%;
|
434
228
|
}
|
435
|
-
.feature-h1
|
229
|
+
.feature-h1,
|
230
|
+
.home-top-h2 {
|
436
231
|
line-height: 36px;
|
437
232
|
font-size: 30px;
|
438
|
-
|
439
233
|
font-weight: 600;
|
440
234
|
color: rgb(33, 33, 33);
|
441
235
|
text-align: center;
|
442
236
|
margin: 0px;
|
443
237
|
}
|
444
|
-
.feature-h2
|
238
|
+
.feature-h2,
|
239
|
+
.home-top-h2 {
|
445
240
|
font-weight: 300;
|
446
241
|
color: rgb(33, 33, 33);
|
447
242
|
text-align: center;
|
@@ -514,7 +309,6 @@ template {
|
|
514
309
|
.home-feature-desc {
|
515
310
|
line-height: 18px;
|
516
311
|
font-size: 14px;
|
517
|
-
|
518
312
|
font-stretch: 400;
|
519
313
|
font-weight: 400;
|
520
314
|
position: absolute;
|
@@ -536,32 +330,12 @@ template {
|
|
536
330
|
top: 84px;
|
537
331
|
}
|
538
332
|
}
|
539
|
-
.home-top-h1 {
|
540
|
-
line-height: 30px;
|
541
|
-
font-size: 22px;
|
542
|
-
|
543
|
-
font-stretch: 400;
|
544
|
-
font-weight: 600;
|
545
|
-
color: rgba(33, 33, 33, 1);
|
546
|
-
text-align: center;
|
547
|
-
margin: 0;
|
548
|
-
}
|
549
333
|
@media (min-width: 768px) {
|
550
334
|
.home-top-h1 {
|
551
335
|
line-height: 36px;
|
552
336
|
font-size: 30px;
|
553
337
|
}
|
554
338
|
}
|
555
|
-
.home-top-h2 {
|
556
|
-
line-height: 30px;
|
557
|
-
font-size: 20px;
|
558
|
-
|
559
|
-
font-stretch: 400;
|
560
|
-
font-weight: 300;
|
561
|
-
color: rgba(33, 33, 33, 1);
|
562
|
-
text-align: center;
|
563
|
-
margin: 0;
|
564
|
-
}
|
565
339
|
@media (min-width: 768px) {
|
566
340
|
.home-top-h2 {
|
567
341
|
line-height: 30px;
|
@@ -572,11 +346,6 @@ html {
|
|
572
346
|
line-height: 1.15;
|
573
347
|
-webkit-text-size-adjust: 100%;
|
574
348
|
}
|
575
|
-
|
576
|
-
* {
|
577
|
-
box-sizing: border-box;
|
578
|
-
}
|
579
|
-
|
580
349
|
.header {
|
581
350
|
min-height: 80px;
|
582
351
|
}
|
@@ -584,124 +353,7 @@ html {
|
|
584
353
|
text-align: center;
|
585
354
|
margin-top: 90px;
|
586
355
|
}
|
587
|
-
.heading-h1 {
|
588
|
-
font-size: 60px;
|
589
|
-
font-weight: 800;
|
590
|
-
line-height: 1.33;
|
591
|
-
color: #11304e;
|
592
|
-
margin: 70px 0 12px;
|
593
|
-
}
|
594
|
-
.heading-h2 {
|
595
|
-
font-size: 20px;
|
596
|
-
font-weight: 500;
|
597
|
-
opacity: 70%;
|
598
|
-
color: #11304e;
|
599
|
-
}
|
600
|
-
.img-uploader {
|
601
|
-
margin-top: 45px;
|
602
|
-
}
|
603
|
-
.uploader {
|
604
|
-
background-color: #974fff;
|
605
|
-
border-radius: 25px;
|
606
|
-
position: relative;
|
607
|
-
min-height: 1px;
|
608
|
-
padding-right: 15px;
|
609
|
-
padding-left: 15px;
|
610
|
-
margin: auto;
|
611
|
-
width: 65%;
|
612
|
-
padding: 10px;
|
613
|
-
height: 300px;
|
614
|
-
}
|
615
|
-
.inner-box {
|
616
|
-
background-color: #11304e2e;
|
617
|
-
border-radius: 25px;
|
618
|
-
width: 100%;
|
619
|
-
height: 280px;
|
620
|
-
overflow: auto;
|
621
|
-
text-align: justify;
|
622
|
-
}
|
623
|
-
.dropzone {
|
624
|
-
text-align: center;
|
625
|
-
color: white;
|
626
|
-
}
|
627
|
-
.drop-span {
|
628
|
-
color: white;
|
629
|
-
}
|
630
|
-
.button {
|
631
|
-
display: inline-block;
|
632
|
-
background: rgb(255, 255, 255);
|
633
|
-
border-radius: 10px;
|
634
|
-
padding: 13px 22px;
|
635
|
-
font-size: 16px;
|
636
|
-
font-weight: bold;
|
637
|
-
line-height: 1.19;
|
638
|
-
letter-spacing: 0.32px;
|
639
|
-
cursor: pointer;
|
640
|
-
border: unset;
|
641
|
-
color: #974fff !important;
|
642
|
-
/* margin-left: 137px; */
|
643
|
-
}
|
644
|
-
.download-reset-button {
|
645
|
-
display: flex;
|
646
|
-
float: right;
|
647
|
-
align-items: center;
|
648
|
-
position: sticky;
|
649
|
-
right: 0;
|
650
|
-
bottom: 0;
|
651
|
-
}
|
652
|
-
.extract-container {
|
653
|
-
width: 90%;
|
654
|
-
margin: auto;
|
655
|
-
padding-top: 40px;
|
656
|
-
margin-bottom: 30px;
|
657
|
-
display: none;
|
658
|
-
}
|
659
|
-
.download-all {
|
660
|
-
background: rgb(255, 255, 255);
|
661
|
-
border-radius: 10px;
|
662
|
-
padding: 7px 22px;
|
663
|
-
font-size: 16px;
|
664
|
-
font-weight: bold;
|
665
|
-
line-height: 1.19;
|
666
|
-
letter-spacing: 0.32px;
|
667
|
-
cursor: pointer;
|
668
|
-
border: unset;
|
669
|
-
color: #974fff !important;
|
670
|
-
float: left;
|
671
|
-
}
|
672
|
-
|
673
|
-
.restart-button {
|
674
|
-
background: rgb(255, 255, 255);
|
675
|
-
border-radius: 10px;
|
676
|
-
padding: 7px 7px;
|
677
|
-
font-size: 16px;
|
678
|
-
line-height: 1.19;
|
679
|
-
letter-spacing: 0;
|
680
|
-
cursor: pointer;
|
681
|
-
border: unset;
|
682
|
-
color: #974fff !important;
|
683
|
-
margin-top: 18px;
|
684
|
-
}
|
685
|
-
|
686
|
-
.file-upload {
|
687
|
-
display: none;
|
688
|
-
}
|
689
|
-
.textual-content {
|
690
|
-
margin-top: 90px;
|
691
|
-
}
|
692
|
-
.textual-content-box {
|
693
|
-
margin-top: 90px;
|
694
|
-
background-color: rgba(17, 48, 78, 0.18);
|
695
|
-
display: flex;
|
696
|
-
flex-direction: row;
|
697
|
-
}
|
698
|
-
.supported {
|
699
|
-
margin-top: 90px;
|
700
|
-
}
|
701
|
-
|
702
356
|
.row {
|
703
|
-
/* flex: 1 1 0px; */
|
704
|
-
/* position: relative; */
|
705
357
|
min-height: 1px;
|
706
358
|
padding-right: 15px;
|
707
359
|
padding-left: 15px;
|
@@ -713,14 +365,6 @@ i {
|
|
713
365
|
display: block;
|
714
366
|
margin-bottom: 18px;
|
715
367
|
}
|
716
|
-
.span {
|
717
|
-
display: block;
|
718
|
-
font-size: 20px;
|
719
|
-
font-weight: bold;
|
720
|
-
line-height: 1.21;
|
721
|
-
margin-bottom: 15px;
|
722
|
-
color: rgb(17, 48, 78);
|
723
|
-
}
|
724
368
|
p {
|
725
369
|
font-size: 15px;
|
726
370
|
line-height: 1.41;
|
@@ -745,7 +389,6 @@ p {
|
|
745
389
|
line-height: 1.16;
|
746
390
|
text-align: left;
|
747
391
|
color: rgb(17, 48, 78);
|
748
|
-
/* margin: 0px 0px 40px; */
|
749
392
|
width: 100%;
|
750
393
|
margin-top: 70px;
|
751
394
|
}
|
@@ -766,142 +409,6 @@ img {
|
|
766
409
|
max-width: 100%;
|
767
410
|
height: auto;
|
768
411
|
}
|
769
|
-
.rating-div {
|
770
|
-
background-color: red;
|
771
|
-
}
|
772
|
-
.rating-container {
|
773
|
-
padding-right: 15px;
|
774
|
-
padding-left: 15px;
|
775
|
-
margin-right: auto;
|
776
|
-
margin-left: auto;
|
777
|
-
}
|
778
|
-
.rating-row {
|
779
|
-
margin-right: -15px;
|
780
|
-
margin-left: -15px;
|
781
|
-
}
|
782
|
-
.faq-container {
|
783
|
-
position: relative;
|
784
|
-
min-height: 1px;
|
785
|
-
padding-right: 15px;
|
786
|
-
padding-left: 15px;
|
787
|
-
}
|
788
|
-
.faq-h2 {
|
789
|
-
font-size: 53px;
|
790
|
-
font-weight: 800;
|
791
|
-
line-height: 1.16;
|
792
|
-
text-align: center;
|
793
|
-
color: #11304e;
|
794
|
-
margin: 100px 0 50px;
|
795
|
-
}
|
796
|
-
.faq-h3 {
|
797
|
-
margin: 0 0 25px;
|
798
|
-
font-size: 20px;
|
799
|
-
font-weight: 600;
|
800
|
-
color: #11304e;
|
801
|
-
position: relative;
|
802
|
-
padding-right: 30px;
|
803
|
-
line-height: 1.4;
|
804
|
-
cursor: pointer;
|
805
|
-
}
|
806
|
-
.faq-list {
|
807
|
-
position: relative;
|
808
|
-
min-height: 1px;
|
809
|
-
padding-right: 15px;
|
810
|
-
padding-left: 15px;
|
811
|
-
margin: auto;
|
812
|
-
width: 50%;
|
813
|
-
padding: 10px;
|
814
|
-
}
|
815
|
-
.sup-h2 {
|
816
|
-
font-size: 56px;
|
817
|
-
font-weight: 800;
|
818
|
-
line-height: 1.21;
|
819
|
-
color: rgb(17, 48, 78);
|
820
|
-
text-align: center;
|
821
|
-
}
|
822
|
-
.sup-ul {
|
823
|
-
margin: 0px;
|
824
|
-
padding: 63px 0px 0px;
|
825
|
-
text-align: left;
|
826
|
-
}
|
827
|
-
.sup-li {
|
828
|
-
list-style: none;
|
829
|
-
margin: 0px 0px 20px;
|
830
|
-
font-size: 15px;
|
831
|
-
color: rgb(17, 48, 78);
|
832
|
-
width: 25%;
|
833
|
-
text-align: left;
|
834
|
-
display: inline-block;
|
835
|
-
}
|
836
|
-
a {
|
837
|
-
text-decoration: unset;
|
838
|
-
color: unset;
|
839
|
-
}
|
840
|
-
.sup-i {
|
841
|
-
display: inline-block;
|
842
|
-
margin-right: 10px;
|
843
|
-
width: 19px;
|
844
|
-
vertical-align: middle;
|
845
|
-
}
|
846
|
-
.sup-span {
|
847
|
-
display: inline-block;
|
848
|
-
width: 20px;
|
849
|
-
margin-right: 20px;
|
850
|
-
position: unset !important;
|
851
|
-
top: 0px;
|
852
|
-
left: 0px;
|
853
|
-
}
|
854
|
-
.clear {
|
855
|
-
clear: both;
|
856
|
-
}
|
857
|
-
.leftbox {
|
858
|
-
float: left;
|
859
|
-
width: 30%;
|
860
|
-
height: 280px;
|
861
|
-
margin: 0px 28px;
|
862
|
-
text-align: center;
|
863
|
-
margin-bottom: 30px;
|
864
|
-
}
|
865
|
-
.middlebox {
|
866
|
-
float: left;
|
867
|
-
width: 30%;
|
868
|
-
height: 280px;
|
869
|
-
text-align: center;
|
870
|
-
margin-bottom: 30px;
|
871
|
-
}
|
872
|
-
.rightbox {
|
873
|
-
text-align: center;
|
874
|
-
float: right;
|
875
|
-
width: 30%;
|
876
|
-
height: 280px;
|
877
|
-
margin-bottom: 30px;
|
878
|
-
}
|
879
|
-
.file-list {
|
880
|
-
padding: 10px 0 20px;
|
881
|
-
}
|
882
|
-
|
883
|
-
.single-file {
|
884
|
-
color: white;
|
885
|
-
|
886
|
-
cursor: pointer;
|
887
|
-
}
|
888
|
-
.small-text {
|
889
|
-
font-size: 16px;
|
890
|
-
font-weight: 500;
|
891
|
-
}
|
892
|
-
.rows {
|
893
|
-
padding: 10px;
|
894
|
-
margin: auto;
|
895
|
-
width: 50%;
|
896
|
-
margin-top: 70px;
|
897
|
-
display: inline;
|
898
|
-
min-height: 1px;
|
899
|
-
padding-right: 15px;
|
900
|
-
padding-left: 15px;
|
901
|
-
}
|
902
|
-
.rows-2 {
|
903
|
-
margin-top: 50px;
|
904
|
-
}
|
905
412
|
ul li {
|
906
413
|
margin: 0 0 20px;
|
907
414
|
padding: 0;
|
@@ -913,50 +420,9 @@ ul li {
|
|
913
420
|
list-style: none;
|
914
421
|
position: relative;
|
915
422
|
}
|
916
|
-
|
917
423
|
.header {
|
918
|
-
/* overflow: hidden; */
|
919
|
-
/* background-color: #f1f1f1; */
|
920
424
|
padding: 20px 10px;
|
921
425
|
}
|
922
|
-
|
923
|
-
.header a {
|
924
|
-
/* float: left;
|
925
|
-
color: black;
|
926
|
-
text-align: center;
|
927
|
-
|
928
|
-
line-height: 25px;
|
929
|
-
border-radius: 4px; */
|
930
|
-
|
931
|
-
padding: 0 20px 0 8px;
|
932
|
-
text-decoration: none;
|
933
|
-
color: #1e283c;
|
934
|
-
font-weight: 600;
|
935
|
-
font-size: 12px;
|
936
|
-
text-transform: uppercase;
|
937
|
-
outline: 0;
|
938
|
-
}
|
939
|
-
|
940
|
-
.header a.logo {
|
941
|
-
font-size: 25px;
|
942
|
-
font-weight: bold;
|
943
|
-
margin: 0px 101px;
|
944
|
-
}
|
945
|
-
|
946
|
-
.header a:hover {
|
947
|
-
background-color: #ddd;
|
948
|
-
color: black;
|
949
|
-
}
|
950
|
-
|
951
|
-
.header a.active {
|
952
|
-
background-color: #eee;
|
953
|
-
color: black;
|
954
|
-
}
|
955
|
-
|
956
|
-
.header-right {
|
957
|
-
float: right;
|
958
|
-
padding-right: 124px;
|
959
|
-
}
|
960
426
|
/* footer css start */
|
961
427
|
.footer-wrapper {
|
962
428
|
padding: 32px 0;
|
@@ -977,19 +443,9 @@ ul li {
|
|
977
443
|
}
|
978
444
|
}
|
979
445
|
.footer-logo-cont {
|
980
|
-
-webkit-flex: 1 1 auto;
|
981
|
-
-ms-flex: 1 1 auto;
|
982
446
|
flex: 1 1 auto;
|
983
|
-
display: -webkit-box;
|
984
|
-
display: -webkit-flex;
|
985
|
-
display: -ms-flexbox;
|
986
447
|
display: flex;
|
987
|
-
-webkit-flex-direction: column;
|
988
|
-
-ms-flex-direction: column;
|
989
448
|
flex-direction: column;
|
990
|
-
-webkit-align-items: flex-start;
|
991
|
-
-webkit-box-align: flex-start;
|
992
|
-
-ms-flex-align: flex-start;
|
993
449
|
align-items: flex-start;
|
994
450
|
}
|
995
451
|
.footer-logo {
|
@@ -1082,7 +538,6 @@ ul li {
|
|
1082
538
|
padding-top: 24px;
|
1083
539
|
}
|
1084
540
|
}
|
1085
|
-
|
1086
541
|
.privacy-footer {
|
1087
542
|
display: -webkit-box;
|
1088
543
|
display: -webkit-flex;
|
@@ -1105,7 +560,6 @@ ul li {
|
|
1105
560
|
padding: 32px 0;
|
1106
561
|
}
|
1107
562
|
}
|
1108
|
-
|
1109
563
|
.privacy-links {
|
1110
564
|
display: -webkit-box;
|
1111
565
|
display: -webkit-flex;
|
@@ -1220,7 +674,6 @@ ul li {
|
|
1220
674
|
font-size: 22px;
|
1221
675
|
}
|
1222
676
|
}
|
1223
|
-
/*closed*/
|
1224
677
|
.feature-img {
|
1225
678
|
width: 36px;
|
1226
679
|
height: 36px;
|
@@ -1323,6 +776,7 @@ ul li {
|
|
1323
776
|
font-size: 16px;
|
1324
777
|
font-stretch: 400;
|
1325
778
|
font-weight: 700;
|
779
|
+
color: #fff;
|
1326
780
|
text-overflow: ellipsis;
|
1327
781
|
white-space: nowrap;
|
1328
782
|
overflow: hidden;
|
@@ -1331,7 +785,6 @@ ul li {
|
|
1331
785
|
right: 0;
|
1332
786
|
bottom: 0;
|
1333
787
|
left: 0;
|
1334
|
-
-webkit-transition: box-shadow 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
1335
788
|
transition: box-shadow 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
1336
789
|
}
|
1337
790
|
.home-feature-name:hover {
|
@@ -1441,8 +894,6 @@ ul li {
|
|
1441
894
|
color: rgb(33, 33, 33);
|
1442
895
|
padding: 6px;
|
1443
896
|
}
|
1444
|
-
|
1445
|
-
/* RELATED POST && RECENT POST STYLING */
|
1446
897
|
.related_post_heading {
|
1447
898
|
width: 100%;
|
1448
899
|
font-size: 46px;
|
@@ -1457,8 +908,6 @@ ul li {
|
|
1457
908
|
padding-top: 75px;
|
1458
909
|
display: inline-block;
|
1459
910
|
}
|
1460
|
-
|
1461
|
-
/* Blog-card-footer styling */
|
1462
911
|
.card-footer {
|
1463
912
|
border: none;
|
1464
913
|
}
|
@@ -1473,7 +922,6 @@ ul li {
|
|
1473
922
|
border-radius: 50%;
|
1474
923
|
}
|
1475
924
|
.wrapfooter .author-meta {
|
1476
|
-
/* flex: 1 1 auto; */
|
1477
925
|
padding: 0 15px;
|
1478
926
|
}
|
1479
927
|
.wrapfooter .author-meta a {
|
@@ -1532,46 +980,6 @@ ul li {
|
|
1532
980
|
filter: brightness();
|
1533
981
|
filter: brightness(100);
|
1534
982
|
}
|
1535
|
-
.no-file-transfer {
|
1536
|
-
position: absolute;
|
1537
|
-
top: 93px;
|
1538
|
-
height: 127px;
|
1539
|
-
width: 200px;
|
1540
|
-
background: #80008030;
|
1541
|
-
right: 24px;
|
1542
|
-
border-radius: 8px;
|
1543
|
-
display: flex;
|
1544
|
-
align-items: center;
|
1545
|
-
justify-content: center;
|
1546
|
-
z-index: 9999;
|
1547
|
-
}
|
1548
|
-
.no-file-transfer svg {
|
1549
|
-
width: 50px;
|
1550
|
-
}
|
1551
|
-
.no-file-transfer button {
|
1552
|
-
background: transparent;
|
1553
|
-
border: 1px solid #800080ab;
|
1554
|
-
color: #800080ab;
|
1555
|
-
margin-bottom: 10px;
|
1556
|
-
}
|
1557
|
-
.no-file-transfer button:hover {
|
1558
|
-
background: #800080ab;
|
1559
|
-
border: 1px solid #800080ab;
|
1560
|
-
}
|
1561
|
-
.no-file-transfer .circle {
|
1562
|
-
height: 64px;
|
1563
|
-
border-radius: 50%;
|
1564
|
-
position: absolute;
|
1565
|
-
width: 64px;
|
1566
|
-
display: flex;
|
1567
|
-
align-items: center;
|
1568
|
-
justify-content: center;
|
1569
|
-
border: 3px solid red;
|
1570
|
-
color: red;
|
1571
|
-
font-size: 20px;
|
1572
|
-
font-weight: 700;
|
1573
|
-
transform: rotate(-41deg);
|
1574
|
-
}
|
1575
983
|
.download-section {
|
1576
984
|
box-shadow: rgb(0 0 0 / 20%) 0px 0px 2px inset;
|
1577
985
|
margin-top: 5px;
|
@@ -1609,23 +1017,6 @@ ul li {
|
|
1609
1017
|
font-size: 22px;
|
1610
1018
|
font-weight: 700;
|
1611
1019
|
}
|
1612
|
-
#file-download-button {
|
1613
|
-
font-weight: 700;
|
1614
|
-
font-size: 16px;
|
1615
|
-
line-height: 24px;
|
1616
|
-
width: 150px;
|
1617
|
-
color: #fff;
|
1618
|
-
padding: 9px 18px;
|
1619
|
-
background: #0050f2;
|
1620
|
-
height: 42px;
|
1621
|
-
position: relative;
|
1622
|
-
border-radius: 4px 0px 0px 4px;
|
1623
|
-
text-transform: uppercase;
|
1624
|
-
border-radius: 3px;
|
1625
|
-
display: flex;
|
1626
|
-
-webkit-box-pack: center;
|
1627
|
-
justify-content: center;
|
1628
|
-
}
|
1629
1020
|
.download-social-share a i {
|
1630
1021
|
font-size: 1.5rem;
|
1631
1022
|
padding: 0px 10px;
|
@@ -1690,7 +1081,6 @@ ul li {
|
|
1690
1081
|
.feature-showcase-div img {
|
1691
1082
|
width: 32px;
|
1692
1083
|
height: 32px;
|
1693
|
-
/* margin: ; */
|
1694
1084
|
}
|
1695
1085
|
.feature-showcase-div a {
|
1696
1086
|
text-decoration: none;
|
@@ -1737,15 +1127,11 @@ ul li {
|
|
1737
1127
|
position: sticky;
|
1738
1128
|
top: 0%;
|
1739
1129
|
}
|
1740
|
-
|
1741
1130
|
ol li::marker {
|
1742
1131
|
font-size: 25px;
|
1743
1132
|
}
|
1744
1133
|
.drop-down-btn {
|
1745
1134
|
cursor: pointer;
|
1746
|
-
user-select: none;
|
1747
|
-
margin: 0px;
|
1748
|
-
padding: 0px;
|
1749
1135
|
outline: 0px;
|
1750
1136
|
border: 0px;
|
1751
1137
|
width: auto;
|
@@ -1755,8 +1141,6 @@ ol li::marker {
|
|
1755
1141
|
align-items: center;
|
1756
1142
|
background-color: transparent;
|
1757
1143
|
transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
|
1758
|
-
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
1759
|
-
-webkit-font-smoothing: antialiased;
|
1760
1144
|
font-weight: 400;
|
1761
1145
|
font-size: 16px;
|
1762
1146
|
line-height: 24px;
|