word-games-theme 1.8.5 → 1.8.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/footer/en/data.json +1 -1
- data/_data/header/en/data.json +174 -52
- data/_data/wordgames/en/five_letter_word_finder.json +449 -93
- data/_data/wordgames/en/root.json +11 -168
- data/_data/wordleSolver/en/resultData.json +2 -1
- data/_data/xyzPagesData/en/unscramble-letters-jumble.json +261 -103
- data/_includes/WordPointTables/table.html +1 -4
- data/_includes/autogenerated/content.html +1 -3
- data/_includes/footer/index.html +1 -1
- data/_includes/head/index.html +39 -9
- data/_includes/howto.html +1 -1
- data/_includes/repeat-letters.html +50 -186
- data/_includes/script.html +4 -2
- data/_includes/section/commonPage.html +13 -18
- data/_includes/section/{news.html → faq.html} +2 -2
- data/_includes/section/feature.html +4 -4
- data/_includes/section/home.html +50 -54
- data/_includes/section/wordGroup.html +2 -7
- data/_includes/section/xyzGroup.html +1 -1
- data/_includes/wordfinderstrategy/content.html +1 -5
- data/_includes/xyzpages/xyz.html +12 -8
- data/_layouts/allpages.html +0 -1
- data/_layouts/autogencontent.html +0 -3
- data/_layouts/default.html +1 -11
- data/_layouts/disclaimer.html +28 -0
- data/_layouts/page.html +0 -45
- data/_layouts/page2.html +0 -44
- data/_layouts/post.html +3 -2
- data/_layouts/privacyPolicy.html +27 -0
- data/_layouts/termAndCondition.html +28 -4
- data/_layouts/tools.html +7 -1
- data/_layouts/wordMeaning.html +25 -17
- data/_layouts/xyzpages.html +2 -6
- data/assets/css/blog.css +128 -212
- data/assets/css/bootstrap.min.css +2521 -524
- data/assets/css/content.css +34 -49
- data/assets/css/game.css +60 -57
- data/assets/css/multiple-word-anagram-solver.css +14 -15
- data/assets/css/style.css +533 -285
- data/assets/css/wordGroup.css +380 -17
- data/assets/css/wordleSolver.css +22 -22
- data/assets/css/wordsInCertainPosition.css +14 -29
- data/assets/images/wordswithletters-logo.webp +0 -0
- data/assets/js/adBlocker.js +0 -1
- data/assets/js/words-starting-with.js +0 -4
- metadata +4 -32
- data/_data/wordgames/ar/four_letter_word_finder.json +0 -196
- data/_data/wordgames/da/four_letter_word_finder.json +0 -196
- data/_data/wordgames/de/four_letter_word_finder.json +0 -196
- data/_data/wordgames/es/four_letter_word_finder.json +0 -196
- data/_data/wordgames/fr/four_letter_word_finder.json +0 -197
- data/_data/wordgames/id/four_letter_word_finder.json +0 -196
- data/_data/wordgames/it/four_letter_word_finder.json +0 -196
- data/_data/wordgames/ja/four_letter_word_finder.json +0 -196
- data/_data/wordgames/ko/four_letter_word_finder.json +0 -196
- data/_data/wordgames/nl/four_letter_word_finder.json +0 -196
- data/_data/wordgames/pl/four_letter_word_finder.json +0 -196
- data/_data/wordgames/pt/four_letter_word_finder.json +0 -196
- data/_data/wordgames/ru/four_letter_word_finder.json +0 -196
- data/_data/wordgames/sv/four_letter_word_finder.json +0 -196
- data/_data/wordgames/th/four_letter_word_finder.json +0 -196
- data/_data/wordgames/tr/four_letter_word_finder.json +0 -196
- data/_data/wordgames/uk/four_letter_word_finder.json +0 -196
- data/_data/wordgames/vi/four_letter_word_finder.json +0 -196
- data/_data/wordgames/zh/four_letter_word_finder.json +0 -196
- data/_data/wordgames/zh-TW/four_letter_word_finder.json +0 -196
- data/_includes/section/home2.html +0 -174
- data/_layouts/other-lang-scrabble.html +0 -170
- data/assets/css/advancedFilter.css +0 -215
- data/assets/css/feature.css +0 -58
- data/assets/css/footer.css +0 -161
- data/assets/css/home.css +0 -538
- data/assets/css/news.css +0 -48
- data/assets/css/testhome.css +0 -417
- data/assets/css/wordScrabble.css +0 -4
data/_layouts/wordMeaning.html
CHANGED
@@ -6,7 +6,6 @@
|
|
6
6
|
{% assign lang = page.lang %}
|
7
7
|
{% assign dataToShow = site.data[folderName][lang][file] %}
|
8
8
|
|
9
|
-
|
10
9
|
<head>
|
11
10
|
<!-- Mobile Specific Meta -->
|
12
11
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
@@ -29,45 +28,57 @@
|
|
29
28
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
|
30
29
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css">
|
31
30
|
|
32
|
-
<link rel="stylesheet" href="
|
33
|
-
<link rel="stylesheet" href="
|
34
|
-
<link rel="stylesheet" href="{{ '/assets/css/footer.css' | relative_url }}">
|
31
|
+
<link rel="stylesheet" href="/assets/css/home.css">
|
32
|
+
<link rel="stylesheet" href="/assets/css/style.css">
|
35
33
|
|
36
34
|
{%- include google-analytics.html -%}
|
37
35
|
|
38
|
-
|
39
36
|
<title>
|
40
37
|
{{dataToShow.title }}
|
41
38
|
</title>
|
42
39
|
|
40
|
+
<style>
|
41
|
+
/* dictonary css */
|
42
|
+
.dictionary-item {
|
43
|
+
padding: 5px 0;
|
44
|
+
}
|
43
45
|
|
46
|
+
.dictionary-item .font16px {
|
47
|
+
font-size: 16px;
|
48
|
+
font-weight: 500;
|
49
|
+
line-height: 1.19;
|
50
|
+
color: #1c1107;
|
51
|
+
}
|
44
52
|
|
45
|
-
|
46
|
-
|
47
|
-
|
53
|
+
.dictionary-item .found-word {
|
54
|
+
background: #2ec308;
|
55
|
+
color: #fff;
|
56
|
+
padding: 3px;
|
57
|
+
font-size: 15px;
|
58
|
+
}
|
59
|
+
|
60
|
+
.dictionary-item .word-score {
|
61
|
+
font-style: italic;
|
62
|
+
opacity: 0.7;
|
63
|
+
font-size: 14px;
|
48
64
|
}
|
49
65
|
|
66
|
+
|
50
67
|
.list-group-item {
|
51
68
|
background-color: transparent !important;
|
52
69
|
border: none !important
|
53
70
|
}
|
54
71
|
</style>
|
55
72
|
|
56
|
-
|
57
|
-
|
58
73
|
</head>
|
59
74
|
|
60
75
|
<body>
|
61
76
|
{%- include header/index.html -%}
|
62
|
-
|
63
|
-
|
64
77
|
{% assign folderName = page.folderName %}
|
65
78
|
{% assign file = page.fileName %}
|
66
79
|
{% assign lang = page.lang %}
|
67
80
|
{% assign dataToShow = site.data[folderName][lang][file] %}
|
68
81
|
|
69
|
-
|
70
|
-
|
71
82
|
<div style="padding-top: 100px;">
|
72
83
|
<div class="container">
|
73
84
|
<div class="pageHeading text-center">
|
@@ -149,10 +160,7 @@
|
|
149
160
|
|
150
161
|
|
151
162
|
{% include adBlocker/adBlocker.html %}
|
152
|
-
|
153
163
|
{%- include footer/index.html -%}
|
154
|
-
|
155
|
-
|
156
164
|
{%- include script.html -%}
|
157
165
|
<script src="/assets/js/scrabbleDictonary.js"></script>
|
158
166
|
</body>
|
data/_layouts/xyzpages.html
CHANGED
@@ -88,27 +88,23 @@
|
|
88
88
|
<body>
|
89
89
|
{%- include header/index.html -%}
|
90
90
|
|
91
|
-
<div id="ezoic-pub-ad-placeholder-109"> </div>
|
92
|
-
<div id="ezoic-pub-ad-placeholder-110"> </div>
|
93
|
-
|
94
|
-
|
95
91
|
{%- include xyzpages/xyz.html -%}
|
96
92
|
|
97
93
|
{% include section/feature.html %}
|
98
94
|
|
99
95
|
{%- if dataToShow.faqList -%}
|
100
96
|
{%- if dataToShow.faqList.first.Question !='' -%}
|
101
|
-
{% include section/
|
97
|
+
{% include section/faq.html %}
|
102
98
|
{% endif %}
|
103
99
|
{% endif %}
|
104
100
|
|
105
|
-
|
106
101
|
{%- include share/socialshare.html -%}
|
107
102
|
|
108
103
|
{% include adBlocker/adBlocker.html %}
|
109
104
|
|
110
105
|
{% include xyzpages/xyzFooter.html %}
|
111
106
|
|
107
|
+
<script defer src="/assets/js/xyz.js"></script>
|
112
108
|
{%- include script.html -%}
|
113
109
|
</body>
|
114
110
|
|
data/assets/css/blog.css
CHANGED
@@ -1,19 +1,4 @@
|
|
1
|
-
|
2
|
-
scroll-behavior: smooth;
|
3
|
-
font-size: 62.5%;
|
4
|
-
}
|
5
|
-
|
6
|
-
body {
|
7
|
-
font-family: 'Open Sans', sans-serif !important;
|
8
|
-
}
|
9
|
-
|
10
|
-
.bars {
|
11
|
-
position: relative;
|
12
|
-
top: 3px;
|
13
|
-
color: #000;
|
14
|
-
font-size: 35px;
|
15
|
-
}
|
16
|
-
|
1
|
+
/* default css */
|
17
2
|
a {
|
18
3
|
text-decoration: none !important;
|
19
4
|
}
|
@@ -23,16 +8,18 @@ img {
|
|
23
8
|
height: 100%;
|
24
9
|
}
|
25
10
|
|
26
|
-
|
27
|
-
|
11
|
+
|
12
|
+
html {
|
13
|
+
scroll-behavior: smooth;
|
14
|
+
font-size: 62.5%;
|
28
15
|
}
|
29
16
|
|
30
|
-
|
31
|
-
|
32
|
-
width: 50px;
|
33
|
-
border-radius: 50%;
|
17
|
+
body {
|
18
|
+
font-family: 'Open Sans', sans-serif !important;
|
34
19
|
}
|
35
20
|
|
21
|
+
|
22
|
+
/* header and navbar css */
|
36
23
|
header {
|
37
24
|
width: 100%;
|
38
25
|
position: relative;
|
@@ -47,6 +34,17 @@ header {
|
|
47
34
|
z-index: 999;
|
48
35
|
}
|
49
36
|
|
37
|
+
.navbar-dark .navbar-toggler {
|
38
|
+
outline: none !important;
|
39
|
+
}
|
40
|
+
|
41
|
+
.navbar-toggler .bars {
|
42
|
+
position: relative;
|
43
|
+
top: 3px;
|
44
|
+
color: #000;
|
45
|
+
font-size: 35px;
|
46
|
+
}
|
47
|
+
|
50
48
|
.navbar-nav {
|
51
49
|
align-items: center;
|
52
50
|
}
|
@@ -63,10 +61,6 @@ header {
|
|
63
61
|
max-width: 40px;
|
64
62
|
}
|
65
63
|
|
66
|
-
.navbar-dark .navbar-toggler {
|
67
|
-
outline: none !important;
|
68
|
-
}
|
69
|
-
|
70
64
|
.navbar-nav .nav-item {
|
71
65
|
padding: 0 10px;
|
72
66
|
}
|
@@ -78,35 +72,34 @@ header {
|
|
78
72
|
-moz-transition: all 0.2s linear;
|
79
73
|
}
|
80
74
|
|
81
|
-
.nav-link {
|
75
|
+
.navbar-nav .nav-link {
|
82
76
|
text-decoration: none !important;
|
83
77
|
font-size: 16px;
|
84
78
|
color: gray !important;
|
85
79
|
}
|
86
80
|
|
87
|
-
|
81
|
+
|
82
|
+
/* section post css */
|
83
|
+
.section_post {
|
84
|
+
margin-top: 100px;
|
85
|
+
}
|
86
|
+
|
87
|
+
.card-body .anchor_link {
|
88
88
|
text-decoration: none !important;
|
89
89
|
color: #343a40 !important;
|
90
90
|
}
|
91
91
|
|
92
|
-
.anchor_link:hover {
|
92
|
+
.card-body .anchor_link:hover {
|
93
93
|
transition: all 0.5s linear;
|
94
94
|
color: #000 !important;
|
95
95
|
}
|
96
96
|
|
97
|
-
.anchor_link .card-title {
|
97
|
+
.card-body .anchor_link .card-title {
|
98
98
|
font-weight: 600;
|
99
99
|
font-size: 22px;
|
100
100
|
line-height: 1.3;
|
101
101
|
}
|
102
102
|
|
103
|
-
.text_size {
|
104
|
-
color: rgba(0, 0, 0, 0.44);
|
105
|
-
font-size: 15px;
|
106
|
-
line-height: 1.6;
|
107
|
-
font-weight: 400;
|
108
|
-
}
|
109
|
-
|
110
103
|
.card-footer {
|
111
104
|
border: none;
|
112
105
|
}
|
@@ -140,11 +133,53 @@ header {
|
|
140
133
|
margin-top: 8px;
|
141
134
|
}
|
142
135
|
|
143
|
-
.post-date {
|
136
|
+
.wrapfooter .post-date {
|
144
137
|
color: rgba(0, 0, 0, 0.44);
|
145
138
|
font-size: 13px;
|
146
139
|
}
|
147
140
|
|
141
|
+
/* pagination css */
|
142
|
+
.bottompagination .pointerup {
|
143
|
+
margin-bottom: -9px;
|
144
|
+
margin-left: 49%;
|
145
|
+
font-size: 30px;
|
146
|
+
}
|
147
|
+
|
148
|
+
.bottompagination .pointerup i.fa {
|
149
|
+
color: #eaeaea;
|
150
|
+
}
|
151
|
+
|
152
|
+
.bottompagination span.navigation {
|
153
|
+
display: block;
|
154
|
+
font-size: 0.93rem;
|
155
|
+
padding: 15px 0 0 0;
|
156
|
+
text-align: center;
|
157
|
+
margin-bottom: 0rem;
|
158
|
+
color: #999;
|
159
|
+
border-top: 1px solid #ddd;
|
160
|
+
}
|
161
|
+
|
162
|
+
.blog-pagination {
|
163
|
+
text-align: center;
|
164
|
+
font-size: 14px;
|
165
|
+
}
|
166
|
+
|
167
|
+
.blog-pagination a,
|
168
|
+
.blog-pagination span {
|
169
|
+
padding: 7px 10px;
|
170
|
+
margin-left: -2px;
|
171
|
+
margin-right: -2px;
|
172
|
+
background-color: #ffffff;
|
173
|
+
display: inline-block;
|
174
|
+
text-decoration: none;
|
175
|
+
}
|
176
|
+
|
177
|
+
.blog-pagination a:hover {
|
178
|
+
background-color: #f1f1f1;
|
179
|
+
color: #333;
|
180
|
+
}
|
181
|
+
|
182
|
+
/* explore box css */
|
148
183
|
.explore {
|
149
184
|
padding: 25px;
|
150
185
|
color: #fff;
|
@@ -170,7 +205,7 @@ header {
|
|
170
205
|
flex-wrap: wrap;
|
171
206
|
}
|
172
207
|
|
173
|
-
.cat {
|
208
|
+
.explore .cat {
|
174
209
|
display: inline-block;
|
175
210
|
padding: 5px 10px;
|
176
211
|
text-decoration: none !important;
|
@@ -182,27 +217,7 @@ header {
|
|
182
217
|
margin: 0 15px;
|
183
218
|
}
|
184
219
|
|
185
|
-
|
186
|
-
.blog-pagination span {
|
187
|
-
padding: 7px 10px;
|
188
|
-
margin-left: -2px;
|
189
|
-
margin-right: -2px;
|
190
|
-
background-color: #ffffff;
|
191
|
-
display: inline-block;
|
192
|
-
text-decoration: none;
|
193
|
-
}
|
194
|
-
|
195
|
-
.blog-pagination a:hover {
|
196
|
-
background-color: #f1f1f1;
|
197
|
-
color: #333;
|
198
|
-
}
|
199
|
-
|
200
|
-
.blog-pagination {
|
201
|
-
text-align: center;
|
202
|
-
font-size: 14px;
|
203
|
-
}
|
204
|
-
|
205
|
-
|
220
|
+
/* categories page css */
|
206
221
|
.section-title h2 {
|
207
222
|
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
208
223
|
font-weight: 700;
|
@@ -217,46 +232,8 @@ header {
|
|
217
232
|
margin-bottom: -1px;
|
218
233
|
}
|
219
234
|
|
220
|
-
.post-content {
|
221
|
-
font-size: 20px;
|
222
|
-
}
|
223
|
-
|
224
|
-
.socialIons>.item-lists2 {
|
225
|
-
display: flex;
|
226
|
-
width: 100%;
|
227
|
-
}
|
228
|
-
|
229
|
-
.socialIons>.item-lists2>li:nth-child(1) {
|
230
|
-
margin: 0;
|
231
|
-
}
|
232
|
-
|
233
|
-
.socialIons>.item-lists2>li {
|
234
|
-
list-style: none;
|
235
|
-
padding: 8px 0px;
|
236
|
-
margin: 0 auto;
|
237
|
-
}
|
238
|
-
|
239
|
-
.socialIons .item-lists2 li a {
|
240
|
-
color: rgba(95, 21, 21, 0.44);
|
241
|
-
fill: rgba(0, 0, 0, 0.44);
|
242
|
-
font-size: 15px;
|
243
|
-
cursor: pointer;
|
244
|
-
text-decoration: none !important;
|
245
|
-
}
|
246
|
-
|
247
|
-
.socialIons>.item-lists2>li i {
|
248
|
-
font-size: 18px;
|
249
|
-
color: rgba(0, 0, 0, 0.44);
|
250
|
-
fill: rgba(0, 0, 0, 0.44);
|
251
|
-
}
|
252
|
-
|
253
|
-
.sep {
|
254
|
-
height: 1px;
|
255
|
-
width: 20px;
|
256
|
-
background: #999;
|
257
|
-
margin: 3px auto;
|
258
|
-
}
|
259
235
|
|
236
|
+
/* post page content css */
|
260
237
|
.author_image .author-thumb {
|
261
238
|
width: 60px;
|
262
239
|
height: 60px;
|
@@ -290,26 +267,41 @@ header {
|
|
290
267
|
line-height: 20px;
|
291
268
|
}
|
292
269
|
|
293
|
-
.
|
294
|
-
|
270
|
+
.post-content {
|
271
|
+
font-size: 20px;
|
295
272
|
}
|
296
273
|
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
274
|
+
/* social icons css */
|
275
|
+
.socialIons>.item-lists2 {
|
276
|
+
display: flex;
|
277
|
+
width: 100%;
|
301
278
|
}
|
302
279
|
|
303
|
-
.
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
280
|
+
.socialIons>.item-lists2>li:nth-child(1) {
|
281
|
+
margin: 0;
|
282
|
+
}
|
283
|
+
|
284
|
+
.socialIons>.item-lists2>li {
|
285
|
+
list-style: none;
|
286
|
+
padding: 8px 0px;
|
287
|
+
margin: 0 auto;
|
288
|
+
}
|
289
|
+
|
290
|
+
.socialIons .item-lists2 li a {
|
291
|
+
color: rgba(95, 21, 21, 0.44);
|
292
|
+
fill: rgba(0, 0, 0, 0.44);
|
293
|
+
font-size: 15px;
|
294
|
+
cursor: pointer;
|
295
|
+
text-decoration: none !important;
|
311
296
|
}
|
312
297
|
|
298
|
+
.socialIons>.item-lists2>li i {
|
299
|
+
font-size: 18px;
|
300
|
+
color: rgba(0, 0, 0, 0.44);
|
301
|
+
fill: rgba(0, 0, 0, 0.44);
|
302
|
+
}
|
303
|
+
|
304
|
+
/* post page pagination css */
|
313
305
|
.pagination {
|
314
306
|
display: -ms-flexbox;
|
315
307
|
display: flex;
|
@@ -322,7 +314,7 @@ header {
|
|
322
314
|
margin-bottom: 30px;
|
323
315
|
}
|
324
316
|
|
325
|
-
.pageUrl {
|
317
|
+
.pagination .pageUrl {
|
326
318
|
color: green;
|
327
319
|
font-size: 12px;
|
328
320
|
font-weight: 900;
|
@@ -330,29 +322,15 @@ header {
|
|
330
322
|
margin-right: 10px;
|
331
323
|
}
|
332
324
|
|
333
|
-
.pageUrl:hover {
|
325
|
+
.pagination .pageUrl:hover {
|
334
326
|
text-decoration: none;
|
335
327
|
color: green;
|
336
328
|
}
|
337
329
|
|
338
330
|
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
font-weight: 700;
|
343
|
-
line-height: 1;
|
344
|
-
color: #000;
|
345
|
-
text-shadow: 0 1px 0 #fff;
|
346
|
-
opacity: 0.5;
|
347
|
-
border: none;
|
348
|
-
background: transparent;
|
349
|
-
}
|
350
|
-
|
351
|
-
.close:focus {
|
352
|
-
outline: none !important;
|
353
|
-
}
|
354
|
-
|
355
|
-
.related_post_heading {
|
331
|
+
/* related and recent post heading css */
|
332
|
+
.related_post_heading,
|
333
|
+
.recent_post_heading {
|
356
334
|
width: 100%;
|
357
335
|
font-size: 35px;
|
358
336
|
/* text-align: center; */
|
@@ -367,42 +345,27 @@ header {
|
|
367
345
|
display: inline-block;
|
368
346
|
}
|
369
347
|
|
370
|
-
|
371
|
-
width: 100%;
|
372
|
-
font-size: 46px;
|
373
|
-
text-align: left;
|
374
|
-
font-weight: 800;
|
375
|
-
font-stretch: normal;
|
376
|
-
font-style: normal;
|
377
|
-
line-height: 1.24;
|
378
|
-
letter-spacing: normal;
|
379
|
-
color: rgb(17, 48, 78);
|
380
|
-
margin-bottom: 45px;
|
381
|
-
padding-top: 75px;
|
382
|
-
display: inline-block;
|
383
|
-
}
|
348
|
+
@media (max-width: 768px) {
|
384
349
|
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
z-index: 99999;
|
390
|
-
/* width: 160px;
|
391
|
-
height: 100vh; */
|
392
|
-
}
|
350
|
+
.navbar {
|
351
|
+
padding-left: 7% !important;
|
352
|
+
padding-right: 7% !important;
|
353
|
+
}
|
393
354
|
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
right: 0;
|
398
|
-
z-index: 99999;
|
399
|
-
/* width: 160px;
|
400
|
-
height: 100vh; */
|
401
|
-
}
|
355
|
+
.navbar-nav {
|
356
|
+
align-items: unset;
|
357
|
+
}
|
402
358
|
|
403
|
-
|
404
|
-
|
405
|
-
|
359
|
+
.nav-item {
|
360
|
+
padding: 0 !important;
|
361
|
+
}
|
362
|
+
|
363
|
+
.author-meta {
|
364
|
+
padding-left: 15px;
|
365
|
+
}
|
366
|
+
|
367
|
+
.small_description {
|
368
|
+
font-size: 25px;
|
406
369
|
}
|
407
370
|
|
408
371
|
.socialIons>.item-lists2 {
|
@@ -419,14 +382,6 @@ header {
|
|
419
382
|
margin: 0;
|
420
383
|
}
|
421
384
|
|
422
|
-
.navbar-nav {
|
423
|
-
align-items: unset;
|
424
|
-
}
|
425
|
-
|
426
|
-
.nav-item {
|
427
|
-
padding: 0 !important;
|
428
|
-
}
|
429
|
-
|
430
385
|
.socialIons>.item-lists2 {
|
431
386
|
flex-direction: row;
|
432
387
|
align-items: center;
|
@@ -437,44 +392,5 @@ header {
|
|
437
392
|
margin: 0;
|
438
393
|
}
|
439
394
|
|
440
|
-
.sep {
|
441
|
-
margin: 0;
|
442
|
-
}
|
443
|
-
|
444
|
-
.author-meta {
|
445
|
-
padding-left: 15px;
|
446
|
-
}
|
447
395
|
|
448
|
-
.comments-count {
|
449
|
-
margin: 18px 0;
|
450
|
-
text-align: left;
|
451
|
-
}
|
452
|
-
|
453
|
-
.navbar {
|
454
|
-
padding-left: 7% !important;
|
455
|
-
padding-right: 7% !important;
|
456
|
-
}
|
457
|
-
|
458
|
-
.title,
|
459
|
-
.description {
|
460
|
-
width: 100% !important;
|
461
|
-
text-align: center;
|
462
|
-
}
|
463
|
-
|
464
|
-
.angle-arrow {
|
465
|
-
position: fixed;
|
466
|
-
bottom: 4px;
|
467
|
-
right: 32px;
|
468
|
-
top: auto;
|
469
|
-
z-index: 999;
|
470
|
-
}
|
471
|
-
|
472
|
-
.alertbar form {
|
473
|
-
display: block;
|
474
|
-
margin-top: 10px;
|
475
|
-
}
|
476
|
-
|
477
|
-
.small_description {
|
478
|
-
font-size: 25px;
|
479
|
-
}
|
480
396
|
}
|