word-games-theme 1.1.6 → 1.1.9

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/ar/four_letter_word_finder.json +196 -0
  3. data/_data/wordgames/da/four_letter_word_finder.json +196 -0
  4. data/_data/wordgames/de/four_letter_word_finder.json +196 -0
  5. data/_data/wordgames/en/four_letter_word_finder.json +12 -10
  6. data/_data/wordgames/es/four_letter_word_finder.json +196 -0
  7. data/_data/wordgames/fr/four_letter_word_finder.json +196 -0
  8. data/_data/wordgames/hi/four_letter_word_finder.json +196 -0
  9. data/_data/wordgames/id/four_letter_word_finder.json +196 -0
  10. data/_data/wordgames/it/four_letter_word_finder.json +196 -0
  11. data/_data/wordgames/ja/four_letter_word_finder.json +196 -0
  12. data/_data/wordgames/ko/four_letter_word_finder.json +196 -0
  13. data/_data/wordgames/nl/four_letter_word_finder.json +196 -0
  14. data/_data/wordgames/pl/four_letter_word_finder.json +196 -0
  15. data/_data/wordgames/pt/four_letter_word_finder.json +196 -0
  16. data/_data/wordgames/ru/four_letter_word_finder.json +196 -0
  17. data/_data/wordgames/sv/four_letter_word_finder.json +196 -0
  18. data/_data/wordgames/th/four_letter_word_finder.json +196 -0
  19. data/_data/wordgames/tr/four_letter_word_finder.json +196 -0
  20. data/_data/wordgames/uk/four_letter_word_finder.json +196 -0
  21. data/_data/wordgames/vi/four_letter_word_finder.json +196 -0
  22. data/_data/wordgames/zh/four_letter_word_finder.json +196 -0
  23. data/_data/wordgames/zh-TW/four_letter_word_finder.json +196 -0
  24. data/_includes/footer/index.html +205 -1
  25. data/_includes/footer/unqFooter.html +211 -2
  26. data/_includes/google-analytics.html +31 -1
  27. data/_includes/head/index.html +3 -0
  28. data/_includes/header/index.html +1 -1
  29. data/_includes/howto.html +2 -2
  30. data/_includes/languages/languages.html +61 -0
  31. data/_includes/section/commonPage.html +13 -5
  32. data/_includes/section/feature.html +2 -2
  33. data/_includes/section/home.html +2 -2
  34. data/_includes/section/home2.html +2 -2
  35. data/_includes/section/news.html +2 -2
  36. data/_includes/section/recent_posts.html +1 -1
  37. data/_layouts/default.html +1 -3
  38. data/_layouts/page.html +0 -1
  39. data/_layouts/tools.html +2 -2
  40. data/assets/css/advancedFilter.css +16 -5
  41. data/assets/css/footer.css +74 -0
  42. data/assets/css/home.css +3 -0
  43. data/assets/css/style.css +2 -2
  44. data/assets/css/wordsInCertainPosition.css +1 -1
  45. data/assets/js/X-letter-test.js +4 -2
  46. data/assets/js/wordScrabble-test.js +3 -0
  47. data/assets/js/words-starting-with.js +2 -0
  48. metadata +24 -2
@@ -325,3 +325,77 @@ hr {
325
325
  font-size: 1.4rem;
326
326
  }
327
327
  }
328
+
329
+
330
+
331
+ html {
332
+ line-height: 1.15;
333
+ -webkit-text-size-adjust: 100%;
334
+ }
335
+ .drop-down-btn {
336
+ cursor: pointer;
337
+ outline: 0px;
338
+ border: 0px;
339
+ width: auto;
340
+ overflow: visible;
341
+ display: flex;
342
+ -webkit-box-align: center;
343
+ align-items: center;
344
+ background-color: transparent;
345
+ transition: background-color 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
346
+ font-weight: 400;
347
+ font-size: 16px;
348
+ line-height: 24px;
349
+ color: rgb(26, 26, 26);
350
+ }
351
+ .drop-down-btn svg {
352
+ height: 22px;
353
+ }
354
+ .language-drop-down-menu {
355
+ display: flex;
356
+ justify-content: space-between;
357
+ margin: 0;
358
+ padding: 0;
359
+ flex-wrap: wrap;
360
+ }
361
+ .language-drop-down-item {
362
+ width: 50%;
363
+ padding: 10px 12px 1px 1px;
364
+ text-align: center;
365
+ font-size: 15px;
366
+ margin-bottom: 0;
367
+ list-style: none;
368
+ }
369
+ .language-drop-down-item a {
370
+ display: flex;
371
+ width: 100%;
372
+ align-items: center;
373
+ padding: 9px 9px;
374
+ color: #11304e;
375
+ border-bottom: 1px solid rgb(224, 224, 224);
376
+ }
377
+ .language-drop-down-item a:hover {
378
+ background: rgb(238, 238, 238);
379
+ border-radius: 3px;
380
+ }
381
+ .language-drop-down-item a i {
382
+ margin: 0;
383
+ }
384
+ .active-lang {
385
+ background: rgb(238, 238, 238);
386
+ border-radius: 3px;
387
+ }
388
+ @media (max-width: 768px) {
389
+ .language-drop-down-item {
390
+ width: 100% !important;
391
+ }
392
+ }
393
+ .modal-header{
394
+ padding: 1.8rem;
395
+ }
396
+ .modal-title{
397
+ font-size: 2.28rem;
398
+ }
399
+ .close{
400
+ font-size: 3.8rem;
401
+ }
data/assets/css/home.css CHANGED
@@ -373,6 +373,9 @@ padding:0 15px;
373
373
  font-size: 12px;
374
374
  border-bottom: 1px solid rgb(209,213,219)
