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/game.css
CHANGED
@@ -1,35 +1,39 @@
|
|
1
1
|
/* create wordle screen css */
|
2
|
-
.create-wordle{
|
3
|
-
box-shadow: 0 5px 15px rgb(0 0 0 / 20%)
|
2
|
+
.create-wordle {
|
3
|
+
box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
|
4
4
|
margin-bottom: 150px;
|
5
|
-
padding:8rem 0;
|
5
|
+
padding: 8rem 0;
|
6
6
|
}
|
7
|
-
|
7
|
+
|
8
|
+
.word-generator-link {
|
8
9
|
font-size: 18px;
|
9
10
|
background: #f8f9fa;
|
10
11
|
padding: 5px 15px;
|
11
|
-
color
|
12
|
-
box-shadow: 0 0 1px rgba(0,0,0,0.1);
|
12
|
+
color: #404040;
|
13
|
+
box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
|
13
14
|
border-radius: 4px;
|
14
15
|
margin: 0 15px;
|
15
|
-
border:1px solid rgba(0,0,0
|
16
|
+
border: 1px solid rgba(0, 0, 0, .1)
|
16
17
|
}
|
17
|
-
|
18
|
+
|
19
|
+
.create-wordle .custom-word {
|
18
20
|
font-weight: 600;
|
19
21
|
text-transform: uppercase;
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
}
|
32
|
-
|
22
|
+
width: 60%;
|
23
|
+
height: 50px;
|
24
|
+
margin: 18px auto;
|
25
|
+
text-align: center;
|
26
|
+
outline: none;
|
27
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
28
|
+
background: rgba(255, 255, 255, 0.2);
|
29
|
+
border-radius: 40px;
|
30
|
+
color: #000;
|
31
|
+
font-size: 12px;
|
32
|
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
33
|
+
}
|
34
|
+
|
35
|
+
.create-wordle .generate-word-game-link,
|
36
|
+
.copy-btn {
|
33
37
|
background-color: #6aaa64;
|
34
38
|
border: #6aaa64;
|
35
39
|
color: #fff;
|
@@ -40,7 +44,7 @@
|
|
40
44
|
font-weight: 600;
|
41
45
|
}
|
42
46
|
|
43
|
-
.game-play-btn{
|
47
|
+
.game-play-btn {
|
44
48
|
display: block;
|
45
49
|
margin: 5px auto;
|
46
50
|
background-color: #6aaa64;
|
@@ -53,44 +57,48 @@
|
|
53
57
|
font-weight: 600;
|
54
58
|
}
|
55
59
|
|
56
|
-
.game-play-btn:hover{
|
57
|
-
color
|
60
|
+
.game-play-btn:hover {
|
61
|
+
color: #fff !important
|
58
62
|
}
|
59
63
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
color:#fff !important
|
64
|
+
.create-wordle .generate-word-game-link:hover,
|
65
|
+
.copy-btn:hover {
|
66
|
+
color: #fff !important
|
64
67
|
}
|
65
|
-
|
68
|
+
|
69
|
+
::placeholder {
|
66
70
|
font-weight: 400;
|
67
|
-
text-transform: capitalize
|
71
|
+
text-transform: capitalize;
|
68
72
|
}
|
73
|
+
|
69
74
|
/* modal style */
|
70
|
-
.close{
|
75
|
+
.close {
|
71
76
|
background-color: transparent;
|
72
|
-
border:none;
|
77
|
+
border: none;
|
73
78
|
outline: none;
|
74
79
|
}
|
75
|
-
|
80
|
+
|
81
|
+
.times-icon {
|
76
82
|
font-size: 25px;
|
77
83
|
}
|
78
|
-
|
84
|
+
|
85
|
+
.modal-header .close {
|
79
86
|
margin: -1rem 0rem -1rem auto !important
|
80
87
|
}
|
88
|
+
|
81
89
|
.modal-dialog {
|
82
|
-
max-width: 450px !important;
|
83
|
-
margin: 0rem auto !important;
|
90
|
+
max-width: 450px !important;
|
91
|
+
margin: 0rem auto !important;
|
84
92
|
top: 60px !important;
|
85
93
|
}
|
86
94
|
|
87
|
-
.game{
|
95
|
+
.game {
|
88
96
|
width: 100%;
|
89
97
|
/* height: 100vh; */
|
90
98
|
}
|
91
99
|
|
92
100
|
/* wordle game play css */
|
93
|
-
.game .game-container .game-board{
|
101
|
+
.game .game-container .game-board {
|
94
102
|
width: 350px;
|
95
103
|
height: auto;
|
96
104
|
margin: 0 auto;
|
@@ -99,15 +107,16 @@
|
|
99
107
|
flex-wrap: wrap;
|
100
108
|
justify-content: center;
|
101
109
|
}
|
102
|
-
|
103
|
-
|
110
|
+
|
111
|
+
.game .game-container .game-board .tile {
|
112
|
+
|
104
113
|
display: flex;
|
105
114
|
justify-content: center;
|
106
115
|
align-items: center;
|
107
116
|
width: 55px;
|
108
117
|
height: 55px;
|
109
118
|
text-align: center;
|
110
|
-
border:2px solid #dee1e9;
|
119
|
+
border: 2px solid #dee1e9;
|
111
120
|
border-radius: 5px;
|
112
121
|
color: #363535;
|
113
122
|
font-size: 28px;
|
@@ -119,23 +128,27 @@
|
|
119
128
|
}
|
120
129
|
|
121
130
|
|
122
|
-
.game .game-container .game-board .tile:focus-visible{
|
131
|
+
.game .game-container .game-board .tile:focus-visible {
|
123
132
|
outline: none !important;
|
124
133
|
}
|
125
|
-
|
134
|
+
|
135
|
+
.popAni {
|
126
136
|
animation: popAni 495ms ease-in-out;
|
127
137
|
}
|
128
|
-
|
138
|
+
|
139
|
+
.game .game-container .game-keyboard {
|
129
140
|
display: flex;
|
130
141
|
flex-direction: column;
|
131
142
|
width: 50%;
|
132
|
-
margin:0rem auto
|
143
|
+
margin: 0rem auto
|
133
144
|
}
|
134
|
-
|
145
|
+
|
146
|
+
.game .game-container .game-keyboard-row {
|
135
147
|
display: flex;
|
136
148
|
flex-direction: row;
|
137
149
|
justify-content: center;
|
138
150
|
}
|
151
|
+
|
139
152
|
.game .game-container .key-btn {
|
140
153
|
align-items: center;
|
141
154
|
background-color: #edeff1;
|
@@ -151,10 +164,10 @@
|
|
151
164
|
min-height: 40px;
|
152
165
|
padding: 14px;
|
153
166
|
text-decoration: inherit;
|
154
|
-
|
167
|
+
|
155
168
|
}
|
156
169
|
|
157
|
-
.alert-container{
|
170
|
+
.alert-container {
|
158
171
|
font-size: 15px;
|
159
172
|
box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
|
160
173
|
position: fixed;
|
@@ -166,18 +179,21 @@
|
|
166
179
|
text-align: center;
|
167
180
|
z-index: 9999999;
|
168
181
|
background: #000;
|
169
|
-
color
|
182
|
+
color: #fff;
|
170
183
|
border-radius: 4px;
|
171
184
|
}
|
172
|
-
|
185
|
+
|
186
|
+
.active-alert {
|
173
187
|
visibility: visible;
|
174
188
|
}
|
189
|
+
|
175
190
|
.tick {
|
176
191
|
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;
|
177
192
|
height: 35px;
|
178
193
|
margin: 10px 0;
|
179
194
|
background-position: center;
|
180
195
|
}
|
196
|
+
|
181
197
|
.close-icon {
|
182
198
|
background: url(/assets/images/close.png) no-repeat;
|
183
199
|
height: 20px;
|
@@ -185,34 +201,42 @@
|
|
185
201
|
background-position: center;
|
186
202
|
background-size: contain;
|
187
203
|
}
|
204
|
+
|
188
205
|
[data-state="active"] {
|
189
206
|
border-color: hsl(200, 1%, 34%);
|
190
207
|
}
|
208
|
+
|
191
209
|
[data-state="correct-spot"] {
|
192
|
-
color
|
193
|
-
background-color
|
194
|
-
border: none
|
210
|
+
color: #fff !important;
|
211
|
+
background-color: #6aaa64 !important;
|
212
|
+
border: none !important;
|
195
213
|
}
|
214
|
+
|
196
215
|
[data-state="wrong-spot"] {
|
197
|
-
color
|
216
|
+
color: #fff !important;
|
198
217
|
background-color: #c9b458 !important;
|
199
218
|
border: none !important;
|
200
219
|
}
|
220
|
+
|
201
221
|
[data-state="wrong-word"] {
|
202
|
-
color:white !important;
|
203
|
-
background-color: #787c7e!important;
|
222
|
+
color: white !important;
|
223
|
+
background-color: #787c7e !important;
|
204
224
|
border: none !important;
|
205
225
|
}
|
226
|
+
|
206
227
|
.shake {
|
207
228
|
animation: shake 240ms ease-in-out;
|
208
229
|
}
|
230
|
+
|
209
231
|
.dance {
|
210
232
|
animation: dance 495ms ease-in-out;
|
211
233
|
}
|
234
|
+
|
212
235
|
.flip {
|
213
236
|
transform: rotateX(90deg);
|
214
237
|
}
|
215
|
-
|
238
|
+
|
239
|
+
.wordle-game-restart {
|
216
240
|
width: 120px;
|
217
241
|
margin: 0 auto;
|
218
242
|
background: #57ac57;
|
@@ -225,8 +249,9 @@
|
|
225
249
|
margin-bottom: 1rem;
|
226
250
|
text-align: center;
|
227
251
|
}
|
228
|
-
|
229
|
-
|
252
|
+
|
253
|
+
.wordle-game-restart:hover {
|
254
|
+
color: #fff !important;
|
230
255
|
text-decoration: none !important;
|
231
256
|
}
|
232
257
|
|
@@ -287,7 +312,7 @@
|
|
287
312
|
transform: scale(.8);
|
288
313
|
opacity: 0;
|
289
314
|
}
|
290
|
-
|
315
|
+
|
291
316
|
40% {
|
292
317
|
transform: scale(1.1);
|
293
318
|
opacity: 1;
|
@@ -306,19 +331,20 @@
|
|
306
331
|
}
|
307
332
|
|
308
333
|
|
309
|
-
#confetti-canvas{
|
334
|
+
#confetti-canvas {
|
310
335
|
width: 100%;
|
311
336
|
position: fixed;
|
312
|
-
top:0
|
337
|
+
top: 0
|
313
338
|
}
|
314
339
|
|
315
|
-
.gameResult{
|
340
|
+
.gameResult {
|
316
341
|
text-align: center;
|
317
342
|
width: 100%;
|
318
343
|
font-size: 18px;
|
319
344
|
font-weight: 900;
|
320
345
|
}
|
321
|
-
|
346
|
+
|
347
|
+
#result-guess-word {
|
322
348
|
background: #f8f9fa;
|
323
349
|
width: 100px;
|
324
350
|
text-align: center;
|
@@ -331,7 +357,8 @@
|
|
331
357
|
text-transform: uppercase;
|
332
358
|
font-weight: 600;
|
333
359
|
}
|
334
|
-
|
360
|
+
|
361
|
+
.wordle-game-button {
|
335
362
|
padding: 0px 15px;
|
336
363
|
color: #626568;
|
337
364
|
font-size: 14px;
|
@@ -348,26 +375,30 @@
|
|
348
375
|
align-items: center;
|
349
376
|
align-content: center;
|
350
377
|
margin: 6px 0px;
|
351
|
-
border: 1px solid rgba(0,0,0,0.1);
|
378
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
352
379
|
}
|
353
|
-
|
380
|
+
|
381
|
+
.wordle-game-button:hover {
|
354
382
|
text-decoration: none !important;
|
355
383
|
}
|
356
|
-
|
357
|
-
|
384
|
+
|
385
|
+
.social-sharing-icons {
|
386
|
+
display: flex;
|
358
387
|
justify-content: center;
|
359
388
|
}
|
360
|
-
|
389
|
+
|
390
|
+
.share-icon {
|
361
391
|
width: 50px;
|
362
392
|
height: 50px;
|
363
393
|
}
|
364
394
|
|
365
395
|
|
366
396
|
#wordle-examples {
|
367
|
-
border-top: 1px solid rgba(0,0,0,0.1);
|
368
|
-
border-bottom: 1px solid rgba(0,0,0,0.1);
|
397
|
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
398
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
369
399
|
padding: 1rem 0rem;
|
370
|
-
|
400
|
+
}
|
401
|
+
|
371
402
|
.wordle-game-spot {
|
372
403
|
padding: 20px;
|
373
404
|
border: 2px solid #3a3a3c;
|
@@ -378,47 +409,62 @@
|
|
378
409
|
text-align: center;
|
379
410
|
font-size: 25px;
|
380
411
|
}
|
412
|
+
|
381
413
|
.wordle-game-absent {
|
382
414
|
background-color: #3a3a3c !important;
|
383
415
|
border-color: #3a3a3c !important;
|
384
416
|
color: #fff;
|
385
|
-
|
417
|
+
}
|
418
|
+
|
386
419
|
.wordle-game-present {
|
387
420
|
background-color: #b59f3b !important;
|
388
421
|
border-color: #b59f3b !important;
|
389
422
|
color: white;
|
390
|
-
|
423
|
+
}
|
424
|
+
|
391
425
|
.wordle-game-correct {
|
392
426
|
background-color: #538d4e !important;
|
393
427
|
border-color: #538d4e !important;
|
394
428
|
color: white;
|
395
|
-
|
429
|
+
}
|
430
|
+
|
396
431
|
.wordle-game-spot:before {
|
397
432
|
content: "\a0";
|
398
|
-
|
399
|
-
|
433
|
+
}
|
434
|
+
|
435
|
+
.wordle-game-spot[title]:before {
|
436
|
+
content: attr(title);
|
437
|
+
}
|
438
|
+
|
400
439
|
.wordle-game-row-active .wordle-game-spot {
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
440
|
+
border-color: #666;
|
441
|
+
}
|
442
|
+
|
443
|
+
@media (max-width: 768px) {
|
444
|
+
.tile {
|
405
445
|
caret-color: transparent;
|
406
446
|
cursor: default;
|
407
|
-
}
|
408
|
-
#create-wordle-form{
|
409
|
-
padding:0 10px;
|
410
447
|
}
|
411
|
-
|
448
|
+
|
449
|
+
#create-wordle-form {
|
450
|
+
padding: 0 10px;
|
451
|
+
}
|
452
|
+
|
453
|
+
.create-wordle .custom-word {
|
412
454
|
width: 100%;
|
413
455
|
}
|
414
|
-
|
415
|
-
|
456
|
+
|
457
|
+
#exampleModal,
|
458
|
+
.wordletip {
|
459
|
+
padding: 15px;
|
416
460
|
}
|
417
|
-
|
418
|
-
|
419
|
-
|
461
|
+
|
462
|
+
.game .game-container .key-btn {
|
463
|
+
margin: 2px;
|
464
|
+
padding: 15px 10px;
|
420
465
|
}
|
421
|
-
|
466
|
+
|
467
|
+
.game .game-container .game-keyboard {
|
422
468
|
margin-top: 3rem !important;
|
423
469
|
}
|
424
470
|
}
|
@@ -433,4 +479,4 @@
|
|
433
479
|
transform: scale(1.03);
|
434
480
|
}
|
435
481
|
*/
|
436
|
-
/* } */
|
482
|
+
/* } */
|