word-games-theme 1.5.8 → 1.5.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/head/index.html +0 -4
- data/_includes/script.html +5 -8
- data/_includes/section/feature.html +1 -1
- data/assets/css/feature.css +1 -3
- data/assets/css/home.css +14 -10
- data/assets/css/style.css +5 -1
- 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: faeab87ab43c794776f3fb30218f9ca9b11a0f5fa4fccae23296ba5dea685bcc
|
4
|
+
data.tar.gz: 21e0a85c3c2f3cb6362b93c4f7154ed0d1fd6690bd058ededd026a92994d5cea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bee96b090b2b1035fda90365969bfdf5eb3f58502feca53f64cbaf9732e448901e29f5315b46b185e59cf55e8d7d8cdff8a2b7e983278460f5c0d0e6171fde69
|
7
|
+
data.tar.gz: fbd3867d82c2eb6761dd2267a3863c7f21a47d6c388ea2de65b1ffa26e3d0a8a0b1b06087cce852c1f983f83360bed2f0379ca06af528e8f3b410ddfa20c0764
|
data/_includes/head/index.html
CHANGED
@@ -16,11 +16,7 @@
|
|
16
16
|
<link rel="shortcut icon" href="{{ site.favicon | relative_url }}">
|
17
17
|
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
|
18
18
|
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
|
19
|
-
{%- if page.url == "/" -%}
|
20
|
-
<link rel="stylesheet" href="{{ '/assets/css/testhome.css' | relative_url }}">
|
21
|
-
{%- else -%}
|
22
19
|
<link rel="stylesheet" href="{{ '/assets/css/home.css' | relative_url }}">
|
23
|
-
{%- endif -%}
|
24
20
|
<link rel="stylesheet" href="{{ '/assets/css/feature.css' | relative_url }}">
|
25
21
|
<link rel="stylesheet" href="{{ '/assets/css/HomePageblog.css' | relative_url }}">
|
26
22
|
<link rel="stylesheet" href="{{ '/assets/css/news.css' | relative_url }}">
|
data/_includes/script.html
CHANGED
@@ -11,21 +11,18 @@
|
|
11
11
|
</script>
|
12
12
|
|
13
13
|
{% assign scriptData = site.data.[page.folderName][lang][file] %}
|
14
|
-
<link rel="stylesheet"
|
15
|
-
|
14
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.2/font/bootstrap-icons.min.css"
|
15
|
+
integrity="sha512-YFENbnqHbCRmJt5d+9lHimyEMt8LKSNTMLSaHjvsclnZGICeY/0KYEeiHwD1Ux4Tcao0h60tdcMv+0GljvWyHg=="
|
16
|
+
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
17
|
+
|
16
18
|
<script defer src="/assets/js/jquery.min.js"></script>
|
17
19
|
<script defer src="/assets/js/bootstrap.bundle.min.js"></script>
|
18
20
|
|
19
|
-
{%- if page.layout == "
|
21
|
+
{%- if page.layout == "post" -%}
|
20
22
|
<script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js" crossorigin="anonymous"></script>
|
21
23
|
<script>WebFont.load({ google: { families: ['Open Sans:400&display=swap'] } })</script>
|
22
24
|
{%- endif -%}
|
23
25
|
|
24
|
-
{%- if page.url != "/" -%}
|
25
|
-
<script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js" crossorigin="anonymous"></script>
|
26
|
-
<script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
|
27
|
-
{%- endif -%}
|
28
|
-
|
29
26
|
{{site.data.customcdns.customcdns.jsfiles}}
|
30
27
|
{%- if scriptData.jsfilepaths -%}
|
31
28
|
{%- for path in scriptData.jsfilepaths -%}
|
data/assets/css/feature.css
CHANGED
data/assets/css/home.css
CHANGED
@@ -67,6 +67,10 @@ input:-webkit-autofill:active {
|
|
67
67
|
padding: 0 !important;
|
68
68
|
}
|
69
69
|
|
70
|
+
::placeholder {
|
71
|
+
font-weight: 500;
|
72
|
+
}
|
73
|
+
|
70
74
|
.txtBox {
|
71
75
|
/* text-transform: uppercase; */
|
72
76
|
height: 70px;
|
@@ -85,7 +89,7 @@ input:-webkit-autofill:active {
|
|
85
89
|
position: relative;
|
86
90
|
}
|
87
91
|
|
88
|
-
.txtBox~.focus-border:before,
|
92
|
+
/* .txtBox~.focus-border:before,
|
89
93
|
.txtBox~.focus-border:after {
|
90
94
|
content: "";
|
91
95
|
position: absolute;
|
@@ -105,18 +109,18 @@ input:-webkit-autofill:active {
|
|
105
109
|
right: auto;
|
106
110
|
left: 0;
|
107
111
|
transition-delay: 0.6s;
|
108
|
-
}
|
112
|
+
} */
|
109
113
|
|
110
|
-
.txtBox:focus~.focus-border:before,
|
114
|
+
/* .txtBox:focus~.focus-border:before,
|
111
115
|
.txtBox:focus~.focus-border:after,
|
112
116
|
.has-content.txtBox~.focus-border:before,
|
113
117
|
.has-content.txtBox~.focus-border:after {
|
114
118
|
width: 100%;
|
115
119
|
transition: .5s;
|
116
120
|
transition-delay: 0.6s;
|
117
|
-
}
|
121
|
+
} */
|
118
122
|
|
119
|
-
.txtBox:focus~.focus-border:after,
|
123
|
+
/* .txtBox:focus~.focus-border:after,
|
120
124
|
.has-content.txtBox~.focus-border:after {
|
121
125
|
transition-delay: 0.2s;
|
122
126
|
}
|
@@ -144,16 +148,16 @@ input:-webkit-autofill:active {
|
|
144
148
|
height: 0;
|
145
149
|
background-color: #000;
|
146
150
|
transition: .5s;
|
147
|
-
}
|
151
|
+
} */
|
148
152
|
|
149
|
-
.txtBox~.focus-border i:after {
|
153
|
+
/* .txtBox~.focus-border i:after {
|
150
154
|
left: auto;
|
151
155
|
right: 0;
|
152
156
|
top: auto;
|
153
157
|
bottom: 0;
|
154
158
|
transition-delay: 0.4s;
|
155
|
-
}
|
156
|
-
|
159
|
+
} */
|
160
|
+
/*
|
157
161
|
.txtBox::placeholder {
|
158
162
|
color: var(--txtColor);
|
159
163
|
opacity: 0.5;
|
@@ -171,7 +175,7 @@ input:-webkit-autofill:active {
|
|
171
175
|
color: var(--txtColor);
|
172
176
|
opacity: 0.5;
|
173
177
|
font-weight: 500 !important;
|
174
|
-
}
|
178
|
+
} */
|
175
179
|
|
176
180
|
.serachBtn {
|
177
181
|
border-radius: 0px;
|
data/assets/css/style.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
margin: 0;
|
3
3
|
padding: 0;
|
4
4
|
box-sizing: border-box;
|
5
|
-
font-family:
|
5
|
+
font-family: sans-serif !important;
|
6
6
|
}
|
7
7
|
|
8
8
|
:root {
|
@@ -17,6 +17,9 @@ html {
|
|
17
17
|
font-size: 62.5%;
|
18
18
|
}
|
19
19
|
|
20
|
+
|
21
|
+
|
22
|
+
|
20
23
|
.loader {
|
21
24
|
width: 100%;
|
22
25
|
text-align: center;
|
@@ -453,6 +456,7 @@ header {
|
|
453
456
|
display: inline-block;
|
454
457
|
}
|
455
458
|
|
459
|
+
|
456
460
|
#ezoic-pub-ad-placeholder-109 {
|
457
461
|
position: absolute;
|
458
462
|
top: 60px;
|
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: 1.5.
|
4
|
+
version: 1.5.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-11-
|
11
|
+
date: 2022-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|