word-games-theme 0.7.4 → 0.7.5
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 +6 -6
- data/_data/header/en/data.json +1 -0
- data/_data/wordgames/en/root.json +1 -1
- data/_includes/footer/index.html +71 -2
- data/_includes/header/blogHeader.html +3 -2
- data/_includes/header/index.html +2 -2
- data/_includes/section/commonPage.html +1 -1
- data/_includes/section/home.html +3 -8
- data/_includes/section/home2.html +3 -8
- data/_includes/wordle-solver/wordle-solver.html +1 -1
- data/_includes/xyzpages/xyz.html +1 -1
- data/_layouts/default.html +15 -2
- data/_layouts/xyzpages.html +2 -7
- data/assets/css/footer.css +78 -5
- data/assets/css/home.css +7 -46
- data/assets/css/style.css +3 -0
- data/assets/js/X-letter.js +22 -21
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43ea26520999debbc8749f9482feeacbfe6ba95751b7cda4eb6887e0a2a86611
|
4
|
+
data.tar.gz: 1a63b921c091486086c590256b7370851f7715d6835b81c0824741b15094b767
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1ee8cf5a2407a718d3bf1b5eb95330630ad7abf3fc274122a64925299581800423f6f42d7fe6160d90725f25493c93a40a6d394c220afbce088e597a511b55b
|
7
|
+
data.tar.gz: 4fbf301d7a47258d5bf03f8fbf2996c9e797d6a26fdfb014c64537a0342bdb4dac8c95db894adb76f8ddd69b15e45aae1ab759f28ea742a8fd6984363f2d55b0
|
data/_data/footer/en/data.json
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
"producttitle": "Tools",
|
7
7
|
"company": [
|
8
8
|
{
|
9
|
-
"name": "Terms
|
9
|
+
"name": "Terms of use",
|
10
10
|
"url": "/terms-and-conditions"
|
11
11
|
},
|
12
12
|
{
|
@@ -34,26 +34,26 @@
|
|
34
34
|
],
|
35
35
|
"social": [
|
36
36
|
{
|
37
|
-
"
|
37
|
+
"icon": "bi bi-facebook",
|
38
38
|
"url": "/",
|
39
39
|
"title": "facebook"
|
40
40
|
},
|
41
41
|
{
|
42
|
-
"
|
42
|
+
"icon": "bi bi-instagram",
|
43
43
|
"url": "/",
|
44
44
|
"title": "instagram"
|
45
45
|
},
|
46
46
|
{
|
47
|
-
"
|
47
|
+
"icon": "bi bi-linkedin",
|
48
48
|
"url": "/",
|
49
49
|
"title": "linkden"
|
50
50
|
},
|
51
51
|
{
|
52
|
-
"
|
52
|
+
"icon": "bi bi-twitter",
|
53
53
|
"url": "/",
|
54
54
|
"title": "twitter"
|
55
55
|
}
|
56
56
|
],
|
57
|
-
"messege": "Copyright © 2020 All rights reserved to",
|
57
|
+
"messege": "Copyright © 2020 All rights reserved to wordgames",
|
58
58
|
"legal": []
|
59
59
|
}
|
data/_data/header/en/data.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"title": "Word finders to help you find word with given letters.",
|
3
3
|
"h1": "Word Games Scrabble World",
|
4
|
-
"h2": "",
|
4
|
+
"h2": "Enters letters in gray, yellow, and green to see potential words",
|
5
5
|
"meta": "Use wordfinders to win any word games such as scrabble, word with friends etc.",
|
6
6
|
"featureNo": "02",
|
7
7
|
"feature_title": "Features",
|
data/_includes/footer/index.html
CHANGED
@@ -53,7 +53,76 @@
|
|
53
53
|
{%- assign networksitesData = site.data.footer.networksites -%}
|
54
54
|
{% assign dataFile= site.data[folder][lang][file] %}
|
55
55
|
|
56
|
-
<footer class="footer">
|
56
|
+
<footer class="footer-section">
|
57
|
+
<div class="footer-wrap">
|
58
|
+
<div class="container">
|
59
|
+
<div class="footer-single-col">
|
60
|
+
<div class="row d-flex justify-content-between mt-5 ">
|
61
|
+
<div class="col-md-12 txt-secondary mb-5">
|
62
|
+
{%- if dataToShow.logo -%}
|
63
|
+
<div class="footer-logo-cont">
|
64
|
+
<img loading="lazy" src="{{dataToShow.logo}}" title="logo" class="footer-logo d-block"
|
65
|
+
alt="footer logo" width="30px">
|
66
|
+
<span>
|
67
|
+
{{dataToShow.heading}}
|
68
|
+
</span>
|
69
|
+
<!-- <div class="footer-title">{{dataToShow.heading}}</div> -->
|
70
|
+
</div>
|
71
|
+
{%- endif -%}
|
72
|
+
<hr class="footer_hr">
|
73
|
+
<div class="footer-social-list mt-4">
|
74
|
+
<ul class="list-inline">
|
75
|
+
{% for data in dataToShow.social %}
|
76
|
+
<li>
|
77
|
+
<a href="{{data.url}}" target="_blank">
|
78
|
+
<i class="{{data.icon}}"></i>
|
79
|
+
</a>
|
80
|
+
</li>
|
81
|
+
{% endfor %}
|
82
|
+
</ul>
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
<div class="col-md-2 txt-secondary">
|
86
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.companytitle | default:
|
87
|
+
'Company' }}</p>
|
88
|
+
{% for data in dataToShow.company %}
|
89
|
+
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
90
|
+
{% endfor %}
|
91
|
+
</div>
|
92
|
+
<div class="col-md-2 txt-secondary">
|
93
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.companytitle | default:
|
94
|
+
'Company' }}</p>
|
95
|
+
{% for data in dataToShow.company %}
|
96
|
+
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
97
|
+
{% endfor %}
|
98
|
+
</div>
|
99
|
+
<div class="col-md-2 txt-secondary ">
|
100
|
+
<p class=" font-weight-bold txt-primary footer_subheading">{{dataToShow.producttitle | default:
|
101
|
+
'tools' }}</p>
|
102
|
+
{% for data in dataToShow.tools %}
|
103
|
+
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
104
|
+
{% endfor %}
|
105
|
+
</div>
|
106
|
+
<div class="col-md-2 txt-secondary ">
|
107
|
+
<p class="font-weight-bold txt-primary footer_subheading">{{dataToShow.networksitestitle |
|
108
|
+
default: 'Network sites'}}</p>
|
109
|
+
{% for data in networksitesData.networkSites %}
|
110
|
+
<p class="mb-4"><a class="footer-links txt-secondary" href="{{data.url}}">{{data.name}}</a></p>
|
111
|
+
{% endfor %}
|
112
|
+
</div>
|
113
|
+
</div>
|
114
|
+
<div class="copyright-text mt-5 txt-secondary text-center">
|
115
|
+
<p>
|
116
|
+
{{dataToShow.messege}}
|
117
|
+
</p>
|
118
|
+
</div>
|
119
|
+
</div>
|
120
|
+
|
121
|
+
</div>
|
122
|
+
</div>
|
123
|
+
</footer>
|
124
|
+
|
125
|
+
<!-- <footer class="footer">
|
57
126
|
<div class="container">
|
58
127
|
<div class="footer-wrapper">
|
59
128
|
{%- if dataToShow.logo -%}
|
@@ -102,4 +171,4 @@
|
|
102
171
|
{% endfor %}
|
103
172
|
</div>
|
104
173
|
</div>
|
105
|
-
</footer>
|
174
|
+
</footer> -->
|
@@ -6,7 +6,8 @@
|
|
6
6
|
|
7
7
|
{% else %}
|
8
8
|
<a href="/">
|
9
|
-
<img class="logo-height" loading="lazy" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}"
|
9
|
+
<img class="logo-height" loading="lazy" src="{{navbar.navbarBrandLogo}}" alt="{{navbar.navbarBrandLogo}}"
|
10
|
+
style="height: 40px; width: 40px;" class="navbar-brand-image">
|
10
11
|
|
11
12
|
</a>
|
12
13
|
{% endif %}
|
@@ -25,4 +26,4 @@
|
|
25
26
|
</ul>
|
26
27
|
</div>
|
27
28
|
</nav>
|
28
|
-
</header>
|
29
|
+
</header>
|
data/_includes/header/index.html
CHANGED
@@ -6,10 +6,10 @@
|
|
6
6
|
<header id="header">
|
7
7
|
<!-- navigation startss -->
|
8
8
|
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
9
|
-
|
9
|
+
|
10
|
+
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
10
11
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}-logo" style="width:35px; height:35px;">
|
11
12
|
</a>
|
12
|
-
|
13
13
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
|
14
14
|
<i class="bi bi-list bi-2x bars"></i>
|
15
15
|
</button>
|
@@ -41,7 +41,7 @@
|
|
41
41
|
</select>
|
42
42
|
</div>
|
43
43
|
{%- include filterWords/index.html -%}
|
44
|
-
<div class="wrapper_dropDown mt-
|
44
|
+
<div class="wrapper_dropDown mt-3 d-flex justify-content-end" style="gap:10px;">
|
45
45
|
<div class="Advancedbtn" style="position: relative;" onclick="myFunction()">
|
46
46
|
<span class="filter_count" style="display: none;"></span>
|
47
47
|
<input type="button" value="Advanced Filter" class="filterButton">
|
data/_includes/section/home.html
CHANGED
@@ -20,15 +20,10 @@
|
|
20
20
|
<div class="serachSection">
|
21
21
|
<div class="position-relative serachBox">
|
22
22
|
<form action="/result" id='form' method="GET">
|
23
|
-
<div style="position: relative">
|
24
|
-
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
25
|
-
placeholder="Enter up to 15 letters?" class="txtBox" value='' name="search" maxlength="15"
|
26
|
-
required autocomplete="off">
|
27
|
-
<span class="focus-border">
|
28
|
-
<i></i>
|
29
|
-
</span>
|
30
|
-
</div>
|
31
23
|
|
24
|
+
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
25
|
+
placeholder="Enter up to 15 letters?" class="txtBox" value='' name="search" maxlength="15"
|
26
|
+
required autocomplete="off">
|
32
27
|
<input style="border-radius: {{CustomColor.inputFieldBorder}};
|
33
28
|
background-color: {{CustomColor.inputButtonBg}};" type="submit" class="serachBtn" id="serach"
|
34
29
|
value>
|
@@ -19,14 +19,9 @@
|
|
19
19
|
<div class="serachSection">
|
20
20
|
<div class="position-relative serachBox">
|
21
21
|
<form action="{{page.url}}/result" id='form' method="GET">
|
22
|
-
<
|
23
|
-
|
24
|
-
|
25
|
-
required autocomplete="off">
|
26
|
-
<span class="focus-border">
|
27
|
-
<i></i>
|
28
|
-
</span>
|
29
|
-
</div>
|
22
|
+
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
23
|
+
placeholder="Enter up to 15 letters?" class="txtBox" value='' name="search" maxlength="15"
|
24
|
+
required autocomplete="off">
|
30
25
|
<input
|
31
26
|
style="border-radius: {{CustomColor.inputFieldBorder}}; background-color: {{CustomColor.inputButtonBg}};"
|
32
27
|
type="submit" class="serachBtn" id="serach" value>
|
@@ -90,7 +90,7 @@
|
|
90
90
|
<div class="form-group text-right">
|
91
91
|
<div class="col-md-4 p-0" style="margin: 0 0 0 auto;">
|
92
92
|
<button type="submit" id="wordlesolver_submit" class="btn wordlesolver-btn mt-3">
|
93
|
-
<span id="updateTxt">
|
93
|
+
<span id="updateTxt">Solve</span>
|
94
94
|
<div class="spinner"></div>
|
95
95
|
</button>
|
96
96
|
|
data/_includes/xyzpages/xyz.html
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
{%- assign CustomColor = site.data.theme.colors -%}
|
6
6
|
<!-- start commonPage as LandingPage -->
|
7
7
|
<div class="container" id="containerWd">
|
8
|
-
<section class="sticky_nav">
|
8
|
+
<section class="sticky_nav" style="top:60px">
|
9
9
|
<div class="pageHeading text-center pt-5">
|
10
10
|
<h1 class="heading m-0 pb-0">
|
11
11
|
{{dataToShow.h1}}</h1>
|
data/_layouts/default.html
CHANGED
@@ -43,8 +43,11 @@
|
|
43
43
|
<link rel="stylesheet"
|
44
44
|
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
|
45
45
|
<script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
46
|
-
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
|
46
|
+
<script defer src=" https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
|
47
47
|
<script>
|
48
|
+
$(function () {
|
49
|
+
$('[data-toggle="tooltip"]').tooltip()
|
50
|
+
})
|
48
51
|
let txtBox = document.querySelector('.txtBox')
|
49
52
|
let focusBorder = document.querySelector('.focus-border')
|
50
53
|
|
@@ -66,7 +69,17 @@
|
|
66
69
|
}
|
67
70
|
})
|
68
71
|
</script>
|
69
|
-
|
72
|
+
<script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
|
73
|
+
<script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
|
74
|
+
<script>
|
75
|
+
(function () {
|
76
|
+
d = document;
|
77
|
+
c = d.createElement('link');
|
78
|
+
c.href = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css';
|
79
|
+
c.rel = 'stylesheet';
|
80
|
+
d.head.appendChild(c);
|
81
|
+
})();
|
82
|
+
</script>
|
70
83
|
{% include Monumetric/Monumetric.html %}
|
71
84
|
</body>
|
72
85
|
|
data/_layouts/xyzpages.html
CHANGED
@@ -85,13 +85,8 @@
|
|
85
85
|
</style>
|
86
86
|
|
87
87
|
<body>
|
88
|
-
|
89
|
-
|
90
|
-
<a class="navbar-brand result_header_logo" href="/" title="words with letters">
|
91
|
-
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}-logo" style="width:35px; height:35px;">
|
92
|
-
</a>
|
93
|
-
</nav>
|
94
|
-
</div>
|
88
|
+
{%- include header/index.html -%}
|
89
|
+
|
95
90
|
{%- include xyzpages/xyz.html -%}
|
96
91
|
|
97
92
|
{%- include share/socialshare.html -%}
|
data/assets/css/footer.css
CHANGED
@@ -93,7 +93,7 @@ hr {
|
|
93
93
|
}
|
94
94
|
} */
|
95
95
|
/* over styling for footer */
|
96
|
-
|
96
|
+
/*
|
97
97
|
.footer-wrapper {
|
98
98
|
padding: 32px 0;
|
99
99
|
display: -webkit-box;
|
@@ -200,9 +200,9 @@ hr {
|
|
200
200
|
-ms-flex: 0 0 auto;
|
201
201
|
flex: 0 0 auto;
|
202
202
|
width: 100%;
|
203
|
-
}
|
203
|
+
} */
|
204
204
|
|
205
|
-
.privacy-footer {
|
205
|
+
/* .privacy-footer {
|
206
206
|
display: -webkit-box;
|
207
207
|
display: -webkit-flex;
|
208
208
|
display: -ms-flexbox;
|
@@ -222,9 +222,9 @@ hr {
|
|
222
222
|
-webkit-flex: 1 1 auto;
|
223
223
|
-ms-flex: 1 1 auto;
|
224
224
|
flex: 1 1 auto;
|
225
|
-
}
|
225
|
+
} */
|
226
226
|
|
227
|
-
.privacy-links {
|
227
|
+
/* .privacy-links {
|
228
228
|
display: -webkit-box;
|
229
229
|
display: -webkit-flex;
|
230
230
|
display: -ms-flexbox;
|
@@ -248,4 +248,77 @@ hr {
|
|
248
248
|
}
|
249
249
|
.privacy-links-item > a {
|
250
250
|
color: #000;
|
251
|
+
} */
|
252
|
+
|
253
|
+
.txt-primary {
|
254
|
+
color: #000;
|
255
|
+
font-size: 16px;
|
256
|
+
text-decoration: none !important;
|
257
|
+
}
|
258
|
+
.txt-secondary {
|
259
|
+
color: gray;
|
260
|
+
font-size: 15px;
|
261
|
+
text-decoration: none !important;
|
262
|
+
margin: 2rem 0px;
|
263
|
+
}
|
264
|
+
.txt-secondary:hover {
|
265
|
+
color: #000;
|
266
|
+
}
|
267
|
+
|
268
|
+
.footer_hr {
|
269
|
+
width: 50px;
|
270
|
+
margin: 2rem auto;
|
271
|
+
border: 2px solid #000;
|
272
|
+
}
|
273
|
+
|
274
|
+
.footer-section {
|
275
|
+
padding: 5px 0px;
|
276
|
+
background-color: #f8f9fa;
|
277
|
+
margin-top: 3rem;
|
278
|
+
}
|
279
|
+
|
280
|
+
.footer-logo-cont {
|
281
|
+
display: flex;
|
282
|
+
justify-content: center;
|
283
|
+
align-items: center;
|
284
|
+
gap: 10px;
|
285
|
+
font-size: 20px;
|
286
|
+
color: #000;
|
287
|
+
font-weight: 900;
|
288
|
+
}
|
289
|
+
.list-inline {
|
290
|
+
padding-left: 0;
|
291
|
+
list-style: none;
|
292
|
+
display: flex;
|
293
|
+
align-items: center;
|
294
|
+
justify-content: center;
|
295
|
+
gap: 40px;
|
296
|
+
}
|
297
|
+
|
298
|
+
.footer-social-list ul li a i {
|
299
|
+
width: 35px;
|
300
|
+
height: 35px;
|
301
|
+
line-height: 35px;
|
302
|
+
text-align: center;
|
303
|
+
vertical-align: middle;
|
304
|
+
font-size: 18px;
|
305
|
+
background: #000;
|
306
|
+
-webkit-background-clip: text;
|
307
|
+
color: transparent;
|
308
|
+
transition: all 0.3s ease-in;
|
309
|
+
}
|
310
|
+
.copyright-text {
|
311
|
+
font-size: 18px;
|
312
|
+
}
|
313
|
+
.footer-address {
|
314
|
+
margin-bottom: 20px;
|
315
|
+
}
|
316
|
+
.footer-address p {
|
317
|
+
margin-bottom: 15px;
|
318
|
+
}
|
319
|
+
|
320
|
+
@media (max-width: 768px) {
|
321
|
+
.txt-secondary {
|
322
|
+
text-align: center;
|
323
|
+
}
|
251
324
|
}
|
data/assets/css/home.css
CHANGED
@@ -10,6 +10,12 @@
|
|
10
10
|
background-size: cover;
|
11
11
|
margin-bottom: 20vh;
|
12
12
|
}
|
13
|
+
.pageHeading {
|
14
|
+
margin-bottom: 2rem;
|
15
|
+
}
|
16
|
+
.pageHeading > h1 {
|
17
|
+
font-size: 30px;
|
18
|
+
}
|
13
19
|
.table {
|
14
20
|
height: 5em;
|
15
21
|
overflow: auto;
|
@@ -49,51 +55,6 @@ input:-webkit-autofill:active {
|
|
49
55
|
outline: none;
|
50
56
|
position: relative;
|
51
57
|
}
|
52
|
-
|
53
|
-
.txtBox ~ .focus-border:before,
|
54
|
-
.txtBox ~ .focus-border:after {
|
55
|
-
z-index: 9;
|
56
|
-
content: '';
|
57
|
-
position: absolute;
|
58
|
-
top: 0;
|
59
|
-
left: 50%;
|
60
|
-
width: 0;
|
61
|
-
height: 1px;
|
62
|
-
transition: 0.4s;
|
63
|
-
background: linear-gradient(to right, #e6dada, #274046);
|
64
|
-
}
|
65
|
-
.txtBox ~ .focus-border:after {
|
66
|
-
top: auto;
|
67
|
-
bottom: 0;
|
68
|
-
}
|
69
|
-
.txtBox ~ .focus-border i:before,
|
70
|
-
.txtBox ~ .focus-border i:after {
|
71
|
-
content: '';
|
72
|
-
position: absolute;
|
73
|
-
top: 50%;
|
74
|
-
left: 0;
|
75
|
-
width: 1px;
|
76
|
-
height: 0;
|
77
|
-
background: linear-gradient(to right, #e6dada, #274046);
|
78
|
-
transition: 0.6s;
|
79
|
-
}
|
80
|
-
.txtBox ~ .focus-border i:after {
|
81
|
-
left: auto;
|
82
|
-
right: 0px;
|
83
|
-
}
|
84
|
-
.txtBox:focus ~ .focus-border:before,
|
85
|
-
.txtBox:focus ~ .focus-border:after {
|
86
|
-
left: 0;
|
87
|
-
width: 100%;
|
88
|
-
transition: 0.4s;
|
89
|
-
}
|
90
|
-
.txtBox:focus ~ .focus-border i:before,
|
91
|
-
.txtBox:focus ~ .focus-border i:after {
|
92
|
-
top: 0;
|
93
|
-
height: 100%;
|
94
|
-
transition: 0.6s;
|
95
|
-
}
|
96
|
-
|
97
58
|
/* ravi */
|
98
59
|
.txtBox::placeholder {
|
99
60
|
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
@@ -294,7 +255,7 @@ input:-webkit-autofill:active {
|
|
294
255
|
z-index: 99;
|
295
256
|
}
|
296
257
|
.pageHeading h1 {
|
297
|
-
font-size:
|
258
|
+
font-size: 2rem;
|
298
259
|
padding-top: 3rem;
|
299
260
|
}
|
300
261
|
#containerWd {
|
data/assets/css/style.css
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
|
1
2
|
/* styling........ */
|
2
3
|
* {
|
3
4
|
margin: 0;
|
4
5
|
padding: 0;
|
5
6
|
box-sizing: border-box;
|
7
|
+
font-family: 'Poppins', sans-serif !important;
|
6
8
|
}
|
7
9
|
:root {
|
8
10
|
--txtColor: #000;
|
@@ -41,6 +43,7 @@ header {
|
|
41
43
|
font-size: 2.2rem;
|
42
44
|
color: var(--txtColor) !important;
|
43
45
|
font-weight: 900;
|
46
|
+
position: relative;
|
44
47
|
}
|
45
48
|
.navbar-dark .navbar-toggler {
|
46
49
|
outline: none !important;
|
data/assets/js/X-letter.js
CHANGED
@@ -17,7 +17,8 @@ let includeValue = params.get('include')
|
|
17
17
|
let lengthValue = params.get('length')
|
18
18
|
let dictonary = params.get('dictionary')
|
19
19
|
|
20
|
-
let
|
20
|
+
let tab_link_wrapper = document.querySelector('.tab_link_wrapper')
|
21
|
+
tab_link_wrapper.style.display = "none"
|
21
22
|
|
22
23
|
let txtBox = document.querySelector('.txtBox')
|
23
24
|
txtBox.focus()
|
@@ -165,15 +166,15 @@ function x_with_letters(data) {
|
|
165
166
|
</li></a>`
|
166
167
|
})
|
167
168
|
|
168
|
-
tab_container.innerHTML += `
|
169
|
-
<a href="#${itemLength}">
|
170
|
-
<input type="button" value="${itemLength} Letter" id="Tab${itemLength}" onclick="addFilter(${itemLength})"
|
171
|
-
class="tab_link">
|
172
|
-
</a>
|
173
|
-
`
|
169
|
+
// tab_container.innerHTML += `
|
170
|
+
// <a href="#${itemLength}">
|
171
|
+
// <input type="button" value="${itemLength} Letter" id="Tab${itemLength}" onclick="addFilter(${itemLength})"
|
172
|
+
// class="tab_link">
|
173
|
+
// </a>
|
174
|
+
// `
|
174
175
|
|
175
|
-
let tabs = document.getElementsByClassName('tab_link')
|
176
|
-
tabs[0] ? tabs[0].classList.add('active-tab') : ''
|
176
|
+
// let tabs = document.getElementsByClassName('tab_link')
|
177
|
+
// tabs[0] ? tabs[0].classList.add('active-tab') : ''
|
177
178
|
|
178
179
|
main.innerHTML += `
|
179
180
|
<div class="allGroupWords">
|
@@ -329,18 +330,18 @@ function sortby(sortBool, data, i) {
|
|
329
330
|
}
|
330
331
|
|
331
332
|
// Implement Active class
|
332
|
-
const addFilter = () => {
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
}
|
333
|
+
// const addFilter = () => {
|
334
|
+
// let tabs = document.getElementsByClassName('tab_link')
|
335
|
+
// tabs[0] ? tabs[0].classList.add('active-tab') : ''
|
336
|
+
|
337
|
+
// Array.from(tabs).map((item) => {
|
338
|
+
// item.classList.remove('active-tab')
|
339
|
+
// })
|
340
|
+
// main.innerHTML += ``
|
341
|
+
// let activeLetter = event.target
|
342
|
+
// // console.log(activeLetter)
|
343
|
+
// activeLetter.classList.add('active-tab')
|
344
|
+
// }
|
344
345
|
|
345
346
|
// Scrabble Point Counts
|
346
347
|
const ScrabbleScore = () => {
|
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: 0.7.
|
4
|
+
version: 0.7.5
|
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-01-
|
11
|
+
date: 2022-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|