word-games-theme 0.8.6 → 0.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/header/index.html +1 -1
- data/_includes/header/resultHeader.html +1 -1
- data/assets/css/home.css +1 -1
- data/assets/css/style.css +7 -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: 2f4fa0c00a455368bf38beef638f1302e50c0de095a2958dec2088679c143525
|
|
4
|
+
data.tar.gz: 4d948f161eea9a7390e57b839688b541b644f93932a78d55d9f83fba466da9e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e233b0012bc23f82c3ed1c9f84f88f21bb7bee74f8548dab92d5e5e59bc660c7847dfce46f213cf1a7126feeb5767ef44f2e99ccbadbcd0ef0f972ccacae532b
|
|
7
|
+
data.tar.gz: 7cd3b870128a9114060293f10b4cc171223ed16ef0b0b0f02e6b0727fdedfa5371dcf0e99f5f6ab378f88017fa85cbd420ea9206c609b08cb04f97bc64026e0f
|
data/_includes/header/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<!-- header starts -->
|
|
6
6
|
<header id="header">
|
|
7
7
|
<!-- navigation startss -->
|
|
8
|
-
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
8
|
+
<nav class="navbar-section navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
9
9
|
|
|
10
10
|
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
|
11
11
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<!-- header starts -->
|
|
6
6
|
<header id="resultHeader">
|
|
7
7
|
<!-- navigation startss -->
|
|
8
|
-
<nav class="navbar navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
8
|
+
<nav class="navbar-section navbar-expand-lg navbar-dark" style="background: {{CustomColor.navbarBg}}">
|
|
9
9
|
|
|
10
10
|
<a class="navbar-brand" href="/" title="{{dataToShow.tooltip}}">
|
|
11
11
|
<img src="{{ site.favicon | relative_url }}" alt="{{site.name}}" style="width:35px; height:35px;">
|
data/assets/css/home.css
CHANGED
data/assets/css/style.css
CHANGED
|
@@ -31,13 +31,18 @@ header {
|
|
|
31
31
|
position: relative;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
.navbar {
|
|
34
|
+
.navbar-section {
|
|
35
35
|
width: 100%;
|
|
36
36
|
padding: 1.2rem 10rem !important;
|
|
37
37
|
position: fixed;
|
|
38
38
|
top: 0;
|
|
39
39
|
left: 0;
|
|
40
40
|
z-index: 999;
|
|
41
|
+
display: flex;
|
|
42
|
+
justify-content: space-between;
|
|
43
|
+
flex-wrap: wrap;
|
|
44
|
+
-ms-flex-align: center;
|
|
45
|
+
align-items: center;
|
|
41
46
|
}
|
|
42
47
|
.navbar-brand {
|
|
43
48
|
font-size: 2.2rem;
|
|
@@ -240,7 +245,7 @@ header {
|
|
|
240
245
|
}
|
|
241
246
|
|
|
242
247
|
@media (max-width: 768px) {
|
|
243
|
-
.navbar {
|
|
248
|
+
.navbar-section {
|
|
244
249
|
padding: 1.2rem 15px !important;
|
|
245
250
|
}
|
|
246
251
|
|