word-games-theme 2.9.1 → 2.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/header/en/data.json +96 -73
- data/_data/wordgames/en/root.json +308 -156
- data/_data/wordgames/hi/words-with-these-letters-and-2-blanks.json +197 -0
- data/_includes/alternates/alternates.html +77 -7
- data/_includes/wordgames/head/head.html +10 -0
- data/_includes/wordgames/header/blog-header.html +80 -25
- data/_includes/wordgames/header/new-header.html +132 -0
- data/_layouts/wordgames-blog.html +1 -1
- data/_layouts/wordgames-home.html +1 -1
- data/_layouts/wordgames-word-meaning.html +43 -27
- data/assets/css/wordgames-theme.css +497 -171
- data/assets/css/wordgames-variables.css +1 -1
- data/assets/images/close-menu.svg +2 -2
- data/assets/js/scrabbleDictonary.js +7 -4
- data/assets/js/theme.js +128 -51
- data/assets/js/wordleSolver.js +290 -11
- data/assets/js/wordleSolverResult.js +0 -23
- metadata +4 -2
@@ -53,14 +53,12 @@
|
|
53
53
|
}
|
54
54
|
|
55
55
|
.dictionary-item .found-word {
|
56
|
-
border-radius:
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
font-size: 14px;
|
63
|
-
line-height: 25px;
|
56
|
+
border-radius: 4px;
|
57
|
+
background: #28a745;
|
58
|
+
color: #fff;
|
59
|
+
padding: 3px;
|
60
|
+
font-size: 14px;
|
61
|
+
line-height: 25px;
|
64
62
|
}
|
65
63
|
|
66
64
|
.dictionary-item .word-score {
|
@@ -71,14 +69,32 @@
|
|
71
69
|
|
72
70
|
|
73
71
|
.list-group-item {
|
74
|
-
|
75
|
-
|
72
|
+
list-style: none;
|
73
|
+
background-color: white !important;
|
74
|
+
border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
75
|
+
padding: 1rem;
|
76
|
+
display: flex !important;
|
77
|
+
flex-direction: column;
|
78
|
+
gap: 10px;
|
79
|
+
border-radius: 4px;
|
76
80
|
}
|
77
|
-
|
81
|
+
|
82
|
+
.word-meaning-heading {
|
78
83
|
background: var(--primary-color);
|
79
|
-
|
80
|
-
|
81
|
-
|
84
|
+
width: auto;
|
85
|
+
max-width: 200px;
|
86
|
+
font-weight: 800;
|
87
|
+
padding: 5px 10px;
|
88
|
+
text-align: center;
|
89
|
+
border-radius: 4px;
|
90
|
+
color: #fff;
|
91
|
+
}
|
92
|
+
.common{
|
93
|
+
background: rgba(255, 247, 212, 1);
|
94
|
+
padding: 1rem;
|
95
|
+
margin: 1rem 0;
|
96
|
+
display: inline-block;
|
97
|
+
border-radius: 4px;
|
82
98
|
}
|
83
99
|
</style>
|
84
100
|
|
@@ -91,7 +107,7 @@
|
|
91
107
|
{% assign lang = page.lang %}
|
92
108
|
{% assign dataToShow = site.data[folderName][lang][file] %}
|
93
109
|
|
94
|
-
<div style="padding-top:
|
110
|
+
<div style="padding-top: 20px;">
|
95
111
|
<div class="container">
|
96
112
|
<div class="pageHeading text-center">
|
97
113
|
<h1 class="heading font-weight-bolder pb-">
|
@@ -111,27 +127,27 @@
|
|
111
127
|
</form>
|
112
128
|
</div>
|
113
129
|
</div>
|
114
|
-
<div class="dictionary-word-container
|
130
|
+
<div class="dictionary-word-container container" style="position: relative;top: 50px;">
|
115
131
|
<div class="padding15px">
|
116
132
|
<div class="medium-heading">
|
117
|
-
<h2 class="word-meaning-heading font-weight-bolder">
|
133
|
+
<h2 class="word-meaning-heading font-weight-bolder">Word Games</h2>
|
118
134
|
</div>
|
119
135
|
<div class="dictionary">
|
120
136
|
<div class="dictionary-item">
|
121
|
-
<span class="font16px">
|
137
|
+
<span class="font16px">Scrabble US (TWL06)</span>
|
122
138
|
|
123
139
|
<span class="found-word"></span>
|
124
140
|
<span class="word-score"></span>
|
125
141
|
</div>
|
126
142
|
<div class="dictionary-item">
|
127
|
-
<span class="font16px">
|
143
|
+
<span class="font16px">Scrabble UK (SOWPODS)</span>
|
128
144
|
|
129
145
|
<span class="found-word"></span>
|
130
146
|
<span class="word-score"></span>
|
131
147
|
</div>
|
132
148
|
|
133
149
|
<div class="dictionary-item">
|
134
|
-
<span class="font16px">
|
150
|
+
<span class="font16px">Words With Friends (Enable)</span>
|
135
151
|
|
136
152
|
<span class="found-word"></span>
|
137
153
|
<span class="word-score"></span>
|
@@ -139,16 +155,16 @@
|
|
139
155
|
</div>
|
140
156
|
</div>
|
141
157
|
</div>
|
142
|
-
<div class="container
|
143
|
-
<h3 class="word-meaning-heading"><b>Defintion(s)</b></h3>
|
144
|
-
<br>
|
158
|
+
<div class="container" id="defintions" style="margin-top: 100px;">
|
159
|
+
<h3 class="word-meaning-heading" id="Defintions"><b>Defintion(s)</b></h3>
|
160
|
+
<!-- <br> -->
|
145
161
|
<span id="loaderMeaning" style="font-size: 20px">Loading </span>
|
146
162
|
<div class="spinner-border" id="loaderMeaning1"></div>
|
147
163
|
<h2 id="err" style="display: none;">No Definition Found!</h2>
|
148
|
-
<h4 id="noun" style="display: none;"><b>Noun</b></h4>
|
149
|
-
<h4 id="verb" style="display: none;"><b>Verb</b></h4>
|
150
|
-
<h4 id="adj" style="display: none;"><b>Adjective</b></h4>
|
151
|
-
<h4 id="adv" style="display: none;"><b>Adverb</b></h4>
|
164
|
+
<h4 id="noun" style="display: none;"><b class="common">Noun</b></h4>
|
165
|
+
<h4 id="verb" style="display: none;"><b class="common">Verb</b></h4>
|
166
|
+
<h4 id="adj" style="display: none;"><b class="common">Adjective</b></h4>
|
167
|
+
<h4 id="adv" style="display: none;"><b class="common">Adverb</b></h4>
|
152
168
|
</div>
|
153
169
|
</div>
|
154
170
|
</div>
|