word-games-theme 0.8.2 → 0.8.3
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/_includes/Monumetric/Monumetric.html +2 -2
- data/_includes/footer/index.html +32 -33
- data/_includes/section/commonPage.html +1 -1
- data/_layouts/page.html +1 -1
- data/_layouts/page2.html +1 -2
- data/_layouts/xyzpages.html +1 -1
- data/assets/css/advancedFilter.css +2 -1
- data/assets/css/footer.css +3 -0
- data/assets/css/home.css +13 -2
- data/assets/css/style.css +3 -0
- data/assets/css/wordGroup.css +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ee34c20666ba81ae3fbcee19af3d215cd4f21ddfbee6191aeac0640b0803e96
|
|
4
|
+
data.tar.gz: b1df8727531dbefc545e2cf61c16baeca78ccf20873536ef8e6e94810304e9e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9879e76ae9e72ed2d0733f3f87b16bbf550a425568c08e17f5a04f8e9ecebdcd5fa7761d889129c0202bd7f6724a4a9084632039ba7576102dbab3deb2271b2
|
|
7
|
+
data.tar.gz: 56f8c7b936c16eb7672cbdef2037752edadfc69b2d1c0f2675d52a53b4aeb78c4dd289ba095e4c018bd7caa6a5529abf243d4015e40b34eee60c35e1702f44cf
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
<script type="text/javascript" defer delay="{{site.MonumetricID}}" data-cfasync="false"></script>
|
|
3
3
|
{% endif %}
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
{% if jekyll.environment == 'development' and site.MonumetricID %}
|
|
6
6
|
<script type="text/javascript" delay="{{site.MonumetricID}}"></script>
|
|
7
|
-
{% endif %}
|
|
7
|
+
{% endif %}
|
data/_includes/footer/index.html
CHANGED
|
@@ -58,38 +58,6 @@
|
|
|
58
58
|
<div class="container">
|
|
59
59
|
<div class="footer-single-col">
|
|
60
60
|
<div class="row d-flex justify-content-between mt-5 ">
|
|
61
|
-
<div class="col-md-12 txt-secondary mb-5">
|
|
62
|
-
{%- if dataToShow.logo -%}
|
|
63
|
-
<div class="footer-logo-cont">
|
|
64
|
-
<img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo d-block"
|
|
65
|
-
alt="footer logo" width="30px">
|
|
66
|
-
<span>
|
|
67
|
-
{{dataToShow.heading}}
|
|
68
|
-
</span>
|
|
69
|
-
<!-- <div class="footer-title">{{dataToShow.heading}}</div> -->
|
|
70
|
-
</div>
|
|
71
|
-
{%- endif -%}
|
|
72
|
-
<hr class="footer_hr">
|
|
73
|
-
<div class="footer-social-list mt-4">
|
|
74
|
-
<ul class="list-inline">
|
|
75
|
-
{% for data in dataToShow.social %}
|
|
76
|
-
<li>
|
|
77
|
-
<a href="{{data.url}}" target="_blank">
|
|
78
|
-
<i class="{{data.icon}}"></i>
|
|
79
|
-
</a>
|
|
80
|
-
</li>
|
|
81
|
-
{% endfor %}
|
|
82
|
-
</ul>
|
|
83
|
-
</div>
|
|
84
|
-
</div>
|
|
85
|
-
|
|
86
|
-
<div class="col-md-2 txt-secondary">
|
|
87
|
-
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.companytitle | default:
|
|
88
|
-
'Company' }}</p>
|
|
89
|
-
{% for data in dataToShow.company %}
|
|
90
|
-
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
|
91
|
-
{% endfor %}
|
|
92
|
-
</div>
|
|
93
61
|
<div class="col-md-2 txt-secondary">
|
|
94
62
|
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.linksTitle | default:
|
|
95
63
|
'Links' }}</p>
|
|
@@ -97,7 +65,6 @@
|
|
|
97
65
|
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
|
98
66
|
{% endfor %}
|
|
99
67
|
</div>
|
|
100
|
-
|
|
101
68
|
<div class="col-md-2 txt-secondary ">
|
|
102
69
|
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.producttitle | default:
|
|
103
70
|
'tools' }}</p>
|
|
@@ -112,6 +79,38 @@
|
|
|
112
79
|
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
|
113
80
|
{% endfor %}
|
|
114
81
|
</div>
|
|
82
|
+
<div class="col-md-2 txt-secondary">
|
|
83
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.companytitle | default:
|
|
84
|
+
'Company' }}</p>
|
|
85
|
+
{% for data in dataToShow.company %}
|
|
86
|
+
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
|
87
|
+
{% endfor %}
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
<div class="col-md-12 txt-secondary mb-5">
|
|
92
|
+
{%- if dataToShow.logo -%}
|
|
93
|
+
<div class="footer-logo-cont">
|
|
94
|
+
<img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo d-block"
|
|
95
|
+
alt="footer logo" width="30px">
|
|
96
|
+
<span class="email_heaidng">
|
|
97
|
+
{{dataToShow.heading}}
|
|
98
|
+
</span>
|
|
99
|
+
<!-- <div class="footer-title">{{dataToShow.heading}}</div> -->
|
|
100
|
+
</div>
|
|
101
|
+
{%- endif -%}
|
|
102
|
+
<hr class="footer_hr">
|
|
103
|
+
<div class="footer-social-list mt-4">
|
|
104
|
+
<ul class="list-inline">
|
|
105
|
+
{% for data in dataToShow.social %}
|
|
106
|
+
<li>
|
|
107
|
+
<a href="{{data.url}}" target="_blank">
|
|
108
|
+
<i class="{{data.icon}}"></i>
|
|
109
|
+
</a>
|
|
110
|
+
</li>
|
|
111
|
+
{% endfor %}
|
|
112
|
+
</ul>
|
|
113
|
+
</div>
|
|
115
114
|
</div>
|
|
116
115
|
<div class="copyright-text mt-5 txt-secondary text-center">
|
|
117
116
|
<p>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</div> -->
|
|
15
15
|
<div class="container" id="containerWd">
|
|
16
16
|
<section class="sticky_nav">
|
|
17
|
-
<div class="pageHeading text-center
|
|
17
|
+
<div class="pageHeading text-center">
|
|
18
18
|
<h1 class="heading m-0 pb-0">
|
|
19
19
|
{{dataToShow.h1}}</h1>
|
|
20
20
|
{%- if dataToShow.h2 != "" -%}
|
data/_layouts/page.html
CHANGED
data/_layouts/page2.html
CHANGED
data/_layouts/xyzpages.html
CHANGED
data/assets/css/footer.css
CHANGED
data/assets/css/home.css
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
}
|
|
13
13
|
.pageHeading {
|
|
14
14
|
margin-bottom: 2rem;
|
|
15
|
+
padding-top: 3rem;
|
|
15
16
|
}
|
|
16
17
|
.pageHeading > h1 {
|
|
17
18
|
font-size: 30px;
|
|
@@ -293,9 +294,20 @@ input:-webkit-autofill:active {
|
|
|
293
294
|
padding: 0px;
|
|
294
295
|
}
|
|
295
296
|
@media (max-width: 768px) {
|
|
297
|
+
.pageHeaderBg{
|
|
298
|
+
height: 25vh;
|
|
299
|
+
}
|
|
300
|
+
.pageHeading{
|
|
301
|
+
padding:0 !important;
|
|
302
|
+
}
|
|
303
|
+
.pageHeading > h2{
|
|
304
|
+
font-size: 1.4rem;
|
|
305
|
+
}
|
|
296
306
|
.wrapper_dropDown {
|
|
297
307
|
align-items: flex-end;
|
|
298
308
|
flex-direction: column;
|
|
309
|
+
gap: 0 !important;
|
|
310
|
+
margin:0 !important
|
|
299
311
|
}
|
|
300
312
|
.txtBox {
|
|
301
313
|
height: 50px !important;
|
|
@@ -322,12 +334,11 @@ input:-webkit-autofill:active {
|
|
|
322
334
|
width: 50%;
|
|
323
335
|
right: 0;
|
|
324
336
|
border-radius: 0;
|
|
325
|
-
padding:
|
|
337
|
+
padding: 7.5px;
|
|
326
338
|
z-index: 99;
|
|
327
339
|
}
|
|
328
340
|
.pageHeading h1 {
|
|
329
341
|
font-size: 2rem;
|
|
330
|
-
padding-top: 3rem;
|
|
331
342
|
}
|
|
332
343
|
#containerWd {
|
|
333
344
|
width: 100% !important;
|
data/assets/css/style.css
CHANGED
data/assets/css/wordGroup.css
CHANGED