word-games-theme 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/css/wordleSolver.css +12 -2
- 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: 5a0285bc5bc3a0b219a3e2df13bb22745f604dc02c18012f2c55ff6e846e4b2b
|
4
|
+
data.tar.gz: 5ea301c17bc3425d1cc29c18a904e304106691e81ff01e60b384de93616471ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8da2c8c850193cb50d244ffa95970ddefeac0c7a9a3c243ba5ba486e024408abfff871c251bafc5047a7ec65a42df7978d2a3230b61deff9937163a12e270bab
|
7
|
+
data.tar.gz: 96d2f870449c914e73e8b985883cde5f07cc686fac23639c4ad8cf593811e6ea167ac433f5a69f3dc7e6a398e5cf2baffdc913caa6eba2e3e3a3bd9aff9004a6
|
data/assets/css/wordleSolver.css
CHANGED
@@ -70,10 +70,11 @@
|
|
70
70
|
|
71
71
|
.allfiveletterswords {
|
72
72
|
background-color: white !important;
|
73
|
-
width:
|
73
|
+
width: 75%;
|
74
|
+
margin: 10px auto;
|
74
75
|
height: auto;
|
75
76
|
box-shadow: 0 0 2px rgb(0 0 0 / 20%);
|
76
|
-
margin: 10px 0;
|
77
|
+
/* margin: 10px 0; */
|
77
78
|
border-radius: 15px;
|
78
79
|
}
|
79
80
|
.allfiveletterswords > .wordListHeading {
|
@@ -86,6 +87,8 @@
|
|
86
87
|
|
87
88
|
#wordleWordCount {
|
88
89
|
font-size: 18px;
|
90
|
+
width: 75%;
|
91
|
+
margin: 10px auto;
|
89
92
|
}
|
90
93
|
|
91
94
|
.ws-fcs {
|
@@ -101,3 +104,10 @@
|
|
101
104
|
color: #fff !important;
|
102
105
|
background-color: #787c7e !important;
|
103
106
|
}
|
107
|
+
|
108
|
+
@media (max-width: 768px) {
|
109
|
+
.allfiveletterswords,
|
110
|
+
#wordleWordCount {
|
111
|
+
width: 80%;
|
112
|
+
}
|
113
|
+
}
|