word-games-theme 1.5.6 → 1.5.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/_data/wordgames/en/jumble_word_finder.json +25 -4
  3. data/_includes/adBlocker/adBlocker.html +1 -1
  4. data/_includes/footer/index.html +2 -20
  5. data/_includes/head/index.html +4 -4
  6. data/_includes/header/index.html +1 -5
  7. data/_includes/howto.html +0 -37
  8. data/_includes/postbox.html +1 -1
  9. data/_includes/script.html +7 -3
  10. data/_includes/section/commonPage.html +0 -21
  11. data/_includes/section/count.html +1 -39
  12. data/_includes/section/feature.html +0 -28
  13. data/_includes/section/news.html +1 -27
  14. data/_includes/section/recent_posts.html +0 -48
  15. data/_includes/section/related_categories_post.html +1 -179
  16. data/_includes/xyzpages/xyz.html +0 -1
  17. data/_layouts/allpages.html +1 -4
  18. data/_layouts/blank.html +0 -5
  19. data/_layouts/blog.html +0 -50
  20. data/_layouts/categories.html +2 -3
  21. data/_layouts/default.html +0 -7
  22. data/_layouts/page.html +1 -4
  23. data/_layouts/page2.html +2 -4
  24. data/_layouts/post.html +23 -35
  25. data/_layouts/privacyPolicy.html +0 -6
  26. data/_layouts/termAndCondition.html +2 -4
  27. data/_layouts/tools.html +1 -5
  28. data/_layouts/wordMeaning.html +2 -4
  29. data/_layouts/xyzpages.html +1 -5
  30. data/assets/css/adBlocker.css +0 -1
  31. data/assets/css/blog.css +1 -46
  32. data/assets/css/content.css +0 -7
  33. data/assets/css/feature.css +0 -1
  34. data/assets/css/footer.css +0 -1
  35. data/assets/css/game.css +2 -20
  36. data/assets/css/home.css +19 -22
  37. data/assets/css/news.css +6 -0
  38. data/assets/css/style.css +0 -20
  39. data/assets/css/testhome.css +417 -0
  40. data/assets/css/wordleSolver.css +43 -29
  41. data/assets/css/wordsInCertainPosition.css +0 -7
  42. metadata +3 -8
  43. data/_includes/placeholder-loading.html +0 -8
  44. data/assets/css/config.css +0 -22
  45. data/assets/fonts/Poppins-Regular.ttf +0 -0
  46. data/assets/js/advancedFilter.js +0 -5
  47. data/assets/js/advancedFilter2.js +0 -12
  48. data/assets/js/advancedFilter3.js +0 -2
