word-games-theme 2.7.1 → 2.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/wordgames/footer/footer.html +5 -5
- data/_includes/wordgames/words-data/words-data.html +1 -1
- data/_layouts/wordgames-home.html +1 -1
- data/assets/css/wordgames-result.css +491 -464
- data/assets/css/wordgames-theme.css +1 -1
- data/assets/js/scrabble-words.js +1 -1
- data/assets/js/wordfinder-home.js +14 -10
- data/assets/js/wordfinder.js +149 -9
- data/assets/js/xletter-result.js +121 -6
- metadata +2 -2
@@ -2,6 +2,21 @@
|
|
2
2
|
Result page css
|
3
3
|
***************/
|
4
4
|
|
5
|
+
|
6
|
+
/* show more button */
|
7
|
+
.showmore_btn {
|
8
|
+
background: black;
|
9
|
+
padding: 1rem 2rem;
|
10
|
+
border-radius: 50px;
|
11
|
+
color: #fff;
|
12
|
+
font-size: 15px;
|
13
|
+
border: none;
|
14
|
+
}
|
15
|
+
.points{
|
16
|
+
position:relative; top:4px; font-size:12px
|
17
|
+
}
|
18
|
+
|
19
|
+
|
5
20
|
/* common loader css */
|
6
21
|
.loader {
|
7
22
|
width: 100%;
|
@@ -13,235 +28,238 @@
|
|
13
28
|
}
|
14
29
|
|
15
30
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
31
|
+
input:-webkit-autofill,
|
32
|
+
input:-webkit-autofill:hover,
|
33
|
+
input:-webkit-autofill:focus,
|
34
|
+
input:-webkit-autofill:active {
|
35
|
+
transition: background-color 5000s ease-in-out 0s;
|
36
|
+
}
|
37
|
+
|
38
|
+
.btn-info:not(:disabled):not(.disabled).active:focus,
|
39
|
+
.btn-info:not(:disabled):not(.disabled):active:focus,
|
40
|
+
.show>.btn-info.dropdown-toggle:focus {
|
41
|
+
box-shadow: unset;
|
42
|
+
border-color: rgba(0, 0, 0, 0.1);
|
43
|
+
}
|
44
|
+
|
45
|
+
/* navbar css for result page */
|
46
|
+
.result_navbar_section {
|
47
|
+
width: 100%;
|
48
|
+
padding: .8rem 9% !important;
|
49
|
+
position: sticky;
|
50
|
+
top: 0;
|
51
|
+
z-index: 99999;
|
52
|
+
}
|
53
|
+
|
54
|
+
/* .header_bars{
|
39
55
|
background-color: var(--black-color);
|
40
56
|
} */
|
41
|
-
|
42
|
-
|
43
|
-
|
57
|
+
|
58
|
+
|
59
|
+
.result_navbar_section .mobile_bars {
|
44
60
|
cursor: pointer;
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
61
|
+
position: absolute;
|
62
|
+
top: 13px;
|
63
|
+
/* margin: 0 40px; */
|
64
|
+
left: 110px;
|
65
|
+
}
|
66
|
+
|
67
|
+
.mobile_bars .bars {
|
68
|
+
position: relative;
|
69
|
+
color: #000;
|
70
|
+
font-size: 35px;
|
71
|
+
}
|
72
|
+
|
73
|
+
.fillterWrapper .filter-tooltip {
|
58
74
|
top: 8px !important
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
75
|
+
}
|
76
|
+
|
77
|
+
.result_navbar_section #open_list_bar {
|
78
|
+
position: fixed;
|
79
|
+
top: 0px;
|
80
|
+
left: -100%;
|
81
|
+
z-index: 999;
|
82
|
+
height: 100vh;
|
83
|
+
transition: all .5s ease-in-out;
|
84
|
+
list-style: none;
|
85
|
+
box-shadow: 0 0 5px grey;
|
86
|
+
background: #f8f9fa;
|
87
|
+
overflow-y: scroll;
|
88
|
+
}
|
89
|
+
|
90
|
+
#open_list_bar .cat_bar_logo_link {
|
91
|
+
padding: 0 15px;
|
92
|
+
}
|
93
|
+
|
94
|
+
#open_list_bar .cat_bar_logo_link .cat_bar_img {
|
95
|
+
width: 30px;
|
96
|
+
}
|
97
|
+
|
98
|
+
#open_list_bar .cat_title {
|
99
|
+
color: #000;
|
100
|
+
font-weight: 900;
|
101
|
+
font-size: 14px;
|
102
|
+
position: relative;
|
103
|
+
left: 10px;
|
104
|
+
top: 3px;
|
105
|
+
}
|
106
|
+
|
107
|
+
#open_list_bar .close_bar_btn {
|
108
|
+
position: absolute;
|
109
|
+
right: 8px;
|
110
|
+
font-size: 28px;
|
111
|
+
top: 15px;
|
112
|
+
cursor: pointer;
|
113
|
+
}
|
114
|
+
|
115
|
+
.list-items-container .list_cat_heading {
|
116
|
+
padding: 8px 15px;
|
117
|
+
background-color: var(--primary-color);
|
118
|
+
color: #fff;
|
119
|
+
font-size: 13px;
|
120
|
+
}
|
121
|
+
|
122
|
+
.list-items-container .list_cat_name {
|
123
|
+
padding: 8px 15px;
|
124
|
+
font-size: 12px;
|
125
|
+
border-bottom: 1px solid rgb(209, 213, 219)
|
126
|
+
}
|
127
|
+
|
128
|
+
.list-items-container .list_cat_name:active {
|
129
|
+
color: #000 !important
|
130
|
+
}
|
131
|
+
|
132
|
+
.list-items-container .list_cat_name:hover {
|
133
|
+
background-color: #e9ecef;
|
134
|
+
}
|
135
|
+
|
136
|
+
/* h1,h2 for result page , searchbox and length selector css*/
|
137
|
+
.pageHeading>.result_heading {
|
138
|
+
font-size: 22px;
|
139
|
+
font-weight: 600;
|
140
|
+
color: #000;
|
141
|
+
}
|
142
|
+
|
143
|
+
.serachSection {
|
144
|
+
height: auto;
|
145
|
+
}
|
146
|
+
|
147
|
+
|
148
|
+
.letter-close-button-commonPage {
|
149
|
+
position: absolute;
|
150
|
+
right: 300px;
|
151
|
+
top: 24px;
|
152
|
+
font-size: 15px;
|
153
|
+
cursor: pointer;
|
154
|
+
display: none;
|
155
|
+
}
|
156
|
+
|
157
|
+
.ltr-cls-btn-commonPage {
|
158
|
+
display: block;
|
159
|
+
}
|
160
|
+
|
161
|
+
.tab_link_wrapper {
|
162
|
+
display: flex;
|
163
|
+
width: 100%;
|
164
|
+
justify-content: center;
|
165
|
+
background: var(--black-color);
|
166
|
+
border-radius: 40px;
|
167
|
+
margin: 10px 0px;
|
168
|
+
;
|
169
|
+
padding: 10px;
|
170
|
+
/* border: 2px solid var(--black-color); */
|
171
|
+
}
|
172
|
+
|
173
|
+
.tab_link_wrapper .flex-row {
|
174
|
+
-ms-flex-direction: row !important;
|
175
|
+
flex-direction: row !important;
|
176
|
+
display: flex;
|
177
|
+
overflow: hidden;
|
178
|
+
margin: 0 25px;
|
179
|
+
}
|
180
|
+
|
181
|
+
.tab_link_wrapper #next {
|
182
|
+
background: url('/assets/images/next.webp');
|
183
|
+
background-size: cover;
|
184
|
+
width: 21px;
|
185
|
+
height: 21px;
|
186
|
+
object-fit: cover;
|
187
|
+
padding: 3px;
|
188
|
+
border: none;
|
189
|
+
position: absolute;
|
190
|
+
top: 6px;
|
191
|
+
right: 10px;
|
192
|
+
}
|
193
|
+
|
194
|
+
.tab_link_wrapper #prev {
|
195
|
+
background: url('/assets/images/prev.webp');
|
196
|
+
background-size: cover;
|
197
|
+
width: 21px;
|
198
|
+
height: 21px;
|
199
|
+
object-fit: cover;
|
200
|
+
padding: 3px;
|
201
|
+
border: none;
|
202
|
+
position: absolute;
|
203
|
+
top: 6px;
|
204
|
+
left: 10px;
|
205
|
+
}
|
206
|
+
|
207
|
+
.active-tab {
|
208
|
+
border-bottom: solid 3px var(--primary-color) !important;
|
209
|
+
}
|
210
|
+
|
211
|
+
.tab_link_wrapper .tab_link {
|
212
|
+
font-size: 15px;
|
213
|
+
font-weight: 900;
|
214
|
+
margin: 0 5px;
|
215
|
+
padding-top: 5px;
|
216
|
+
border: none;
|
217
|
+
outline: none;
|
218
|
+
background-color: inherit;
|
219
|
+
color: white
|
220
|
+
}
|
221
|
+
|
222
|
+
/* advanced filter and sorting css */
|
223
|
+
.Advancedbtn .filter_count {
|
224
|
+
width: 20px;
|
225
|
+
color: white;
|
226
|
+
height: 20px;
|
227
|
+
text-align: center;
|
228
|
+
background-color: #808080;
|
229
|
+
padding-top: 2px;
|
230
|
+
border-radius: 50%;
|
231
|
+
margin-right: 1px;
|
232
|
+
position: relative;
|
233
|
+
left: 150px;
|
234
|
+
}
|
235
|
+
|
236
|
+
.Advancedbtn .filterButton {
|
237
|
+
background: #f8f9fa;
|
238
|
+
box-shadow: 0 0 3px #343a4063;
|
239
|
+
width: 190px;
|
240
|
+
border-radius: 10px;
|
241
|
+
border: none;
|
242
|
+
outline: none;
|
243
|
+
font-weight: 900;
|
244
|
+
font-size: 13px;
|
245
|
+
padding: 8.5px;
|
246
|
+
text-align: left;
|
247
|
+
}
|
248
|
+
|
249
|
+
.Advancedbtn .angle-arrow {
|
250
|
+
background: url(../images/angle-arrow-down.svg) no-repeat;
|
251
|
+
background-size: contain;
|
252
|
+
width: 10px;
|
253
|
+
height: 20px;
|
254
|
+
font-weight: 900;
|
255
|
+
position: absolute;
|
256
|
+
top: 20px;
|
257
|
+
right: 5px;
|
258
|
+
margin: -3px 0;
|
259
|
+
}
|
260
|
+
|
261
|
+
|
262
|
+
/* .fillterWrapper .same {
|
245
263
|
margin-bottom: 10px;
|
246
264
|
} */
|
247
265
|
/*
|
@@ -249,257 +267,266 @@
|
|
249
267
|
background: url("/assets/images/close-btn.svg") no-repeat;
|
250
268
|
background-position: 95% 50%;
|
251
269
|
} */
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
background: #f8f9fa;
|
257
|
-
border: solid 1px var(--black-color);
|
258
|
-
box-shadow: 2px 2px 1px 0px var(--black-color);
|
259
|
-
word-wrap: normal;
|
260
|
-
width: 190px;
|
261
|
-
border-radius: 10px;
|
262
|
-
cursor: pointer;
|
263
|
-
padding: 10px;
|
264
|
-
text-align: left;
|
265
|
-
color: #1c1107;
|
266
|
-
font-size: 13px;
|
267
|
-
font-weight: 600;
|
268
|
-
font-stretch: normal;
|
269
|
-
font-style: normal;
|
270
|
-
outline: none;
|
271
|
-
}
|
272
|
-
.length-select{
|
270
|
+
|
271
|
+
|
272
|
+
.sort-select,
|
273
|
+
#select_dropDown {
|
273
274
|
background: #f8f9fa;
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
#
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
.
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
275
|
+
border: solid 1px var(--black-color);
|
276
|
+
box-shadow: 2px 2px 1px 0px var(--black-color);
|
277
|
+
word-wrap: normal;
|
278
|
+
width: 190px;
|
279
|
+
border-radius: 10px;
|
280
|
+
cursor: pointer;
|
281
|
+
padding: 10px;
|
282
|
+
text-align: left;
|
283
|
+
color: #1c1107;
|
284
|
+
font-size: 13px;
|
285
|
+
font-weight: 600;
|
286
|
+
font-stretch: normal;
|
287
|
+
font-style: normal;
|
288
|
+
outline: none;
|
289
|
+
}
|
290
|
+
|
291
|
+
.length-select {
|
292
|
+
background: #f8f9fa;
|
293
|
+
border: solid 1px var(--black-color);
|
294
|
+
box-shadow: 2px 2px 1px 0px var(--black-color);
|
295
|
+
word-wrap: normal;
|
296
|
+
width: 190px;
|
297
|
+
border-radius: 10px;
|
298
|
+
cursor: pointer;
|
299
|
+
padding: 10px;
|
300
|
+
text-align: left;
|
301
|
+
color: #1c1107;
|
302
|
+
font-size: 13px;
|
303
|
+
font-weight: 600;
|
304
|
+
font-stretch: normal;
|
305
|
+
font-style: normal;
|
306
|
+
outline: none;
|
307
|
+
}
|
308
|
+
|
309
|
+
/* result data css */
|
310
|
+
#home_page_search_result {
|
311
|
+
padding: 10px;
|
312
|
+
font-size: 12px;
|
313
|
+
}
|
314
|
+
|
315
|
+
#home_page_search_result:hover {
|
316
|
+
text-decoration: underline !important;
|
317
|
+
}
|
318
|
+
|
319
|
+
.wordCount {
|
320
|
+
text-indent: 10px;
|
321
|
+
font-size: 18px;
|
322
|
+
}
|
323
|
+
|
324
|
+
.filterSortedIcons {
|
325
|
+
flex-basis: 11%;
|
326
|
+
display: flex;
|
327
|
+
font-size: 20px;
|
328
|
+
gap: 20px;
|
329
|
+
cursor: pointer;
|
330
|
+
display: none
|
331
|
+
}
|
332
|
+
|
333
|
+
.allGroupWords {
|
334
|
+
background-color: white !important;
|
335
|
+
width: auto;
|
336
|
+
height: auto;
|
337
|
+
border-radius: 15px;
|
338
|
+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
|
339
|
+
margin: 10px 0;
|
340
|
+
border: 2px solid var(--black-color)
|
341
|
+
}
|
342
|
+
|
343
|
+
.allGroupWords>.wordListHeading {
|
344
|
+
background: var(--black-color);
|
345
|
+
padding: 10px 0px 5px 25px;
|
346
|
+
border-top-right-radius: 13px;
|
347
|
+
border-top-left-radius: 13px;
|
348
|
+
color: #fff;
|
349
|
+
}
|
350
|
+
|
351
|
+
.wordListHeading>h3 {
|
352
|
+
font-size: 20px;
|
353
|
+
font-weight: 600;
|
354
|
+
}
|
355
|
+
|
356
|
+
.wordList {
|
357
|
+
padding: 15px;
|
358
|
+
}
|
359
|
+
|
360
|
+
.wordList>ul {
|
361
|
+
display: inline-flex;
|
362
|
+
width: 100%;
|
363
|
+
flex-wrap: wrap;
|
364
|
+
}
|
365
|
+
|
366
|
+
.fillterWrapper input {
|
347
367
|
padding: 10px !important;
|
348
368
|
font-size: 14px;
|
349
369
|
width: 140px;
|
350
|
-
|
351
|
-
|
370
|
+
}
|
371
|
+
|
372
|
+
.fillterWrapper .filter-tooltip img {
|
352
373
|
width: 22px;
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
374
|
+
}
|
375
|
+
|
376
|
+
.wordList>ul li {
|
377
|
+
|
378
|
+
padding: 8px 0;
|
379
|
+
background: #f8f9fa;
|
380
|
+
border-radius: 5px;
|
381
|
+
margin: 6px 6px;
|
382
|
+
width: auto;
|
383
|
+
min-width: 100px;
|
384
|
+
text-align: center;
|
385
|
+
border: solid 1px var(--black-color);
|
386
|
+
box-shadow: 2px 2px 1px 0px var(--black-color);
|
387
|
+
}
|
388
|
+
|
389
|
+
.wordList .anchor__style {
|
390
|
+
color: #000 !important;
|
391
|
+
font-size: 15px;
|
392
|
+
text-decoration: none !important;
|
393
|
+
font-weight: 600;
|
394
|
+
}
|
395
|
+
|
396
|
+
.wordList .anchor__style .highlight {
|
397
|
+
color: #ff0000 !important;
|
398
|
+
}
|
399
|
+
|
400
|
+
.points {
|
401
|
+
color: #73716e;
|
402
|
+
font-weight: 600;
|
403
|
+
}
|
404
|
+
|
405
|
+
.errorMsg {
|
406
|
+
text-align: center;
|
407
|
+
font-size: 20px;
|
408
|
+
color: red;
|
409
|
+
font-weight: 800;
|
410
|
+
}
|
411
|
+
|
412
|
+
/* close */
|
413
|
+
|
414
|
+
|
415
|
+
@media (max-width: 768px) {
|
416
|
+
|
417
|
+
/* result page navbar, closebtn, heading css for mobile */
|
418
|
+
.allGroupWords,
|
419
|
+
.allGroupWords>.wordListHeading {
|
398
420
|
border-radius: 0px;
|
399
421
|
border: none;
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
422
|
+
}
|
423
|
+
|
424
|
+
.result_navbar_section {
|
425
|
+
padding: 1.2rem 15px !important;
|
426
|
+
}
|
427
|
+
|
428
|
+
.nav_menu_bar {
|
429
|
+
display: none;
|
430
|
+
}
|
431
|
+
|
432
|
+
.result_navbar_section .mobile_bars {
|
433
|
+
display: block;
|
434
|
+
position: absolute;
|
435
|
+
top: 0px;
|
436
|
+
margin: 0;
|
437
|
+
left: 30px;
|
438
|
+
z-index: 99;
|
439
|
+
}
|
440
|
+
|
441
|
+
.letter-close-button-commonPage {
|
419
442
|
right: 45%;
|
420
443
|
top: 17px;
|
421
444
|
font-size: 15px;
|
422
|
-
|
423
|
-
|
445
|
+
}
|
446
|
+
|
447
|
+
.letter-close-button-commonPage svg {
|
424
448
|
width: 30px;
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
449
|
+
}
|
450
|
+
|
451
|
+
.pageHeading>.result_heading {
|
452
|
+
font-size: 1.8rem;
|
453
|
+
padding-left: 25px;
|
454
|
+
}
|
455
|
+
|
456
|
+
/* length selector css for mobile */
|
457
|
+
|
458
|
+
.tab_link_wrapper .flex-row {
|
459
|
+
margin: 0 15px;
|
460
|
+
}
|
461
|
+
|
462
|
+
.tab_link_wrapper .tab_link {
|
463
|
+
font-size: 12px;
|
464
|
+
}
|
465
|
+
|
466
|
+
.tab_link_wrapper #prev {
|
467
|
+
top: 6px;
|
468
|
+
left: 5px;
|
469
|
+
width: 16px;
|
470
|
+
height: 16px;
|
471
|
+
}
|
472
|
+
|
473
|
+
.tab_link_wrapper #next {
|
474
|
+
top: 6px;
|
475
|
+
right: 5px;
|
476
|
+
width: 16px;
|
477
|
+
height: 16px;
|
478
|
+
}
|
479
|
+
|
480
|
+
/* advanced filter and sorting css for mobile */
|
481
|
+
.angle-arrow {
|
482
|
+
display: none;
|
483
|
+
}
|
484
|
+
|
485
|
+
.Advancedbtn .filterButton {
|
486
|
+
display: none;
|
487
|
+
}
|
488
|
+
|
489
|
+
.fillterWrapper {
|
490
|
+
right: auto;
|
491
|
+
position: fixed;
|
492
|
+
left: 0px;
|
493
|
+
top: 135px;
|
494
|
+
width: 100%;
|
495
|
+
}
|
496
|
+
|
497
|
+
.Advancedbtn .filter_count {
|
498
|
+
display: none !important;
|
499
|
+
}
|
500
|
+
|
501
|
+
.filterSortedIcons {
|
502
|
+
display: flex;
|
503
|
+
gap: 8px;
|
504
|
+
}
|
505
|
+
|
506
|
+
.fillterWrapper {
|
482
507
|
position: static;
|
483
|
-
|
484
|
-
|
508
|
+
}
|
509
|
+
|
510
|
+
.filters {
|
485
511
|
flex-direction: column;
|
486
|
-
|
487
|
-
|
512
|
+
}
|
513
|
+
|
514
|
+
#sort-select {
|
488
515
|
margin-top: 1rem;
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
516
|
+
}
|
517
|
+
|
518
|
+
/* result data css for mobile */
|
519
|
+
.pad {
|
520
|
+
padding-bottom: 50px;
|
521
|
+
}
|
522
|
+
|
523
|
+
.wordCount {
|
524
|
+
font-size: 1.3rem;
|
525
|
+
}
|
526
|
+
|
527
|
+
}
|
528
|
+
|
529
|
+
.tbl {
|
503
530
|
margin-bottom: 50px;
|
504
531
|
width: 80%;
|
505
532
|
margin-left: 100px;
|
@@ -515,7 +542,7 @@
|
|
515
542
|
|
516
543
|
@media (max-width:992px) {
|
517
544
|
.tbl {
|
518
|
-
|
519
|
-
|
545
|
+
margin-left: 0 !important;
|
546
|
+
width: 100% !important;
|
520
547
|
}
|
521
548
|
}
|