word-games-theme 1.8.5 → 1.8.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/_data/footer/en/data.json +1 -1
  3. data/_data/header/en/data.json +174 -52
  4. data/_data/wordgames/en/five_letter_word_finder.json +449 -93
  5. data/_data/wordgames/en/root.json +11 -168
  6. data/_data/wordleSolver/en/resultData.json +2 -1
  7. data/_data/xyzPagesData/en/unscramble-letters-jumble.json +261 -103
  8. data/_includes/WordPointTables/table.html +1 -4
  9. data/_includes/autogenerated/content.html +1 -3
  10. data/_includes/footer/index.html +1 -1
  11. data/_includes/head/index.html +39 -9
  12. data/_includes/howto.html +1 -1
  13. data/_includes/repeat-letters.html +50 -186
  14. data/_includes/script.html +4 -2
  15. data/_includes/section/commonPage.html +13 -18
  16. data/_includes/section/{news.html → faq.html} +2 -2
  17. data/_includes/section/feature.html +4 -4
  18. data/_includes/section/home.html +50 -54
  19. data/_includes/section/wordGroup.html +2 -7
  20. data/_includes/section/xyzGroup.html +1 -1
  21. data/_includes/wordfinderstrategy/content.html +1 -5
  22. data/_includes/xyzpages/xyz.html +12 -8
  23. data/_layouts/allpages.html +0 -1
  24. data/_layouts/autogencontent.html +0 -3
  25. data/_layouts/default.html +1 -11
  26. data/_layouts/disclaimer.html +28 -0
  27. data/_layouts/page.html +0 -45
  28. data/_layouts/page2.html +0 -44
  29. data/_layouts/post.html +3 -2
  30. data/_layouts/privacyPolicy.html +27 -0
  31. data/_layouts/termAndCondition.html +28 -4
  32. data/_layouts/tools.html +7 -1
  33. data/_layouts/wordMeaning.html +25 -17
  34. data/_layouts/xyzpages.html +2 -6
  35. data/assets/css/blog.css +128 -212
  36. data/assets/css/bootstrap.min.css +2521 -524
  37. data/assets/css/content.css +34 -49
  38. data/assets/css/game.css +60 -57
  39. data/assets/css/multiple-word-anagram-solver.css +14 -15
  40. data/assets/css/style.css +533 -285
  41. data/assets/css/wordGroup.css +380 -17
  42. data/assets/css/wordleSolver.css +22 -22
  43. data/assets/css/wordsInCertainPosition.css +14 -29
  44. data/assets/images/wordswithletters-logo.webp +0 -0
  45. data/assets/js/adBlocker.js +0 -1
  46. data/assets/js/words-starting-with.js +0 -4
  47. metadata +4 -32
  48. data/_data/wordgames/ar/four_letter_word_finder.json +0 -196
  49. data/_data/wordgames/da/four_letter_word_finder.json +0 -196
  50. data/_data/wordgames/de/four_letter_word_finder.json +0 -196
  51. data/_data/wordgames/es/four_letter_word_finder.json +0 -196
  52. data/_data/wordgames/fr/four_letter_word_finder.json +0 -197
  53. data/_data/wordgames/id/four_letter_word_finder.json +0 -196
  54. data/_data/wordgames/it/four_letter_word_finder.json +0 -196
  55. data/_data/wordgames/ja/four_letter_word_finder.json +0 -196
  56. data/_data/wordgames/ko/four_letter_word_finder.json +0 -196
  57. data/_data/wordgames/nl/four_letter_word_finder.json +0 -196
  58. data/_data/wordgames/pl/four_letter_word_finder.json +0 -196
  59. data/_data/wordgames/pt/four_letter_word_finder.json +0 -196
  60. data/_data/wordgames/ru/four_letter_word_finder.json +0 -196
  61. data/_data/wordgames/sv/four_letter_word_finder.json +0 -196
  62. data/_data/wordgames/th/four_letter_word_finder.json +0 -196
  63. data/_data/wordgames/tr/four_letter_word_finder.json +0 -196
  64. data/_data/wordgames/uk/four_letter_word_finder.json +0 -196
  65. data/_data/wordgames/vi/four_letter_word_finder.json +0 -196
  66. data/_data/wordgames/zh/four_letter_word_finder.json +0 -196
  67. data/_data/wordgames/zh-TW/four_letter_word_finder.json +0 -196
  68. data/_includes/section/home2.html +0 -174
  69. data/_layouts/other-lang-scrabble.html +0 -170
  70. data/assets/css/advancedFilter.css +0 -215
  71. data/assets/css/feature.css +0 -58
  72. data/assets/css/footer.css +0 -161
  73. data/assets/css/home.css +0 -538
  74. data/assets/css/news.css +0 -48
  75. data/assets/css/testhome.css +0 -417
  76. data/assets/css/wordScrabble.css +0 -4