@@ -0,0 +1,417 @@
1
+ .pageHeaderBg {
2
+ width: 100%;
3
+ height: 100%;
4
+ display: flex;
5
+ flex-direction: column;
6
+ justify-content: center;
7
+ align-items: center;
8
+ background: url(../images/bg_elements.png);
9
+ background-position: center;
10
+ background-size: cover;
11
+ margin-bottom: 20vh;
12
+ padding: 15px 0;
13
+ }
14
+
15
+ .result_navbar_section {
16
+ width: 100%;
17
+ padding: .8rem 9% !important;
18
+ position: sticky;
19
+ top: 0px;
20
+ z-index: 99999;
21
+ display: flex;
22
+ justify-content: space-between;
23
+ flex-wrap: wrap;
24
+ -ms-flex-align: center;
25
+ align-items: center;
26
+ }
27
+
28
+ .pageHeading {
29
+ margin-bottom: 0.8rem;
30
+ /* padding-top: 1.5rem; */
31
+ }
32
+
33
+ .pageHeading>h1 {
34
+ font-size: 27px;
35
+ }
36
+
37
+ .pageHeading>.result_heading {
38
+ font-size: 22px;
39
+ font-weight: 600;
40
+ color: #000;
41
+ }
42
+
43
+ .table {
44
+ height: 5em;
45
+ overflow: auto;
46
+ }
47
+
48
+ .serachSection {
49
+ height: 50px;
50
+ position: relative;
51
+ }
52
+
53
+ input:-webkit-autofill,
54
+ input:-webkit-autofill:hover,
55
+ input:-webkit-autofill:focus,
56
+ input:-webkit-autofill:active {
57
+ transition: background-color 5000s ease-in-out 0s;
58
+ }
59
+
60
+ .resultPageTxtBox,
61
+ .resultPageSearchBtn {
62
+ height: 50px !important;
63
+ }
64
+
65
+ .resultPageDropdown2 {
66
+ height: 49px !important;
67
+ padding: 0 !important;
68
+ }
69
+
70
+ ::placeholder {
71
+ font-weight: 500;
72
+ }
73
+
74
+ .txtBox {
75
+ height: 70px;
76
+ border-radius: 8px;
77
+ border: solid 1px rgba(0, 0, 0, 0.1);
78
+ background: #fff;
79
+ padding: 0;
80
+ width: 100%;
81
+ font-size: 15px;
82
+ font-weight: 700;
83
+ font-style: normal;
84
+ letter-spacing: normal;
85
+ color: var(--txtColor);
86
+ text-indent: 15px;
87
+ outline: none;
88
+ position: relative;
89
+ }
90
+
91
+ .serachBtn {
92
+ border-radius: 0px;
93
+ background: url(../images/search.svg) no-repeat center center;
94
+ background-size: 35px 35px;
95
+ height: 70px;
96
+ width: 59px;
97
+ border: none;
98
+ position: absolute;
99
+ top: 0px;
100
+ right: 0px;
101
+ outline: none;
102
+ background-color: #000;
103
+ }
104
+
105
+ .advancedFilter .filterButton {
106
+ background: #f8f9fa;
107
+ box-shadow: 0 0 2px #343a4063;
108
+ width: 190px;
109
+ border-radius: 10px;
110
+ cursor: pointer;
111
+ border: none;
112
+ padding: 10px;
113
+ text-align: left;
114
+ color: #1c1107;
115
+ font-size: 13px;
116
+ font-weight: 600;
117
+ font-stretch: normal;
118
+ font-style: normal;
119
+ outline: none;
120
+ }
121
+
122
+ .angle-arrow2 {
123
+ background: url(../images/angle-arrow-down.svg) no-repeat;
124
+ background-size: contain;
125
+ object-fit: cover;
126
+ width: 10px;
127
+ height: 10px;
128
+ font-weight: 900;
129
+ position: absolute;
130
+ top: 19px;
131
+ right: 9px;
132
+ margin: -3px 0;
133
+ cursor: pointer;
134
+ /* z-index: 9999; */
135
+ }
136
+
137
+ #select_dropDown {
138
+ background: #f8f9fa;
139
+ box-shadow: 0 0 2px #343a4063;
140
+ word-wrap: normal;
141
+ width: 190px;
142
+ border-radius: 10px;
143
+ cursor: pointer;
144
+ border: none;
145
+ padding: 10px;
146
+ text-align: left;
147
+ color: #1c1107;
148
+ font-size: 13px;
149
+ font-weight: 600;
150
+ font-stretch: normal;
151
+ font-style: normal;
152
+ outline: none;
153
+ }
154
+
155
+ .select_dropDown2 {
156
+ height: 69px;
157
+ position: absolute;
158
+ top: 0px;
159
+ font-size: 15px;
160
+ width: 142px;
161
+ overflow: hidden;
162
+ object-fit: cover;
163
+ right: 69px;
164
+ /* padding: 19px 0; */
165
+ border-bottom: 0 !important;
166
+ border-radius: 0;
167
+ border: none;
168
+ box-shadow: none;
169
+ background: white;
170
+ border-left: 1px solid rgba(0, 0, 0, 0.11);
171
+ border-top: 1px solid rgba(0, 0, 0, 0.11);
172
+ border-bottom: 1px solid rgba(0, 0, 0, 0.11);
173
+ }
174
+
175
+ .select_dropDown2:focus {
176
+ outline: none;
177
+ }
178
+
179
+ .fillterWrapper {
180
+ display: none;
181
+ }
182
+
183
+ .fillterWrapper label {
184
+ margin: 0;
185
+ text-indent: 12px;
186
+ }
187
+
188
+ .fillterWrapper input {
189
+ border-radius: 10px;
190
+ border: solid 1px rgba(0, 0, 0, 0.11);
191
+ background-color: #fff;
192
+ font-size: 12px;
193
+ padding: 5px 12px;
194
+ /* text-indent: 15px; */
195
+ width: 190px;
196
+ outline: none;
197
+ box-shadow: none;
198
+ }
199
+
200
+ .btn-info:not(:disabled):not(.disabled).active:focus,
201
+ .btn-info:not(:disabled):not(.disabled):active:focus,
202
+ .show>.btn-info.dropdown-toggle:focus {
203
+ box-shadow: unset;
204
+ border-color: rgba(0, 0, 0, 0.1);
205
+ }
206
+
207
+ .fillterWrapper input:hover {
208
+ border-color: rgba(0, 0, 0, 0.1);
209
+ }
210
+
211
+ .fillterWrapper input:focus {
212
+ box-shadow: unset;
213
+ }
214
+
215
+ .fillterWrapper input:active {
216
+ box-shadow: unset;
217
+ }
218
+
219
+ .actives {
220
+ z-index: 999;
221
+ top: 90px;
222
+ background: #fff;
223
+ box-shadow: 0 0 5px rgb(0 0 0 / 40%);
224
+ padding: 15px 15px;
225
+ border-radius: 15px;
226
+ height: auto;
227
+ position: absolute;
228
+ right: -16px;
229
+ margin: 1rem 0;
230
+ flex-direction: column;
231
+ width: 240px;
232
+ display: inline-flex !important;
233
+ gap: 5px;
234
+ }
235
+
236
+ .errorMsg {
237
+ text-align: center;
238
+ font-size: 20px;
239
+ color: red;
240
+ font-weight: 800;
241
+ }
242
+
243
+ #containerWd {
244
+ width: 700px !important;
245
+ padding: 0px;
246
+ }
247
+
248
+ .mobile_bars {
249
+ cursor: pointer;
250
+ position: absolute;
251
+ top: 0px;
252
+ margin: 0 40px
253
+ }
254
+
255
+ #open_list_bar {
256
+ position: fixed;
257
+ top: 0px;
258
+ left: -100%;
259
+ z-index: 999;
260
+ height: 100vh;
261
+ transition: all .5s ease-in-out;
262
+ list-style: none;
263
+ box-shadow: 0 0 5px grey;
264
+ background: #f8f9fa;
265
+ overflow-y: scroll;
266
+ }
267
+
268
+ .cat_title {
269
+ color: #000;
270
+ font-weight: 900;
271
+ font-size: 14px;
272
+ position: relative;
273
+ left: 10px;
274
+ top: 3px;
275
+ }
276
+
277
+ .close_bar_btn {
278
+ position: absolute;
279
+ right: 8px;
280
+ font-size: 28px;
281
+ top: 15px;
282
+ cursor: pointer;
283
+ }
284
+
285
+ .cat_bar_logo_link {
286
+ padding: 0 15px;
287
+ }
288
+
289
+ .cat_bar_logo_link .cat_bar_img {
290
+ width: 30px;
291
+ }
292
+
293
+ .list_cat_heading {
294
+ /* margin: 0 0 15px; */
295
+ padding: 8px 15px;
296
+ background-color: gray;
297
+ color: #fff;
298
+ font-size: 13px;
299
+ }
300
+
301
+ .list_cat_name {
302
+ /* margin:0 0 15px; */
303
+ padding: 8px 15px;
304
+ font-size: 12px;
305
+ border-bottom: 1px solid rgb(209, 213, 219)
306
+ }
307
+
308
+ .list_cat_name:active {
309
+ color: #000 !important
310
+ }
311
+
312
+ .list_cat_name:hover {
313
+ background-color: #e9ecef;
314
+ }
315
+
316
+ @media (max-width: 500px) {
317
+ #select_dropDown {
318
+ top: 150px !important;
319
+ right: -15px !important
320
+ }
321
+ }
322
+
323
+ @media (max-width: 768px) {
324
+ .nav_menu_bar {
325
+ display: none;
326
+ }
327
+
328
+ .mobile_bars {
329
+ display: block;
330
+ position: absolute;
331
+ top: 5px;
332
+ margin: 0;
333
+ }
334
+
335
+ .result_navbar_section {
336
+ padding: 1.2rem 15px !important;
337
+ }
338
+
339
+ .pageHeading {
340
+ margin-bottom: 1rem;
341
+ }
342
+
343
+ .pageHeading>h2 {
344
+ font-size: 1.4rem;
345
+ }
346
+
347
+ .pageHeading>.result_heading {
348
+ font-size: 1.8rem;
349
+ padding-left: 25px;
350
+ }
351
+
352
+ .wrapper_dropDown {
353
+ align-items: flex-end;
354
+ flex-direction: column;
355
+ gap: 0 !important;
356
+ /* margin:0 !important */
357
+ }
358
+
359
+ .txtBox {
360
+ height: 50px !important;
361
+ }
362
+
363
+ .serachBtn {
364
+ height: 50px !important;
365
+ width: 40px !important;
366
+ }
367
+
368
+ .advancedFilter .filterButton {
369
+ top: 60px;
370
+ }
371
+
372
+ .select_dropDown2 {
373
+ height: 50px;
374
+ width: 30%;
375
+ right: 40px;
376
+ padding: 9.5px 0;
377
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
378
+ }
379
+
380
+ #select_dropDown {
381
+ display: none;
382
+ background: white;
383
+ position: absolute;
384
+ top: 149px;
385
+ right: 0px;
386
+ border-radius: 0;
387
+ padding: 7.5px;
388
+ z-index: 9999999999;
389
+ width: 50%;
390
+ }
391
+
392
+ .pageHeading h1 {
393
+ font-size: 2rem;
394
+ }
395
+
396
+ #containerWd {
397
+ width: 100% !important;
398
+ padding: 0px 15px;
399
+ }
400
+
401
+ .actives {
402
+ top: 102px;
403
+ display: flex;
404
+ right: -5px;
405
+ }
406
+
407
+ .fillterWrapper input {
408
+ width: 100%;
409
+ margin-bottom: 10px;
410
+ }
411
+ }
412
+
413
+ @media (max-width: 992px) {
414
+ .navbar-nav .nav-item {
415
+ padding: 0px !important;
416
+ }
417
+ }
@@ -1,16 +1,14 @@
1
-
2
- /* wordle solver tool css */
3
1
  .ws {
4
2
  display: flex;
5
3
  flex-direction: column;
6
4
  justify-content: center;
7
5
  align-items: center;
8
- /* background: rgba(0, 0, 0, 0.1); */
9
- /* padding: 15px 0px !important; */
10
6
  }
