word-games-theme 2.3.0 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/wordgames/infographics/infographics.html +1 -1
- data/assets/css/wordle-solver.css +36 -10
- 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: b21d628ba93073a7a4674fdb53fcf8768167653e799e88071eff886ef8f95f89
|
|
4
|
+
data.tar.gz: 075da3a40a36fce9e46e46a05a35bdcecec546c352572f65df4e774c56a24559
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 177b8f676125e9e2c71913d7c45b30a6103451f92a3ea1b6262cfbf9418d8b95794f717572a23759fd26cf4e807cb55dfd15eec0071d77099a142620cd1a638c
|
|
7
|
+
data.tar.gz: d7d364f2813b43b07f81d704e970f5c01258b0057098347193aa1104b5513fab74c0559bbe86a0744e4295994a890f15b4ee1f995cd0953f5f8aacc46a5d6bab
|
|
@@ -95,27 +95,42 @@
|
|
|
95
95
|
text-decoration: none;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
.allGroupWords {
|
|
99
|
+
background-color: #fff!important;
|
|
100
|
+
width: auto;
|
|
101
|
+
height: auto;
|
|
102
|
+
border-radius: 15px;
|
|
103
|
+
box-shadow: 0 0 2px rgba(0,0,0,.2);
|
|
104
|
+
margin: 10px 0;
|
|
105
|
+
border: 2px solid var(--black-color);
|
|
106
|
+
}
|
|
98
107
|
.allfiveletterswords {
|
|
99
|
-
background-color:
|
|
100
|
-
width:
|
|
101
|
-
margin: 10px auto;
|
|
108
|
+
background-color: #fff!important;
|
|
109
|
+
width: auto;
|
|
102
110
|
height: auto;
|
|
103
|
-
box-shadow: 0 0 2px rgb(0 0 0 / 20%);
|
|
104
|
-
/* margin: 10px 0; */
|
|
105
111
|
border-radius: 15px;
|
|
112
|
+
box-shadow: 0 0 2px rgba(0,0,0,.2);
|
|
113
|
+
margin: 10px 0;
|
|
114
|
+
border: 2px solid var(--black-color);
|
|
106
115
|
}
|
|
107
116
|
|
|
108
117
|
.allfiveletterswords>.wordListHeading {
|
|
109
|
-
background:
|
|
110
|
-
padding: 10px
|
|
118
|
+
background: var(--black-color);
|
|
119
|
+
padding: 10px 0 5px 25px;
|
|
120
|
+
border-top-right-radius: 13px;
|
|
121
|
+
border-top-left-radius: 13px;
|
|
111
122
|
color: #fff;
|
|
112
|
-
border-top-right-radius: 15px;
|
|
113
|
-
border-top-left-radius: 15px;
|
|
114
123
|
}
|
|
115
124
|
|
|
125
|
+
.wordList .anchor__style {
|
|
126
|
+
color: #000!important;
|
|
127
|
+
font-size: 15px;
|
|
128
|
+
text-decoration: none!important;
|
|
129
|
+
font-weight: 600;
|
|
130
|
+
}
|
|
116
131
|
#wordleWordCount {
|
|
117
132
|
font-size: 18px;
|
|
118
|
-
width: 75%;
|
|
133
|
+
/* width: 75%; */
|
|
119
134
|
margin: 10px auto;
|
|
120
135
|
}
|
|
121
136
|
|
|
@@ -133,6 +148,17 @@
|
|
|
133
148
|
color: #fff !important;
|
|
134
149
|
background-color: #3D3D3E !important;
|
|
135
150
|
}
|
|
151
|
+
.wordList>ul li{
|
|
152
|
+
padding: 8px 0;
|
|
153
|
+
background: #f8f9fa;
|
|
154
|
+
border-radius: 5px;
|
|
155
|
+
margin: 6px 6px;
|
|
156
|
+
width: auto;
|
|
157
|
+
min-width: 100px;
|
|
158
|
+
text-align: center;
|
|
159
|
+
border: solid 1px var(--black-color) !important;
|
|
160
|
+
box-shadow: 2px 2px 1px 0 var(--black-color) !important;
|
|
161
|
+
}
|
|
136
162
|
|
|
137
163
|
.related_post_heading {
|
|
138
164
|
width: 100%;
|