word-games-theme 2.8.9 → 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/wordgames-home.html +1 -1
- data/assets/css/wordgames-home.css +17 -3
- data/assets/js/wordfinder-home.js +6 -0
- 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: 3f65bcfb20e1866513c140faad2139f779b1c3cd1e4f5bb4accea4a342d70ec0
|
4
|
+
data.tar.gz: 2297d369885c957f6051007453184bc58eedd1c24d84e1be772a56c0892f3744
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16cd60ae33fa7891025f6a97ac86f7ac54b7f086c3254ad488eb65f1189afa1125bcbda066eb9cfef09ee875f57a895169dc8d46974470065572eb2a80ee07ba
|
7
|
+
data.tar.gz: da22d7da56cfe62cdd24bf3994b7d06940b55b9e7c4acffcfc604c4f84898ed967bf02e5c28974a376dbf02ed52d8f0f8f28d9ac021bde73aef243eb7f65f5fa
|
@@ -114,11 +114,25 @@ input[type="number"] {
|
|
114
114
|
box-shadow: 3px 6px 1px 0px var(--primary-color);
|
115
115
|
}
|
116
116
|
|
117
|
-
.txtBox:focus{
|
117
|
+
/* .txtBox:focus {
|
118
118
|
box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25) !important;
|
119
119
|
border-color: #86b7fe !important;
|
120
|
+
} */
|
121
|
+
|
122
|
+
.blinkBoxShadow {
|
123
|
+
animation: blinkBoxShadow 1s infinite alternate;
|
124
|
+
}
|
125
|
+
|
126
|
+
@keyframes blinkBoxShadow {
|
127
|
+
0% {
|
128
|
+
box-shadow: 0 0 5px 5px var(--primary-color);
|
129
|
+
}
|
130
|
+
100% {
|
131
|
+
box-shadow: 0 0 8px 8px var(--primary-color);
|
132
|
+
}
|
120
133
|
}
|
121
134
|
|
135
|
+
|
122
136
|
.serachSection .serachBox .letter-close-button {
|
123
137
|
position: absolute;
|
124
138
|
right: 300px;
|
@@ -818,7 +832,7 @@ summary::-webkit-details-marker {
|
|
818
832
|
display: none;
|
819
833
|
}
|
820
834
|
|
821
|
-
.navbar-toggler{
|
835
|
+
.navbar-toggler {
|
822
836
|
position: absolute;
|
823
837
|
right: 10px;
|
824
838
|
z-index: 999999;
|
@@ -828,7 +842,7 @@ summary::-webkit-details-marker {
|
|
828
842
|
padding: 0;
|
829
843
|
}
|
830
844
|
|
831
|
-
.navbar-toggler img{
|
845
|
+
.navbar-toggler img {
|
832
846
|
height: 50px;
|
833
847
|
}
|
834
848
|
|
@@ -1,5 +1,11 @@
|
|
1
1
|
let txtBox = document.querySelector('.txtBox')
|
2
2
|
txtBox.focus()
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
txtBox.addEventListener("input",()=>{
|
7
|
+
txtBox.classList.add('blinkBoxShadow');
|
8
|
+
})
|
3
9
|
let letterCloseButton = document.querySelector('.letter-close-button')
|
4
10
|
let startsWith = document.getElementById("startsWith");
|
5
11
|
let mustInclude = document.getElementById("mustInclude");
|
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: 2.
|
4
|
+
version: 2.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- manpreet-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|