7
+
11
8
  .errMessage {
12
9
  display: none;
13
10
  }
11
+
14
12
  .forms_data {
15
13
  border: 1px solid rgba(0, 0, 0, 0.1);
16
14
  padding: 0px 25px;
@@ -38,6 +36,7 @@
38
36
  box-shadow: unset !important;
39
37
  border-color: #ced4da !important;
40
38
  }
39
+
41
40
  #addMore {
42
41
  font-size: 25px;
43
42
  background-color: transparent;
@@ -57,10 +56,12 @@
57
56
  width: 100px;
58
57
  font-weight: 900;
59
58
  }
59
+
60
60
  .wordlesolver-btn:focus {
61
61
  outline: none;
62
62
  box-shadow: unset !important;
63
63
  }
64
+
64
65
  .wordlesolver-btn:hover {
65
66
  color: #fff;
66
67
  }
@@ -69,6 +70,7 @@
69
70
  font-size: 14px;
70
71
  font-weight: 600;
71
72
  }
73
+
72
74
  .allfiveletterswords {
73
75
  background-color: white !important;
74
76
  width: 75%;
@@ -78,30 +80,36 @@
78
80
  /* margin: 10px 0; */
79
81
  border-radius: 15px;
80
82
  }
81
- .allfiveletterswords > .wordListHeading {
83
+
84
+ .allfiveletterswords>.wordListHeading {
82
85
  background: gray;
83
86
  padding: 10px 0px 5px 25px;
84
87
  color: #fff;
85
88
  border-top-right-radius: 15px;
86
89
  border-top-left-radius: 15px;
87
90
  }
91
+
88
92
  #wordleWordCount {
89
93
  font-size: 18px;
90
94
  width: 75%;
91
95
  margin: 10px auto;
92
96
  }