@@ -1,3 +1,293 @@
1
+ /***************
2
+ Result page css
3
+ ***************/
4
+
5
+ input:-webkit-autofill,
6
+ input:-webkit-autofill:hover,
7
+ input:-webkit-autofill:focus,
8
+ input:-webkit-autofill:active {
9
+ transition: background-color 5000s ease-in-out 0s;
10
+ }
11
+
12
+ .btn-info:not(:disabled):not(.disabled).active:focus,
13
+ .btn-info:not(:disabled):not(.disabled):active:focus,
14
+ .show>.btn-info.dropdown-toggle:focus {
15
+ box-shadow: unset;
16
+ border-color: rgba(0, 0, 0, 0.1);
17
+ }
18
+
19
+ /* navbar css for result page */
20
+ .result_navbar_section {
21
+ width: 100%;
22
+ padding: .8rem 9% !important;
23
+ position: sticky;
24
+ top: 0;
25
+ z-index: 99999;
26
+ }
27
+
28
+ .result_navbar_section .mobile_bars {
29
+ cursor: pointer;
30
+ position: absolute;
31
+ top: 0px;
32
+ margin: 0 40px
33
+ }
34
+
35
+ .mobile_bars .bars {
36
+ position: relative;
37
+ color: #000;
38
+ font-size: 35px;
39
+ }
40
+
41
+ .result_navbar_section #open_list_bar {
42
+ position: fixed;
43
+ top: 0px;
44
+ left: -100%;
45
+ z-index: 999;
46
+ height: 100vh;
47
+ transition: all .5s ease-in-out;
48
+ list-style: none;
49
+ box-shadow: 0 0 5px grey;
50
+ background: #f8f9fa;
51
+ overflow-y: scroll;
52
+ }
53
+
54
+ #open_list_bar .cat_bar_logo_link {
55
+ padding: 0 15px;
56
+ }
57
+
58
+ #open_list_bar .cat_bar_logo_link .cat_bar_img {
59
+ width: 30px;
60
+ }
61
+
62
+ #open_list_bar .cat_title {
63
+ color: #000;
64
+ font-weight: 900;
65
+ font-size: 14px;
66
+ position: relative;
67
+ left: 10px;
68
+ top: 3px;
69
+ }
70
+
71
+ #open_list_bar .close_bar_btn {
72
+ position: absolute;
73
+ right: 8px;
74
+ font-size: 28px;
75
+ top: 15px;
76
+ cursor: pointer;
77
+ }
78
+
79
+ .list-items-container .list_cat_heading {
80
+ padding: 8px 15px;
81
+ background-color: gray;
82
+ color: #fff;
83
+ font-size: 13px;
84
+ }
85
+
86
+ .list-items-container .list_cat_name {
87
+ padding: 8px 15px;
88
+ font-size: 12px;
89
+ border-bottom: 1px solid rgb(209, 213, 219)
90
+ }
91
+
92
+ .list-items-container .list_cat_name:active {
93
+ color: #000 !important
94
+ }
95
+
96
+ .list-items-container .list_cat_name:hover {
97
+ background-color: #e9ecef;
98
+ }
99
+
100
+ /* h1,h2 for result page , searchbox and length selector css*/
101
+ .pageHeading>.result_heading {
102
+ font-size: 22px;
103
+ font-weight: 600;
104
+ color: #000;
105
+ }
106
+
107
+ .serachSection {
108
+ height: auto;
109
+ }
110
+
111
+ .resultPageTxtBox,
112
+ .resultPageSearchBtn {
113
+ height: 50px !important;
114
+ }
115
+
116
+ .resultPageDropdown2 {
117
+ height: 49px !important;
118
+ padding: 0 !important;
119
+ }
120
+
121
+ .letter-close-button-commonPage {
122
+ position: absolute;
123
+ right: 220px;
124
+ top: 18px;
125
+ font-size: 15px;
126
+ cursor: pointer;
127
+ display: none;
128
+ }
129
+
130
+ .ltr-cls-btn-commonPage {
131
+ display: block;
132
+ }
133
+
134
+ .tab_link_wrapper {
135
+ display: flex;
136
+ width: 100%;
137
+ justify-content: center;
138
+ background: #f8f9fa;
139
+ border-radius: 40px;
140
+ margin: 10px 0px;
141
+ }
142
+
143
+ .tab_link_wrapper .flex-row {
144
+ -ms-flex-direction: row !important;
145
+ flex-direction: row !important;
146
+ display: flex;
147
+ overflow: hidden;
148
+ margin: 0 25px;
149
+ }
150
+
151
+ .tab_link_wrapper #next {
152
+ background: url('/assets/images/next.webp');
153
+ background-size: cover;
154
+ width: 21px;
155
+ height: 21px;
156
+ object-fit: cover;
157
+ padding: 3px;
158
+ border: none;
159
+ position: absolute;
160
+ top: 6px;
161
+ right: 10px;
162
+ }
163
+
164
+ .tab_link_wrapper #prev {
165
+ background: url('/assets/images/prev.webp');
166
+ background-size: cover;
167
+ width: 21px;
168
+ height: 21px;
169
+ object-fit: cover;
170
+ padding: 3px;
171
+ border: none;
172
+ position: absolute;
173
+ top: 6px;
174
+ left: 10px;
175
+ }
176
+
177
+ .active-tab {
178
+ border-bottom: solid 2px black !important;
179
+ }
180
+
181
+ .tab_link_wrapper .tab_link {
182
+ font-size: 15px;
183
+ font-weight: 900;
184
+ margin: 0 5px;
185
+ padding-top: 5px;
186
+ border: none;
187
+ outline: none;
188
+ background-color: inherit;
189
+ }
190
+
191
+ /* advanced filter and sorting css */
192
+ .Advancedbtn .filter_count {
193
+ width: 20px;
194
+ color: white;
195
+ height: 20px;
196
+ text-align: center;
197
+ background-color: #808080;
198
+ padding-top: 2px;
199
+ border-radius: 50%;
200
+ margin-right: 1px;
201
+ position: relative;
202
+ left: 150px;
203
+ }
204
+
205
+ .Advancedbtn .filterButton {
206
+ background: #f8f9fa;
207
+ box-shadow: 0 0 3px #343a4063;
208
+ width: 190px;
209
+ border-radius: 10px;
210
+ border: none;
211
+ outline: none;
212
+ font-weight: 900;
213
+ font-size: 13px;
214
+ padding: 8.5px;
215
+ text-align: left;
216
+ }
217
+
218
+ .Advancedbtn .angle-arrow {
219
+ background: url(../images/angle-arrow-down.svg) no-repeat;
220
+ background-size: contain;
221
+ width: 10px;
222
+ height: 20px;
223
+ font-weight: 900;
224
+ position: absolute;
225
+ top: 20px;
226
+ right: 5px;
227
+ margin: -3px 0;
228
+ }
229
+
230
+ .hide {
231
+ visibility: hidden;
232
+ }
233
+
234
+ .fillterWrapper {
235
+ display: block;
236
+ background: #fff;
237
+ position: absolute;
238
+ z-index: 999;
239
+ top: 100px;
240
+ right: 150px;
241
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
242
+ padding: 30px 15px;
243
+ border-radius: 15px;
244
+ width: 240px;
245
+ }
246
+
247
+ .fillterWrapper .same {
248
+ margin-bottom: 10px;
249
+ }
250
+
251
+ .tick {
252
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAL7SURBVEhL7ZZdSBRRFMf/s+PWSrsUFGoUfi1ooWISFUQPvfRhH1hUL5agvogvaQ/hamBRbz0W2VNBQb2IgqJsGL2VVBK11UNpPkhGKmWK6wfu7kznzFxGx5lxZ+tN/MGdOefOzP3PnTn3noN11jySOLvnWamfniqGJGVovqpOQMVnHI9ENd8l7oTDe/zwSGfp7nPkHaPm0/qXWKD2kl7gERS1A+Uf5vVuZ1YXbg9KCAT2kWgjeaeoBbR+Z/gFupFQWhGNDuLCsKp3W3EW1kQ3HYRHfkhegd7pmkEoiVrMzPY7iXvE2YrfXyJEg3pHShTQsw9oDMcXthfuLfNDlq+RxQ/KWl/qFNIYN7WxbLAX9uIMhWu58P4D9TSNVSEcE06fmqM3WSAZ+DwbcCXnEk5sO7QyaNKpVeumGWtw9ZYE4E2bIGvlkrGFRZtyqxHKq8HQ3HfsfVOJmBIXVzUWEItn4OSnGeFrWGcspxXR0ZXolrQAmkgwlFeL4blRtAzdRVxJiKsGPhqzUNgGVmFJzRSWCVmSqZlvb8ipRCi3BtPxGYSG7qD3F+8hNqtHUncIy8DpH5tg0VvBeoTL7iHbl6XN9HqwDjfy6zCy8BPnI1edRXUsv9QqrEo/hGXAA+7fXIwjWw+gbXczmunTNmZX4uvcCFq/teHVVGQ1UR5zTFgGroMrJz0LbbtatMhlxhd/azNNKuoQXNbN4enEIqq2HyYrX+/QmY5H8XzyNYr8QSwqMVz+chsvJgeSiTI9KI88FraB/V7dV3aRjvepWdYyz3znxkz0T310I8qzrMfR9090dwn74Iqhk94pLDwTI/Njbj6vQOqhsbqEY8J+xky4lPZaTzdZqWYmhhfzMBSligqEt3qXGeflxPmUUxunuNQhUU6L0QHhW3DOPO1/gAr/KLzePioEuMzhYPNq15zhf9pJhUADorPv/q0QWA6XPrLEWYaTB2ctu9KHY6IDCbWLSp+k9Zc74eVwseehXAuJt0GJir1xirOUi7111jrAXwKK6K/PgrsYAAAAAElFTkSuQmCC) no-repeat;
253
+ background-position: 95% 50%;
254
+ }
255
+
256
+ .fillterWrapper input[type='text'] {
257
+ border-radius: 15px;
258
+ width: 100%;
259
+ outline: none;
260
+ }
261
+
262
+ .sort-select,
263
+ #select_dropDown {
264
+ background: #f8f9fa;
265
+ box-shadow: 0 0 2px #343a4063;
266
+ word-wrap: normal;
267
+ width: 190px;
268
+ border-radius: 10px;
269
+ border: none;
270
+ cursor: pointer;
271
+ padding: 10px;
272
+ text-align: left;
273
+ color: #1c1107;
274
+ font-size: 13px;
275
+ font-weight: 600;
276
+ font-stretch: normal;
277
+ font-style: normal;
278
+ outline: none;
279
+ }
280
+
281
+ /* result data css */
282
+ #home_page_search_result {
283
+ padding: 10px;
284
+ font-size: 12px;
285
+ }
286
+
287
+ #home_page_search_result:hover {
288
+ text-decoration: underline !important;
289
+ }
290
+
1
291
  .wordCount {
2
292
  text-indent: 10px;
3
293
  font-size: 18px;
@@ -45,7 +335,7 @@
45
335
  }
