word-games-theme 0.8.5 → 0.8.9
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/header/index.html +1 -1
- data/_includes/header/resultHeader.html +1 -28
- data/_includes/section/commonPage.html +0 -4
- data/_includes/section/wordGroup.html +1 -1
- data/assets/css/advancedFilter.css +2 -2
- data/assets/css/home.css +6 -5
- data/assets/css/style.css +8 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 505ae824cfa6c6ec29b92a201a286a9f18391e74717c770c9ba4d4ff2a20f743
|
|
4
|
+
data.tar.gz: e7a45d74f356472ba99ec1d06b6e4b45553a8b075582892df0a7dbda63f381d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9af296aebb1bd0d2a0c77fd2ecb9301596553210de1ee64ec52e7c029c7e8bd898457b07855e80dc67e164e6da08f0325edef732b1c81a1239e625320770b45d
|
|
7
|
+
data.tar.gz: 339c748ebfd1b44e652dcc437c846ff33e33518e17963265ed243890122133169cc718d6abce7742a66b71fbee488ba4e2bb8d5e2ee2269b6c1c60c09fc6fb15
|
data/_includes/header/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<!-- header starts -->
|
|
6
6
|
<header id="header">
|
|
7
7
|
<!-- navigation startss -->
|
|
8
|
-
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
8
|
+
<nav class="navbar-section navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
9
9
|
|
|
10
10
|
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
|
11
11
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
|
@@ -5,37 +5,10 @@
|
|
|
5
5
|
<!-- header starts -->
|
|
6
6
|
<header id="resultHeader">
|
|
7
7
|
<!-- navigation startss -->
|
|
8
|
-
<nav class="navbar navbar-expand-lg navbar-dark"
|
|
9
|
-
|
|
8
|
+
<nav class="navbar-section navbar-expand-lg navbar-dark">
|
|
10
9
|
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
|
11
10
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
|
12
11
|
</a>
|
|
13
|
-
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
|
14
|
-
<i class="bi bi-list bi-2x bars"></i>
|
|
15
|
-
</button>
|
|
16
|
-
|
|
17
|
-
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
18
|
-
<ul class="navbar-nav">
|
|
19
|
-
<li class="nav-item">
|
|
20
|
-
<a class="nav-link" href="/blog">Blog</a>
|
|
21
|
-
</li>
|
|
22
|
-
<li class="nav-item dropdown">
|
|
23
|
-
<a class="nav-link dropdown-toggle" id="navbarDropdown" role="button" aria-haspopup="true"
|
|
24
|
-
aria-expanded="false">
|
|
25
|
-
More
|
|
26
|
-
</a>
|
|
27
|
-
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
|
28
|
-
|
|
29
|
-
{% for item in dataToShow.more %}
|
|
30
|
-
<a class="dropdown-item" href="{{item.url}}">
|
|
31
|
-
{{item.name}}
|
|
32
|
-
</a>
|
|
33
|
-
{% endfor %}
|
|
34
|
-
|
|
35
|
-
</div>
|
|
36
|
-
</li>
|
|
37
|
-
</ul>
|
|
38
|
-
</div>
|
|
39
12
|
</nav>
|
|
40
13
|
<!-- navbar close -->
|
|
41
14
|
</header>
|
|
@@ -17,10 +17,6 @@
|
|
|
17
17
|
<div class="pageHeading text-center">
|
|
18
18
|
<h1 class="heading m-0 pb-0">
|
|
19
19
|
{{dataToShow.h1}}</h1>
|
|
20
|
-
{%- if dataToShow.h2 != "" -%}
|
|
21
|
-
<h2>
|
|
22
|
-
{{dataToShow.h2}}</h2>
|
|
23
|
-
{%- endif -%}
|
|
24
20
|
</div>
|
|
25
21
|
<div class="serachSection2">
|
|
26
22
|
<div class="position-relative serachBox">
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
.sticky_nav {
|
|
69
69
|
position: sticky;
|
|
70
70
|
width: inherit;
|
|
71
|
-
top:
|
|
71
|
+
top: 0px;
|
|
72
72
|
background-color: #fff;
|
|
73
73
|
z-index: 99;
|
|
74
74
|
}
|
|
@@ -138,7 +138,7 @@ a {
|
|
|
138
138
|
|
|
139
139
|
.sticky_nav {
|
|
140
140
|
top: 0px;
|
|
141
|
-
padding-top:
|
|
141
|
+
padding-top: 4rem;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
.Advancedbtn {
|
data/assets/css/home.css
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
margin-bottom: 20vh;
|
|
12
12
|
}
|
|
13
13
|
.pageHeading {
|
|
14
|
-
margin-bottom:
|
|
15
|
-
padding-top:
|
|
14
|
+
margin-bottom: 0.8rem;
|
|
15
|
+
padding-top: 1.5rem;
|
|
16
16
|
}
|
|
17
17
|
.pageHeading > h1 {
|
|
18
18
|
font-size: 30px;
|
|
@@ -295,10 +295,11 @@ input:-webkit-autofill:active {
|
|
|
295
295
|
}
|
|
296
296
|
@media (max-width: 768px) {
|
|
297
297
|
.pageHeaderBg{
|
|
298
|
-
height:
|
|
298
|
+
height: 300px;
|
|
299
299
|
}
|
|
300
300
|
.pageHeading{
|
|
301
|
-
|
|
301
|
+
margin-bottom: 0.8rem;
|
|
302
|
+
/* padding: 0; */
|
|
302
303
|
}
|
|
303
304
|
.pageHeading > h2{
|
|
304
305
|
font-size: 1.4rem;
|
|
@@ -307,7 +308,7 @@ input:-webkit-autofill:active {
|
|
|
307
308
|
align-items: flex-end;
|
|
308
309
|
flex-direction: column;
|
|
309
310
|
gap: 0 !important;
|
|
310
|
-
margin:0 !important
|
|
311
|
+
/* margin:0 !important */
|
|
311
312
|
}
|
|
312
313
|
.txtBox {
|
|
313
314
|
height: 50px !important;
|
data/assets/css/style.css
CHANGED
|
@@ -31,13 +31,18 @@ header {
|
|
|
31
31
|
position: relative;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
.navbar {
|
|
34
|
+
.navbar-section {
|
|
35
35
|
width: 100%;
|
|
36
36
|
padding: 1.2rem 10rem !important;
|
|
37
37
|
position: fixed;
|
|
38
38
|
top: 0;
|
|
39
39
|
left: 0;
|
|
40
40
|
z-index: 999;
|
|
41
|
+
display: flex;
|
|
42
|
+
justify-content: space-between;
|
|
43
|
+
flex-wrap: wrap;
|
|
44
|
+
-ms-flex-align: center;
|
|
45
|
+
align-items: center;
|
|
41
46
|
}
|
|
42
47
|
.navbar-brand {
|
|
43
48
|
font-size: 2.2rem;
|
|
@@ -240,7 +245,7 @@ header {
|
|
|
240
245
|
}
|
|
241
246
|
|
|
242
247
|
@media (max-width: 768px) {
|
|
243
|
-
.navbar {
|
|
248
|
+
.navbar-section {
|
|
244
249
|
padding: 1.2rem 15px !important;
|
|
245
250
|
}
|
|
246
251
|
|
|
@@ -385,9 +390,7 @@ header {
|
|
|
385
390
|
padding: 4px 0;
|
|
386
391
|
}
|
|
387
392
|
@media (max-width: 768px) {
|
|
388
|
-
|
|
389
|
-
display: none;
|
|
390
|
-
}
|
|
393
|
+
|
|
391
394
|
.social-icons {
|
|
392
395
|
left: 0;
|
|
393
396
|
bottom: 0 !important;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: word-games-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- manpreet-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|