97
+
93
98
  .ws-fcs {
94
99
  color: #fff !important;
95
100
  background-color: #20a815 !important;
96
101
  }
102
+
97
103
  .ws-fcs2 {
98
104
  color: #fff !important;
99
105
  background-color: #C59E28 !important;
100
106
  }
107
+
101
108
  .ws-fcs3 {
102
109
  color: #fff !important;
103
110
  background-color: #3D3D3E !important;
104
111
  }
112
+
105
113
  .related_post_heading {
106
114
  width: 100%;
107
115
  font-size: 46px;
@@ -116,44 +124,50 @@
116
124
  padding-top: 75px;
117
125
  display: inline-block;
118
126
  }
127
+
119
128
  #wordleSolvererrorMsg {
120
129
  margin: 10px auto;
121
130
  width: 75%;
122
131
  }
123
- .refineSerach{
132
+
133
+ .refineSerach {
124
134
  text-align: center;
125
135
  display: none;
126
136
  box-shadow: 0 0 1px rgb(0 0 0 / 10%);
127
- border: none;
128
- padding: 10px 15px;
129
- width: 320px;
130
- background: #20a815;
131
- border-radius: 20px;
132
- font-size: 15px;
133
- margin-bottom: 2rem;
134
- margin:5px auto;
135
- color:#fff;
136
- }
137
- .refineSerach:hover{
138
- color:#fff !important
139
- }
140
- .createWordleLink{
137
+ border: none;
138
+ padding: 10px 15px;
139
+ width: 320px;
140
+ background: #20a815;
141
+ border-radius: 20px;
142
+ font-size: 15px;
143
+ margin-bottom: 2rem;
144
+ margin: 5px auto;
145
+ color: #fff;
146
+ }
147
+
148
+ .refineSerach:hover {
149
+ color: #fff !important
150
+ }
151
+
152
+ .createWordleLink {
141
153
  text-decoration: underline;
142
154
  text-align: center;
143
155
  display: block;
144
156
  box-shadow: 0 0 1px rgb(0 0 0 / 10%);
145
- border: none;
146
- padding: 10px 15px;
147
- width: 320px;
148
- background: #345234;
149
- border-radius: 20px;
150
- font-size: 15px;
151
- margin-bottom: 2rem;
152
- margin:5px auto;
157
+ border: none;
158
+ padding: 10px 15px;
159
+ width: 320px;
160
+ background: #345234;
161
+ border-radius: 20px;
162
+ font-size: 15px;
163
+ margin-bottom: 2rem;
164
+ margin: 5px auto;
153
165
  }
166
+
154
167
  @media (max-width: 768px) {
168
+
155
169
  .allfiveletterswords,
156
170
  #wordleWordCount {
157
171
  width: 80%;
158
172
  }
159
- }
173
+ }
@@ -144,13 +144,6 @@ small {
144
144
  font-weight: 600;
145
145
  }
