word-games-theme 1.8.3 → 1.8.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/css/featurePage.css +38 -14
- data/assets/css/resultPage.css +13 -0
- 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: 4e6db3892c9497c0eebd8a59254df6a234164bedb089c227296f1b825a65b7d4
|
4
|
+
data.tar.gz: 19a54bb42744b249ddbaa1f5ee5fb6df4b081fa39041d003003ce17ec442dfad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e05bed4e8f60e6548c742ef92d4cafc6f3c18650bbb5c28bbf3c42edee9e490e74bcb19a40d895acf2557c511abed3f551376a48aebdab35e519ba037fed8ecc
|
7
|
+
data.tar.gz: 6a6086b868b2f60557899a6cb634577dc57edfcf3c7db8107bd65ea0c2dfc42e60cee074d60c6b0d7533c00414508ef198cc62ce3a145e6296fe1bc537c75f86
|
data/assets/css/featurePage.css
CHANGED
@@ -449,6 +449,28 @@ header {
|
|
449
449
|
font-size: 3.8rem;
|
450
450
|
}
|
451
451
|
|
452
|
+
.navbar-nav {
|
453
|
+
margin-left: 14rem;
|
454
|
+
}
|
455
|
+
|
456
|
+
.navbar-nav .nav-item {
|
457
|
+
padding: 0 15px;
|
458
|
+
}
|
459
|
+
|
460
|
+
.navbar-nav .nav-link:hover {
|
461
|
+
color: var(--txtColor) !important;
|
462
|
+
transition: all 0.2s linear;
|
463
|
+
-webkit-transition: all 0.2s linear;
|
464
|
+
-moz-transition: all 0.2s linear;
|
465
|
+
}
|
466
|
+
|
467
|
+
.nav-link {
|
468
|
+
text-decoration: none !important;
|
469
|
+
font-size: 16px;
|
470
|
+
color: gray !important;
|
471
|
+
}
|
472
|
+
|
473
|
+
|
452
474
|
@media (max-width: 768px) {
|
453
475
|
.language-drop-down-item {
|
454
476
|
width: 100% !important;
|
@@ -499,17 +521,19 @@ header {
|
|
499
521
|
}
|
500
522
|
}
|
501
523
|
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
524
|
+
@media (max-width: 992px) {
|
525
|
+
.navbar-nav {
|
526
|
+
margin-left: 0rem;
|
527
|
+
}
|
528
|
+
|
529
|
+
.dropdown-menu.show {
|
530
|
+
display: block !important;
|
531
|
+
padding: 15px !important
|
532
|
+
}
|
533
|
+
|
534
|
+
.dropdown-item {
|
535
|
+
text-align: left;
|
536
|
+
font-weight: 600;
|
537
|
+
padding: 0.25rem 0;
|
538
|
+
}
|
539
|
+
}
|
data/assets/css/resultPage.css
CHANGED
@@ -251,6 +251,19 @@ body {
|
|
251
251
|
gap: 40px;
|
252
252
|
}
|
253
253
|
|
254
|
+
.navbar-nav .nav-link:hover {
|
255
|
+
color: var(--txtColor) !important;
|
256
|
+
transition: all 0.2s linear;
|
257
|
+
-webkit-transition: all 0.2s linear;
|
258
|
+
-moz-transition: all 0.2s linear;
|
259
|
+
}
|
260
|
+
|
261
|
+
.nav-link {
|
262
|
+
text-decoration: none !important;
|
263
|
+
font-size: 16px;
|
264
|
+
color: gray !important;
|
265
|
+
}
|
266
|
+
|
254
267
|
|
255
268
|
@media (max-width: 992px) {
|
256
269
|
.dropdown-item {
|