46
336
 
47
337
  .wordList>ul li {
48
- border: solid 2px rgba(226, 248, 198, 0.47);
338
+ border: solid 2px rgba(226, 248, 198, .47);
49
339
  padding: 8px 0;
50
340
  background: #f8f9fa;
51
341
  border-radius: 5px;
@@ -62,28 +352,41 @@
62
352
  font-weight: 600;
63
353
  }
64
354
 
355
+ .wordList .anchor__style .highlight {
356
+ color: #ff0000 !important;
357
+ }
358
+
65
359
  .points {
66
360
  color: #73716e;
67
361
  font-weight: 600;
68
362
  }
69
363
 
70
- .letter-close-button-commonPage {
71
- position: absolute;
72
- right: 220px;
73
- top: 18px;
74
- font-size: 15px;
75
- cursor: pointer;
76
- display: none;
364
+ .errorMsg {
365
+ text-align: center;
366
+ font-size: 20px;
367
+ color: red;
368
+ font-weight: 800;
77
369
  }
78
370
 
79
- .ltr-cls-btn-commonPage {
80
- display: block;
81
- }
371
+ /* close */
372
+
82
373
 
83
374
  @media (max-width: 768px) {
84
- .filterSortedIcons {
85
- display: flex;
86
- gap: 8px;
375
+
376
+ /* result page navbar, closebtn, heading css for mobile */
377
+ .result_navbar_section {
378
+ padding: 1.2rem 15px !important;
379
+ }
380
+
381
+ .nav_menu_bar {
382
+ display: none;
383
+ }
384
+
385
+ .result_navbar_section .mobile_bars {
386
+ display: block;
387
+ position: absolute;
388
+ top: 5px;
389
+ margin: 0;
87
390
  }
88
391
 
89
392
  .letter-close-button-commonPage {
@@ -91,13 +394,73 @@
91
394
  font-size: 15px;
92
395
  }
93
396
 
94
- .wordCount {
95
- font-size: 1.2rem;
96
- /* margin-top: 15px; */
397
+ .pageHeading>.result_heading {
398
+ font-size: 1.8rem;
399
+ padding-left: 25px;
400
+ }
401
+
402
+ /* length selector css for mobile */
403
+
404
+ .tab_link_wrapper .flex-row {
405
+ margin: 0 15px;
406
+ }
407
+
408
+ .tab_link_wrapper .tab_link {
409
+ font-size: 12px;
410
+ }
411
+
412
+ .tab_link_wrapper #prev {
413
+ top: 6px;
414
+ left: 5px;
415
+ width: 16px;
416
+ height: 16px;
97
417
  }
98
418
 
419
+ .tab_link_wrapper #next {
420
+ top: 6px;
421
+ right: 5px;
422
+ width: 16px;
423
+ height: 16px;
424
+ }
425
+
426
+ /* advanced filter and sorting css for mobile */
427
+ .angle-arrow {
428
+ display: none;
429
+ }
430
+
431
+ .Advancedbtn .filterButton {
432
+ display: none;
433
+ }
434
+
435
+ .fillterWrapper {
436
+ right: auto;
437
+ position: fixed;
438
+ left: 0px;
439
+ top: 135px;
440
+ width: 100%;
441
+ }
442
+
443
+ .Advancedbtn .filter_count {
444
+ display: none !important;
445
+ }
446
+
447
+ .filterSortedIcons {
448
+ display: flex;
449
+ gap: 8px;
450
+ }
451
+
452
+ .sort-select,
453
+ #select_dropDown {
454
+ display: none;
455
+ }
456
+
457
+ /* result data css for mobile */
99
458
  .pad {
100
459
  padding-bottom: 50px;
101
460
  }
102
461
 
462
+ .wordCount {
463
+ font-size: 1.3rem;
464
+ }
465
+
103
466
  }