375
375
  }
376
+ .list_cat_name:active{
377
+ color: #000 !important
378
+ }
376
379
  .list_cat_name:hover{
377
380
  background-color: #e9ecef;
378
381
  }
data/assets/css/style.css CHANGED
@@ -333,9 +333,9 @@ display: none;
333
333
  display: block;
334
334
  margin-top: 10px;
335
335
  }
336
- .heading {
336
+ /* .heading {
337
337
  font-size: 40px;
338
- }
338
+ } */
339
339
  /* .dropdown:hover .dropdown-menu {
340
340
  display: block;
341
341
  } */
@@ -19,7 +19,7 @@ small{
19
19
  }
20
20
  .forms_data {
21
21
  border: 1px solid rgba(0, 0, 0, 0.1);
22
- padding: 0px 25px;
22
+ padding: 0px 15px;
23
23
  padding-top: 15px;
24
24
  text-align: center;
25
25
  }
@@ -136,14 +136,14 @@ getData(serachValue.toLowerCase())
136
136
 
137
137
  let quesMark = ''
138
138
  quesMark = "?"
139
- function logSubmit(event) {
140
139
 
140
+
141
+ function logSubmit(event) {
141
142
  if (ablank) {
142
143
  if (!txtBox.value.includes("?")) {
143
144
  txtBox.value = txtBox.value + quesMark
144
145
  }
145
146
  }
146
-
147
147
  let selectedDictionary = document.querySelector('.select_dropDown2').value
148
148
  event.preventDefault();
149
149
  if (history.pushState) {
@@ -164,6 +164,8 @@ function logSubmit(event) {
164
164
  includeValue = params.get('include')
165
165
  lengthValue = params.get('length')
166
166
  dictonary = params.get('dictionary')
167
+
168
+ ga('send', 'pageview', window.location.pathname + location.search)
167
169
  }
168
170
  getData(txtBox.value.toLowerCase())
169
171
  addFilterCount()
@@ -171,6 +171,9 @@ if (lengthValue === '1') {
171
171
  includeValue = params.get('include')
172
172
  lengthValue = params.get('length')
173
173
  dictonary = params.get('dictionary')
174
+
175
+ // console.log('/result' + location.search)
176
+ ga('send', 'pageview', window.location.pathname + location.search)
174
177
  }
175
178
  getData(txtBox.value.toLowerCase())
176
179
  addFilterCount()
@@ -120,6 +120,8 @@ if (lengthValue === '1') {
120
120
  includeValue = params.get('include')
121
121
  lengthValue = params.get('length')
122
122
  dictonary = params.get('dictionary')
123
+
124
+ ga('send', 'pageview', window.location.pathname + location.search)
123
125
  }
124
126
  getData(txtBox.value.toLowerCase())
125
127
  addFilterCount()
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.1.6
4
+ version: 1.1.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-03-28 00:00:00.000000000 Z
11
+ date: 2022-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -76,6 +76,9 @@ files:
76
76
  - _data/header/en/data.json
77
77
  - _data/theme/colors.json
78
78
  - _data/wordfinderstrategy/en/how-to-use-5-letter-word-finder-to-score-high-in-scrabble-words-with-friends.json
79
+ - _data/wordgames/ar/four_letter_word_finder.json
80
+ - _data/wordgames/da/four_letter_word_finder.json
81
+ - _data/wordgames/de/four_letter_word_finder.json
79
82
  - _data/wordgames/en/4_letter_words_with_these_letters_and_a_blank.json
80
83
  - _data/wordgames/en/anagram_word_finder.json
81
84
  - _data/wordgames/en/eight_letter_word_finder.json
@@ -104,6 +107,24 @@ files:
104
107
  - _data/wordgames/en/unscramble_words_and_jumble_solver.json
105
108
  - _data/wordgames/en/word-meaning.json
106
109
  - _data/wordgames/en/words_with_friends_word_finder.json
110
+ - _data/wordgames/es/four_letter_word_finder.json
111
+ - _data/wordgames/fr/four_letter_word_finder.json
112
+ - _data/wordgames/hi/four_letter_word_finder.json
113
+ - _data/wordgames/id/four_letter_word_finder.json
114
+ - _data/wordgames/it/four_letter_word_finder.json
115
+ - _data/wordgames/ja/four_letter_word_finder.json
116
+ - _data/wordgames/ko/four_letter_word_finder.json
117
+ - _data/wordgames/nl/four_letter_word_finder.json
118
+ - _data/wordgames/pl/four_letter_word_finder.json
119
+ - _data/wordgames/pt/four_letter_word_finder.json
120
+ - _data/wordgames/ru/four_letter_word_finder.json
121
+ - _data/wordgames/sv/four_letter_word_finder.json
122
+ - _data/wordgames/th/four_letter_word_finder.json
123
+ - _data/wordgames/tr/four_letter_word_finder.json
124
+ - _data/wordgames/uk/four_letter_word_finder.json
125
+ - _data/wordgames/vi/four_letter_word_finder.json
126
+ - _data/wordgames/zh-TW/four_letter_word_finder.json
127
+ - _data/wordgames/zh/four_letter_word_finder.json
107
128
  - _data/wordleSolver/en/data.json
108
129
  - _data/xyzPagesData/en/unscramble-letters-jumble.json
109
130
  - _data/xyzPagesData/en/words-with-letters-cheat.json
@@ -129,6 +150,7 @@ files:
129
150
  - _includes/header/blogHeader.html
130
151
  - _includes/header/index.html
131
152
  - _includes/howto.html
153
+ - _includes/languages/languages.html
132
154
  - _includes/paginationBlogPage.html
133
155
  - _includes/paginationPostPage.html
134
156
  - _includes/postauthorbio.html