word-games-theme 1.5.6 → 1.5.8

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.
Files changed (51) 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 +1 -29
  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. data/assets/js/X-letter-test.js +29 -16
  43. data/assets/js/wordScrabble-test.js +26 -28
  44. data/assets/js/words-starting-with.js +30 -22
  45. metadata +3 -8
  46. data/_includes/placeholder-loading.html +0 -8
  47. data/assets/css/config.css +0 -22
  48. data/assets/fonts/Poppins-Regular.ttf +0 -0
  49. data/assets/js/advancedFilter.js +0 -5
  50. data/assets/js/advancedFilter2.js +0 -12
  51. 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;
@@ -213,6 +213,7 @@ function x_with_letters(data) {
213
213
  } else {
214
214
  let newWordsLength = 0
215
215
  let filterData = ''
216
+ let dataArr = []
216
217
 
217
218
 
218
219
  if (letterLen) {
@@ -298,21 +299,6 @@ function x_with_letters(data) {
298
299
  main.innerHTML += ''
299
300
  errorMsg.innerHTML = 'No words Found with this length'
300
301
  } else {
301
- // sort eventlistener
302
- theSelect.addEventListener('change', () => {
303
- sortValue = theSelect[theSelect.selectedIndex].text
304
- if (sortValue == 'Z-A') {
305
- sortBool = true
306
- sortby(sortBool, filterData, itemLength)
307
- } else {
308
- sortBool = false
309
- sortby(sortBool, filterData, itemLength)
310
- }
311
- if (sortValue == 'Points') {
312
- sortBool = true
313
- sortPointsby(sortBool, filterData, itemLength)
314
- }
315
- })
316
302
 
317
303
  newWordsLength += filterData.length
318
304
  let itemLength = ''
@@ -361,7 +347,7 @@ function x_with_letters(data) {
361
347
  }
362
348
  })
363
349
 
364
-
350
+ dataArr.push(item)
365
351
  return `<a class="anchor__style" title="Lookup ${item} in Dictionary" target="_blank" href="/word-meaning?search=${item}">
366
352
  <li>${itemHtml}
367
353
  <span class="points" value="${sum}" style="position:relative; top:4px; font-size:12px"> ${sum}</span>
@@ -394,7 +380,34 @@ function x_with_letters(data) {
394
380
  </div>
395
381
  </div>
396
382
  `
383
+
384
+ // sort eventlistener
385
+ theSelect.addEventListener('change', () => {
386
+ sortValue = theSelect[theSelect.selectedIndex].text
387
+ if (sortValue == 'Z-A') {
388
+ sortBool = true
389
+ sortby(sortBool, dataArr, itemLength)
390
+ } else {
391
+ sortBool = false
392
+ sortby(sortBool, dataArr, itemLength)
393
+ }
394
+ if (sortValue == 'Points') {
395
+ sortBool = true
396
+ sortPointsby(sortBool, dataArr, itemLength)
397
+ }
398
+ })
399
+
400
+ sortValue = theSelect[theSelect.selectedIndex].text
401
+ if (sortValue == 'Z-A') {
402
+ sortby(sortBool, dataArr, itemLength)
403
+ }
404
+ if (sortValue == 'Points') {
405
+ sortPointsby(sortBool, dataArr, itemLength)
406
+ }
407
+
408
+
397
409
  }
410
+
398
411
  wordCount.innerHTML = `<strong>Found ${newWordsLength} words with letters with ${serachValue.split(
399
412
  ''
400
413
  )}</strong>`