@@ -5,18 +5,23 @@
5
5
  align-items: center;
6
6
  }
7
7
 
8
- .errMessage {
8
+ .ws .errMessage {
9
9
  display: none;
10
10
  }
11
11
 
12
- .forms_data {
12
+ .ws .forms_data {
13
13
  border: 1px solid rgba(0, 0, 0, 0.1);
14
14
  padding: 0px 25px;
15
15
  padding-top: 15px;
16
16
  text-align: center;
17
17
  }
18
18
 
19
- .wordleSolver-field {
19
+ .forms_data .wordleSolver-label {
20
+ font-size: 14px;
21
+ font-weight: 600;
22
+ }
23
+
24
+ .forms_data .wordleSolver-field {
20
25
  border-radius: 5px;
21
26
  margin: 0 5px 0 0 !important;
22
27
  font-size: 30px;
@@ -32,7 +37,7 @@
32
37
  outline: none !important;
33
38
  }
34
39
 
35
- .wordleSolver-field:focus {
40
+ .forms_data .wordleSolver-field:focus {
36
41
  box-shadow: unset !important;
37
42
  border-color: #ced4da !important;
38
43
  }
@@ -66,9 +71,19 @@
66
71
  color: #fff;
67
72
  }
68
73
 
69
- .wordleSolver-label {
70
- font-size: 14px;
71
- font-weight: 600;
74
+ .createWordleLink {
75
+ text-decoration: underline;
76
+ text-align: center;
77
+ display: block;
78
+ box-shadow: 0 0 1px rgb(0 0 0 / 10%);
79
+ border: none;
80
+ padding: 10px 15px;
81
+ width: 320px;
82
+ background: #345234;
83
+ border-radius: 20px;
84
+ font-size: 15px;
85
+ margin-bottom: 2rem;
86
+ margin: 5px auto;
72
87
  }
73
88
 
74
89
  .allfiveletterswords {
@@ -149,21 +164,6 @@
149
164
  color: #fff !important
150
165
  }
151
166
 
152
- .createWordleLink {
153
- text-decoration: underline;
154
- text-align: center;
155
- display: block;
156
- box-shadow: 0 0 1px rgb(0 0 0 / 10%);
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;
165
- }
166
-
167
167
  @media (max-width: 768px) {
168
168
 
169
169
  .allfiveletterswords,
@@ -1,4 +1,8 @@
1
1
  /* words in certain position*/
2
+ small {
3
+ font-size: 100% !important;
4
+ }
5
+
2
6
  .wordsInCertainPos {
3
7
  display: flex;
4
8
  flex-direction: column;
@@ -11,10 +15,6 @@
11
15
  z-index: 99;
12
16
  }
13
17
 
14
- small {
15
- font-size: 100% !important;
16
- }
17
-
18
18
  .errMessage {
19
19
  display: none;
20
20
  }
@@ -26,7 +26,7 @@ small {
26
26
  text-align: center;
27
27
  }
28
28
 
29
- .letter_field {
29
+ .forms_data .letter_field {
30
30
  border-radius: 5px;
31
31
  margin: 0 5px 0 0 !important;
32
32
  font-size: 30px;
@@ -42,7 +42,7 @@ small {
42
42
  outline: none !important;
43
43
  }
44
44
 
45
- .letter_field:focus {
45
+ .forms_data .letter_field:focus {
46
46
  box-shadow: unset !important;
47
47
  border-color: #ced4da !important;
48
48
  }
@@ -96,21 +96,6 @@ small {
96
96
  margin: 10px auto;
97
97
  }
98
98
 
99
- .related_post_heading {
100
- width: 100%;
101
- font-size: 46px;
102
- text-align: center;
103
- font-weight: 800;
104
- font-stretch: normal;
105
- font-style: normal;
106
- line-height: 1.24;
107
- letter-spacing: normal;
108
- color: #11304e;
109
- margin-bottom: 45px;
110
- padding-top: 75px;
111
- display: inline-block;
112
- }
113
-
114
99
  #certain_pos_error_msg {
115
100
  margin: 10px auto;
116
101
  width: 75%;
@@ -144,14 +129,6 @@ small {
144
129
  font-weight: 600;
145
130
  }
146
131
 
147
- .flex-row {
148
- -ms-flex-direction: row !important;
149
- flex-direction: row !important;
150
- display: flex;
151
- overflow: hidden;
152
- margin: 0 35px;
153
- }
154
-
155
132
  .tab_link_wrapper {
156
133
  display: flex;
157
134
  width: 100%;
@@ -163,6 +140,14 @@ small {
163
140
  /* white-space: wrap; */
164
141
  }
165
142
 
143
+ .flex-row {
144
+ -ms-flex-direction: row !important;
145
+ flex-direction: row !important;
146
+ display: flex;
147
+ overflow: hidden;
148
+ margin: 0 35px;
149
+ }
150
+
166
151
  .tab_link {
167
152
  font-size: 15px;
168
153
  font-weight: 900;
@@ -11,7 +11,6 @@ const refresh = () => {
11
11
  location.reload()
12
12
  }
13
13
 
14
-
15
14
  let adsBtn = document.querySelector(".allow-ads-btn")
16
15
  adsBtn.addEventListener("click", () => {
17
16
  extensions.classList.add("show")
@@ -30,10 +30,6 @@ let tab_container = document.querySelector('.tab_container')
30
30
  var sortValue
31
31
  var sortBool = false
32
32
 
33
- $(function () {
34
- $('[data-toggle="tooltip"]').tooltip()
35
- })
36
-
37
33
  let txtBox = document.querySelector('.txtBox')
38
34
  txtBox.focus()
39
35
  txtBox.value = serachValue
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.8.5
4
+ version: 1.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - manpreet-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-13 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -77,9 +77,6 @@ files:
77
77
  - _data/repeatLetter/en/repeat-letters.json
78
78
  - _data/theme/colors.json
79
79
  - _data/wordfinderstrategy/en/how-to-use-5-letter-word-finder-to-score-high-in-scrabble-words-with-friends.json
80
- - _data/wordgames/ar/four_letter_word_finder.json
81
- - _data/wordgames/da/four_letter_word_finder.json
82
- - _data/wordgames/de/four_letter_word_finder.json
83
80
  - _data/wordgames/en/4_letter_words_with_these_letters_and_a_blank.json
84
81
  - _data/wordgames/en/anagram_word_finder.json
85
82
  - _data/wordgames/en/eight_letter_word_finder.json
@@ -111,24 +108,7 @@ files:
111
108
  - _data/wordgames/en/word-game-play.json
112
109
  - _data/wordgames/en/word-meaning.json
113
110
  - _data/wordgames/en/words_with_friends_word_finder.json
114
- - _data/wordgames/es/four_letter_word_finder.json
115
- - _data/wordgames/fr/four_letter_word_finder.json
116
111
  - _data/wordgames/hi/four_letter_word_finder.json
117
- - _data/wordgames/id/four_letter_word_finder.json
118
- - _data/wordgames/it/four_letter_word_finder.json
119
- - _data/wordgames/ja/four_letter_word_finder.json
120
- - _data/wordgames/ko/four_letter_word_finder.json
121
- - _data/wordgames/nl/four_letter_word_finder.json
122
- - _data/wordgames/pl/four_letter_word_finder.json
123
- - _data/wordgames/pt/four_letter_word_finder.json
124
- - _data/wordgames/ru/four_letter_word_finder.json
125
- - _data/wordgames/sv/four_letter_word_finder.json
126
- - _data/wordgames/th/four_letter_word_finder.json
127
- - _data/wordgames/tr/four_letter_word_finder.json
128
- - _data/wordgames/uk/four_letter_word_finder.json
129
- - _data/wordgames/vi/four_letter_word_finder.json
130
- - _data/wordgames/zh-TW/four_letter_word_finder.json
131
- - _data/wordgames/zh/four_letter_word_finder.json
132
112
  - _data/wordleSolver/en/data.json
133
113
  - _data/wordleSolver/en/resultData.json
134
114
  - _data/xyzPagesData/en/unscramble-letters-jumble.json
@@ -168,10 +148,9 @@ files:
168
148
  - _includes/section/blog.html
169
149
  - _includes/section/commonPage.html
170
150
  - _includes/section/count.html
151
+ - _includes/section/faq.html
171
152
  - _includes/section/feature.html
172
153
  - _includes/section/home.html
173
- - _includes/section/home2.html
174
- - _includes/section/news.html
175
154
  - _includes/section/recent_posts.html
176
155
  - _includes/section/related_categories_post.html
177
156
  - _includes/section/wordGroup.html
@@ -191,7 +170,6 @@ files:
191
170
  - _layouts/categories.html
192
171
  - _layouts/default.html
193
172
  - _layouts/disclaimer.html
194
- - _layouts/other-lang-scrabble.html
195
173
  - _layouts/page.html
196
174
  - _layouts/page2.html
197
175
  - _layouts/post.html
@@ -201,20 +179,13 @@ files:
201
179
  - _layouts/wordMeaning.html
202
180
  - _layouts/xyzpages.html
203
181
  - assets/css/adBlocker.css
204
- - assets/css/advancedFilter.css
205
182
  - assets/css/blog.css
206
183
  - assets/css/bootstrap.min.css
207
184
  - assets/css/content.css
208
- - assets/css/feature.css
209
- - assets/css/footer.css
210
185
  - assets/css/game.css
211
- - assets/css/home.css
212
186
  - assets/css/multiple-word-anagram-solver.css
213
- - assets/css/news.css
214
187
  - assets/css/style.css
215
- - assets/css/testhome.css
216
188
  - assets/css/wordGroup.css
217
- - assets/css/wordScrabble.css
218
189
  - assets/css/wordleSolver.css
219
190
  - assets/css/wordsInCertainPosition.css
220
191
  - assets/images/404.svg
@@ -287,6 +258,7 @@ files:
287
258
  - assets/images/word-games-logo.webp
288
259
  - assets/images/wordle.png
289
260
  - assets/images/wordswithletters-logo.png
261
+ - assets/images/wordswithletters-logo.webp
290
262
  - assets/images/yellow_bg.png
291
263
  - assets/js/TopScroll.js
292
264
  - assets/js/X-letter-test.js