word-games-theme 1.5.1 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/footer/en/data.json +4 -4
- data/_data/wordgames/en/root.json +1 -7
- data/_includes/author_bio.html +3 -2
- data/_includes/authors/authors.html +4 -0
- data/_includes/autogenerated/content.html +8 -8
- data/_includes/custom-head.html +1 -5
- data/_includes/disqus_comments.html +4 -13
- data/_includes/footer/index.html +8 -5
- data/_includes/footer/unqFooter.html +7 -6
- data/_includes/head/index.html +0 -7
- data/_includes/header/blogHeader.html +2 -1
- data/_includes/header/index.html +6 -7
- data/_includes/howto.html +4 -7
- data/_includes/postbox.html +3 -2
- data/_includes/script.html +12 -5
- data/_includes/section/blog.html +2 -2
- data/_includes/section/commonPage.html +14 -11
- data/_includes/section/count.html +26 -16
- data/_includes/section/feature.html +6 -7
- data/_includes/section/home.html +4 -6
- data/_includes/section/news.html +2 -2
- data/_includes/section/recent_posts.html +13 -9
- data/_includes/section/related_categories_post.html +16 -23
- data/_includes/share/socialshare.html +1 -1
- data/_includes/word-game/word-game-generator-online.html +8 -7
- data/_includes/wordle-solver/wordle-solver.html +119 -60
- data/_layouts/blog.html +10 -12
- data/_layouts/post.html +13 -9
- data/assets/css/HomePageblog.css +27 -21
- data/assets/css/adBlocker.css +207 -199
- data/assets/css/advancedFilter.css +36 -14
- data/assets/css/blog.css +23 -94
- data/assets/css/content.css +12 -13
- data/assets/css/feature.css +10 -22
- data/assets/css/footer.css +34 -274
- data/assets/css/game.css +139 -93
- data/assets/css/home.css +164 -122
- data/assets/css/news.css +9 -23
- data/assets/css/style.css +84 -161
- data/assets/css/wordGroup.css +27 -27
- data/assets/css/wordsInCertainPosition.css +53 -42
- data/assets/images/Resume - Google Docs.pdf +0 -0
- data/assets/images/bg_elements.png +0 -0
- data/assets/images/howto.svg +1 -0
- data/assets/images/loading.gif +0 -0
- data/assets/images/pallavi.jpeg +0 -0
- data/assets/images/rating.webp +0 -0
- data/assets/images/window-close.png +0 -0
- data/assets/images/wordswithletters-logo.png +0 -0
- metadata +5 -3
- data/assets/css/about.css +0 -60
data/assets/css/footer.css
CHANGED
@@ -1,266 +1,16 @@
|
|
1
|
-
/* styling for footer */
|
2
|
-
/* .footer-container {
|
3
|
-
width: 960px;
|
4
|
-
height: 590px;
|
5
|
-
background: url(../images/footer.png);
|
6
|
-
background-size: cover;
|
7
|
-
padding: 85px 0;
|
8
|
-
overflow: hidden;
|
9
|
-
margin: 0 auto;
|
10
|
-
position: relative;
|
11
|
-
top: 0px;
|
12
|
-
}
|
13
|
-
|
14
|
-
footer {
|
15
|
-
color: #fff;
|
16
|
-
display: flex;
|
17
|
-
justify-content: space-between;
|
18
|
-
height: 100%;
|
19
|
-
text-align: center;
|
20
|
-
font-size: 5rem;
|
21
|
-
}
|
22
|
-
|
23
|
-
hr {
|
24
|
-
background: #fff;
|
25
|
-
border: 2px solid #fff;
|
26
|
-
width: 50px;
|
27
|
-
margin: 1rem auto;
|
28
|
-
}
|
29
|
-
.txt-color {
|
30
|
-
color: #fff !important;
|
31
|
-
text-decoration: none !important;
|
32
|
-
font-size: 3rem;
|
33
|
-
font-weight: 900;
|
34
|
-
}
|
35
|
-
.txt-color:hover {
|
36
|
-
color: deepskyblue !important;
|
37
|
-
transition: all 0.5s linear;
|
38
|
-
-moz-transition: all 0.5s linear;
|
39
|
-
-webkit-transition: all 0.5s linear;
|
40
|
-
}
|
41
|
-
|
42
|
-
.socialIons > .list-items {
|
43
|
-
display: flex;
|
44
|
-
justify-content: center;
|
45
|
-
width: 100%;
|
46
|
-
}
|
47
|
-
.socialIons > .list-items > li {
|
48
|
-
list-style: none;
|
49
|
-
padding: 0 15px;
|
50
|
-
}
|
51
|
-
.socialIons i:hover {
|
52
|
-
color: deepskyblue;
|
53
|
-
transition: all 0.5s linear;
|
54
|
-
-moz-transition: all 0.5s linear;
|
55
|
-
-webkit-transition: all 0.5s linear;
|
56
|
-
}
|
57
|
-
.socialIons > .list-items > li i {
|
58
|
-
font-size: 25px;
|
59
|
-
color: #fff;
|
60
|
-
}
|
61
|
-
.pages {
|
62
|
-
width: 100%;
|
63
|
-
display: flex;
|
64
|
-
justify-content: center;
|
65
|
-
}
|
66
|
-
.pages > a {
|
67
|
-
text-decoration: none !important;
|
68
|
-
color: #fff !important;
|
69
|
-
font-size: 15px;
|
70
|
-
padding-right: 20px;
|
71
|
-
}
|
72
|
-
@media (max-width: 768px) {
|
73
|
-
.pages {
|
74
|
-
flex-direction: column;
|
75
|
-
}
|
76
|
-
.pages > a {
|
77
|
-
padding-top: 10px;
|
78
|
-
}
|
79
|
-
}
|
80
|
-
@media (max-width: 500px) {
|
81
|
-
footer {
|
82
|
-
font-size: 0;
|
83
|
-
}
|
84
|
-
.txt-color {
|
85
|
-
font-size: 2rem;
|
86
|
-
}
|
87
|
-
}
|
88
|
-
|
89
|
-
@media (max-width: 968px) {
|
90
|
-
.footer-container {
|
91
|
-
width: 100%;
|
92
|
-
background-position: center;
|
93
|
-
}
|
94
|
-
} */
|
95
|
-
/* over styling for footer */
|
96
|
-
/*
|
97
|
-
.footer-wrapper {
|
98
|
-
padding: 32px 0;
|
99
|
-
display: -webkit-box;
|
100
|
-
display: -webkit-flex;
|
101
|
-
display: -ms-flexbox;
|
102
|
-
display: flex;
|
103
|
-
-webkit-flex-direction: row;
|
104
|
-
-ms-flex-direction: row;
|
105
|
-
flex-direction: row;
|
106
|
-
border-bottom: 1px solid #e8e8e8;
|
107
|
-
}
|
108
|
-
.footer-logo {
|
109
|
-
height: 35px;
|
110
|
-
}
|
111
|
-
|
112
|
-
.footer-nav {
|
113
|
-
-webkit-flex: 1 1 auto;
|
114
|
-
-ms-flex: 1 1 auto;
|
115
|
-
flex: 1 1 auto;
|
116
|
-
display: -webkit-box;
|
117
|
-
display: -webkit-flex;
|
118
|
-
display: -ms-flexbox;
|
119
|
-
display: flex;
|
120
|
-
-webkit-flex-direction: row;
|
121
|
-
-ms-flex-direction: row;
|
122
|
-
flex-direction: row;
|
123
|
-
-webkit-box-pack: end;
|
124
|
-
-webkit-justify-content: space-between;
|
125
|
-
-ms-flex-pack: end;
|
126
|
-
justify-content: space-between;
|
127
|
-
}
|
128
|
-
@media (max-width: 768px) {
|
129
|
-
.footer-nav {
|
130
|
-
margin-top: 3rem;
|
131
|
-
}
|
132
|
-
.footer-wrapper,
|
133
|
-
.footer-nav {
|
134
|
-
flex-direction: column;
|
135
|
-
}
|
136
|
-
}
|
137
|
-
|
138
|
-
.footer-nav-item {
|
139
|
-
margin: -12px 0;
|
140
|
-
padding: 0;
|
141
|
-
display: -webkit-box;
|
142
|
-
display: -webkit-flex;
|
143
|
-
display: -ms-flexbox;
|
144
|
-
display: flex;
|
145
|
-
-webkit-flex-direction: column;
|
146
|
-
-ms-flex-direction: column;
|
147
|
-
flex-direction: column;
|
148
|
-
-webkit-box-flex: 1;
|
149
|
-
-webkit-flex-grow: 1;
|
150
|
-
-ms-flex-positive: 1;
|
151
|
-
flex-grow: 1;
|
152
|
-
-webkit-flex-shrink: 1;
|
153
|
-
-ms-flex-negative: 1;
|
154
|
-
flex-shrink: 1;
|
155
|
-
-webkit-flex-basis: 0;
|
156
|
-
-ms-flex-preferred-size: 0;
|
157
|
-
flex-basis: 0;
|
158
|
-
}
|
159
|
-
.footer-logo-cont {
|
160
|
-
flex: 1 1 auto;
|
161
|
-
display: flex;
|
162
|
-
flex-direction: column;
|
163
|
-
align-items: flex-start;
|
164
|
-
}
|
165
|
-
|
166
|
-
.footer-ul {
|
167
|
-
display: flex;
|
168
|
-
flex-direction: column;
|
169
|
-
padding-left: 0;
|
170
|
-
}
|
171
|
-
.footer-title {
|
172
|
-
font-stretch: 400;
|
173
|
-
font-weight: 400;
|
174
|
-
font-size: 18px;
|
175
|
-
line-height: 28px;
|
176
|
-
color: #1a1a1a;
|
177
|
-
padding-top: 24px;
|
178
|
-
}
|
179
|
-
|
180
|
-
.footer-ul-title {
|
181
|
-
font-stretch: 400;
|
182
|
-
font-weight: 700;
|
183
|
-
font-size: 16px;
|
184
|
-
line-height: 24px;
|
185
|
-
color: rgba(26, 26, 26, 1);
|
186
|
-
padding: 12px 0;
|
187
|
-
-webkit-user-select: none;
|
188
|
-
-moz-user-select: none;
|
189
|
-
-ms-user-select: none;
|
190
|
-
user-select: none;
|
191
|
-
}
|
192
|
-
.footer-link {
|
193
|
-
font-stretch: 400;
|
194
|
-
font-weight: 400;
|
195
|
-
font-size: 16px;
|
196
|
-
line-height: 24px;
|
197
|
-
color: rgba(26, 26, 26, 1);
|
198
|
-
padding: 12px 0;
|
199
|
-
-webkit-flex: 0 0 auto;
|
200
|
-
-ms-flex: 0 0 auto;
|
201
|
-
flex: 0 0 auto;
|
202
|
-
width: 100%;
|
203
|
-
} */
|
204
|
-
|
205
|
-
/* .privacy-footer {
|
206
|
-
display: -webkit-box;
|
207
|
-
display: -webkit-flex;
|
208
|
-
display: -ms-flexbox;
|
209
|
-
display: flex;
|
210
|
-
-webkit-flex-direction: row;
|
211
|
-
-ms-flex-direction: row;
|
212
|
-
flex-direction: row;
|
213
|
-
padding: 24px 0;
|
214
|
-
}
|
215
|
-
|
216
|
-
.footer-msg {
|
217
|
-
font-stretch: 400;
|
218
|
-
font-weight: 400;
|
219
|
-
font-size: 16px;
|
220
|
-
line-height: 24px;
|
221
|
-
color: #1a1a1a;
|
222
|
-
-webkit-flex: 1 1 auto;
|
223
|
-
-ms-flex: 1 1 auto;
|
224
|
-
flex: 1 1 auto;
|
225
|
-
} */
|
226
|
-
|
227
|
-
/* .privacy-links {
|
228
|
-
display: -webkit-box;
|
229
|
-
display: -webkit-flex;
|
230
|
-
display: -ms-flexbox;
|
231
|
-
display: flex;
|
232
|
-
-webkit-align-items: flex-start;
|
233
|
-
-webkit-box-align: flex-start;
|
234
|
-
-ms-flex-align: flex-start;
|
235
|
-
align-items: flex-start;
|
236
|
-
-webkit-flex-direction: row;
|
237
|
-
-ms-flex-direction: row;
|
238
|
-
flex-direction: row;
|
239
|
-
}
|
240
|
-
|
241
|
-
.privacy-links-item {
|
242
|
-
font-stretch: 400;
|
243
|
-
font-weight: 400;
|
244
|
-
font-size: 16px;
|
245
|
-
line-height: 24px;
|
246
|
-
color: #1a1a1a;
|
247
|
-
margin: 0 20px;
|
248
|
-
}
|
249
|
-
.privacy-links-item > a {
|
250
|
-
color: #000;
|
251
|
-
} */
|
252
|
-
|
253
1
|
.txt-primary {
|
254
2
|
color: #000;
|
255
3
|
font-size: 16px;
|
256
4
|
text-decoration: none !important;
|
257
5
|
}
|
6
|
+
|
258
7
|
.txt-secondary {
|
259
8
|
color: gray;
|
260
9
|
font-size: 15px;
|
261
10
|
text-decoration: none !important;
|
262
11
|
margin: 2rem 0px;
|
263
12
|
}
|
13
|
+
|
264
14
|
.txt-secondary:hover {
|
265
15
|
color: #000;
|
266
16
|
}
|
@@ -286,6 +36,7 @@ hr {
|
|
286
36
|
color: #000;
|
287
37
|
font-weight: 900;
|
288
38
|
}
|
39
|
+
|
289
40
|
.list-inline {
|
290
41
|
padding-left: 0;
|
291
42
|
list-style: none;
|
@@ -307,31 +58,20 @@ hr {
|
|
307
58
|
color: transparent;
|
308
59
|
transition: all 0.3s ease-in;
|
309
60
|
}
|
61
|
+
|
310
62
|
.copyright-text {
|
311
63
|
font-size: 18px;
|
312
64
|
}
|
65
|
+
|
313
66
|
.footer-address {
|
314
67
|
margin-bottom: 20px;
|
315
68
|
}
|
69
|
+
|
316
70
|
.footer-address p {
|
317
71
|
margin-bottom: 15px;
|
318
72
|
}
|
319
73
|
|
320
|
-
@media (max-width: 768px) {
|
321
|
-
.txt-secondary {
|
322
|
-
text-align: center;
|
323
|
-
}
|
324
|
-
.email_heaidng{
|
325
|
-
font-size: 1.4rem;
|
326
|
-
}
|
327
|
-
}
|
328
|
-
|
329
|
-
|
330
74
|
|
331
|
-
html {
|
332
|
-
line-height: 1.15;
|
333
|
-
-webkit-text-size-adjust: 100%;
|
334
|
-
}
|
335
75
|
.drop-down-btn {
|
336
76
|
cursor: pointer;
|
337
77
|
outline: 0px;
|
@@ -348,9 +88,11 @@ html {
|
|
348
88
|
line-height: 24px;
|
349
89
|
color: rgb(26, 26, 26);
|
350
90
|
}
|
91
|
+
|
351
92
|
.drop-down-btn svg {
|
352
93
|
height: 22px;
|
353
94
|
}
|
95
|
+
|
354
96
|
.language-drop-down-menu {
|
355
97
|
display: flex;
|
356
98
|
justify-content: space-between;
|
@@ -358,6 +100,7 @@ html {
|
|
358
100
|
padding: 0;
|
359
101
|
flex-wrap: wrap;
|
360
102
|
}
|
103
|
+
|
361
104
|
.language-drop-down-item {
|
362
105
|
width: 50%;
|
363
106
|
padding: 10px 12px 1px 1px;
|
@@ -366,6 +109,7 @@ html {
|
|
366
109
|
margin-bottom: 0;
|
367
110
|
list-style: none;
|
368
111
|
}
|
112
|
+
|
369
113
|
.language-drop-down-item a {
|
370
114
|
display: flex;
|
371
115
|
width: 100%;
|
@@ -374,28 +118,44 @@ html {
|
|
374
118
|
color: #11304e;
|
375
119
|
border-bottom: 1px solid rgb(224, 224, 224);
|
376
120
|
}
|
121
|
+
|
377
122
|
.language-drop-down-item a:hover {
|
378
123
|
background: rgb(238, 238, 238);
|
379
124
|
border-radius: 3px;
|
380
125
|
}
|
126
|
+
|
381
127
|
.language-drop-down-item a i {
|
382
128
|
margin: 0;
|
383
129
|
}
|
130
|
+
|
384
131
|
.active-lang {
|
385
132
|
background: rgb(238, 238, 238);
|
386
133
|
border-radius: 3px;
|
387
134
|
}
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
}
|
392
|
-
}
|
393
|
-
.modal-header{
|
135
|
+
|
136
|
+
|
137
|
+
.modal-header {
|
394
138
|
padding: 1.8rem;
|
395
139
|
}
|
396
|
-
|
140
|
+
|
141
|
+
.modal-title {
|
397
142
|
font-size: 2.28rem;
|
398
143
|
}
|
399
|
-
|
144
|
+
|
145
|
+
.close {
|
400
146
|
font-size: 3.8rem;
|
147
|
+
}
|
148
|
+
|
149
|
+
@media (max-width: 768px) {
|
150
|
+
.language-drop-down-item {
|
151
|
+
width: 100% !important;
|
152
|
+
}
|
153
|
+
|
154
|
+
.txt-secondary {
|
155
|
+
text-align: center;
|
156
|
+
}
|
157
|
+
|
158
|
+
.email_heaidng {
|
159
|
+
font-size: 1.4rem;
|
160
|
+
}
|
401
161
|
}
|