146
146
 
147
- /* #searchData:before{
148
- content: "\1F50D";
149
- position: absolute;
150
- top:8px;
151
- left: 5px;
152
- } */
153
-
154
147
  .flex-row {
155
148
  -ms-flex-direction: row !important;
156
149
  flex-direction: row !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: 1.5.6
4
+ version: 1.5.7
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-17 00:00:00.000000000 Z
11
+ date: 2022-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -156,7 +156,6 @@ files:
156
156
  - _includes/languages/languages.html
157
157
  - _includes/paginationBlogPage.html
158
158
  - _includes/paginationPostPage.html
159
- - _includes/placeholder-loading.html
160
159
  - _includes/postauthorbio.html
161
160
  - _includes/postbox.html
162
161
  - _includes/script.html
@@ -202,7 +201,6 @@ files:
202
201
  - assets/css/advancedFilter.css
203
202
  - assets/css/blog.css
204
203
  - assets/css/bootstrap.min.css
205
- - assets/css/config.css
206
204
  - assets/css/content.css
207
205
  - assets/css/feature.css
208
206
  - assets/css/footer.css
@@ -210,11 +208,11 @@ files:
210
208
  - assets/css/home.css
211
209
  - assets/css/news.css
212
210
  - assets/css/style.css
211
+ - assets/css/testhome.css
213
212
  - assets/css/wordGroup.css
214
213
  - assets/css/wordScrabble.css
215
214
  - assets/css/wordleSolver.css
216
215
  - assets/css/wordsInCertainPosition.css
217
- - assets/fonts/Poppins-Regular.ttf
218
216
  - assets/images/404.svg
219
217
  - assets/images/Ankita.webp
220
218
  - assets/images/Anushka.webp
@@ -288,9 +286,6 @@ files:
288
286
  - assets/js/X-letter-test.js
289
287
  - assets/js/X-letter.js
290
288
  - assets/js/adBlocker.js
291
- - assets/js/advancedFilter.js
292
- - assets/js/advancedFilter2.js
293
- - assets/js/advancedFilter3.js
294
289
  - assets/js/bootstrap.bundle.min.js
295
290
  - assets/js/confetti.js
296
291
  - assets/js/createWordle.js
@@ -1,8 +0,0 @@
1
- <div class="placeholder_loading placeholder shimmer">
2
- <div class="faux-image-wrapper">
3
- <div class="faux-text"></div>
4
- <div class="faux-text short"></div>
5
- <div class="faux-text short2"></div>
6
- </div>
7
-
8
- </div>
@@ -1,22 +0,0 @@
1
-
2
-
3
- .ads_layout{
4
- padding: 15px;
5
- background-color: #b641da;
6
- margin-left: 0;
7
- margin-top: 0;
8
- margin-bottom: 0;
9
- color: white;
10
- text-align: center;
11
- width: 755px;
12
- margin: 0 auto;
13
- }
14
-
15
- @media (max-width:768px) {
16
- .ads_layout{
17
- width: 100%;
18
- }
19
- .footer-section{
20
- padding:100px 0px;
21
- }
22
- }
Binary file
@@ -1,5 +0,0 @@
1
- const wordLength = document.querySelector('.wordLength')
2
- wordLength.style.display = 'none'
3
-
4
- // const sortSelect = document.querySelector('#sort-select')
5
- // sortSelect.style.display = 'none'
@@ -1,12 +0,0 @@
1
- // const advancedFilter = document.querySelector('.advancedFilter')
2
- // const fillterWrapper = document.querySelector('.fillterWrapper')
3
- // advancedFilter.addEventListener('click', () => {
4
- // fillterWrapper.classList.toggle('active')
5
- // fillterWrapper.classList.remove('hide')
6
- // })
7
-
8
- // const close = document.querySelector('.fa-times')
9
- // close.addEventListener('click', () => {
10
- // fillterWrapper.classList.remove('active')
11
- // fillterWrapper.classList.add('hide')
12
- // })
@@ -1,2 +0,0 @@
1
- // const advancedFilter = document.querySelector('.advancedFilter')
2
- // advancedFilter.style.display = ' none'