word-games-theme 0.7.7 → 0.7.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/section/commonPage.html +4 -4
- data/_includes/section/wordGroup.html +1 -1
- data/_includes/section/xyzGroup.html +1 -1
- data/_includes/xyzpages/xyz.html +1 -1
- data/_layouts/page.html +2 -0
- data/_layouts/page2.html +2 -0
- data/assets/css/advancedFilter.css +2 -2
- data/assets/js/wordleSolver.js +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10405f72d4e86f148bdd87416278ad88ba218909f1692cc202d2f3eeed898f61
|
4
|
+
data.tar.gz: 765f080e3ae7b875482cc6e5f8de2179d47dd873ccbf6651084f9832539eef55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52a73a15173b628f753880770c254f2650d227fca97ca4b09370044a02c97361d5a7b6d4ec3ad11e3bf1a707a91ad39f13b83a08445d36670a2c5ddf2e276782
|
7
|
+
data.tar.gz: 88fa0b0d1d74ccae4bce5a269f6895d00f4d1891a8160746a95636e558b9e5b6fdd8ee50f342db192d429acdc76628b2cfeddf1813eddbd02b7283facc1b4178
|
@@ -5,16 +5,16 @@
|
|
5
5
|
{%- assign CustomColor = site.data.theme.colors -%}
|
6
6
|
<!-- start commonPage as LandingPage -->
|
7
7
|
|
8
|
-
<div class="container py-3 result_header">
|
8
|
+
<!-- <div class="container py-3 result_header">
|
9
9
|
<nav class="navbar result_page_navbar">
|
10
10
|
<a class="navbar-brand result_header_logo" href="/" title="words with letters">
|
11
11
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}-logo" style="width:35px; height:35px;">
|
12
12
|
</a>
|
13
13
|
</nav>
|
14
|
-
</div>
|
14
|
+
</div> -->
|
15
15
|
<div class="container" id="containerWd">
|
16
16
|
<section class="sticky_nav">
|
17
|
-
<div class="pageHeading text-center">
|
17
|
+
<div class="pageHeading text-center pt-5">
|
18
18
|
<h1 class="heading m-0 pb-0">
|
19
19
|
{{dataToShow.h1}}</h1>
|
20
20
|
{%- if dataToShow.h2 != "" -%}
|
@@ -27,7 +27,7 @@
|
|
27
27
|
<form action="" id='form'>
|
28
28
|
<input style="border-radius: {{CustomColor.inputFieldBorder}}" type="text"
|
29
29
|
placeholder="Enter up to 15 letters?" class="txtBox resultPageTxtBox" value='' name="search"
|
30
|
-
maxlength="15" value required>
|
30
|
+
maxlength="15" value required autocomplete="off">
|
31
31
|
<input
|
32
32
|
style="border-radius: {{CustomColor.inputFieldBorder}}; background-color: {{CustomColor.inputButtonBg}};"
|
33
33
|
type="submit" class="serachBtn resultPageSearchBtn" id="serach" value>
|
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">
|
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/page.html
CHANGED
data/_layouts/page2.html
CHANGED
@@ -41,7 +41,7 @@
|
|
41
41
|
background: #fff;
|
42
42
|
position: absolute;
|
43
43
|
z-index: 999;
|
44
|
-
top:
|
44
|
+
top: 100px;
|
45
45
|
right: 150px;
|
46
46
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
|
47
47
|
padding: 30px 15px;
|
@@ -68,7 +68,7 @@
|
|
68
68
|
.sticky_nav {
|
69
69
|
position: sticky;
|
70
70
|
width: inherit;
|
71
|
-
top:
|
71
|
+
top: 58px;
|
72
72
|
background-color: #fff;
|
73
73
|
z-index: 99;
|
74
74
|
}
|
data/assets/js/wordleSolver.js
CHANGED
@@ -55,7 +55,7 @@ const wordleSolver = async (value, value2, value3, greenWithIndex) => {
|
|
55
55
|
}),
|
56
56
|
})
|
57
57
|
const data = await response.json()
|
58
|
-
document.querySelector('#updateTxt').innerHTML = '
|
58
|
+
document.querySelector('#updateTxt').innerHTML = 'Solve'
|
59
59
|
spinner.classList.remove('spinner-border')
|
60
60
|
|
61
61
|
let ok = true
|