appscms-tools-theme 0.2.1 → 0.2.2
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/_layouts/blog.html +5 -2
- data/assets/css/blog.css +35 -11
- 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: e0a332d5a035ad29f04a4d688b4919d6398318363008e114c5aecfbabb979fa4
|
|
4
|
+
data.tar.gz: f408416b5b7adcef1b45e2698b4bf2086e8181be93a7f98e0823b1f683d2353c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34430b46bdfbfc3eedd4adb67497c59576299d074125f0aab5bac5ebc639827f5b3e4865759c5ffd3b3b4556ff3c5cda18b07ccac77ea2a1b41d0fd3cb63c895
|
|
7
|
+
data.tar.gz: fe3d214831ecb3725f204c93696e1ac17d2d947414b0ac254de3940e34e9f50da82cb68ef2c6863958b019584ec17bee40f58802c425b1e254fab01dadb39fc9
|
data/_layouts/blog.html
CHANGED
|
@@ -34,11 +34,14 @@
|
|
|
34
34
|
<div class="card-footer bg-white">
|
|
35
35
|
<div class="wrapfooter">
|
|
36
36
|
<span class="meta-footer-thumb">
|
|
37
|
-
<img class="author-thumb" src="{{
|
|
37
|
+
<img class="author-thumb" src="{{ page.author.image }}"
|
|
38
|
+
alt="{{ post.author.name }}">
|
|
38
39
|
</span>
|
|
40
|
+
|
|
39
41
|
<span class="author-meta">
|
|
40
42
|
<span class="post-name">
|
|
41
|
-
<a target="_blank"
|
|
43
|
+
<a target="_blank"
|
|
44
|
+
href="{{ site.data.authors.author.image }}">{{post.author}}</a>
|
|
42
45
|
</span><br>
|
|
43
46
|
<span class="post-date">{{post.date | date_to_string }}</span>
|
|
44
47
|
</span>
|
data/assets/css/blog.css
CHANGED
|
@@ -23,6 +23,41 @@ a {
|
|
|
23
23
|
border-radius: 50%;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
header {
|
|
27
|
+
width: 100%;
|
|
28
|
+
position: relative;
|
|
29
|
+
}
|
|
30
|
+
.navbar {
|
|
31
|
+
width: 100%;
|
|
32
|
+
padding: 1.2rem 10rem !important;
|
|
33
|
+
position: fixed;
|
|
34
|
+
top: 0;
|
|
35
|
+
left: 0;
|
|
36
|
+
z-index: 999;
|
|
37
|
+
}
|
|
38
|
+
.navbar-brand {
|
|
39
|
+
font-size: 2.2rem;
|
|
40
|
+
color: var(--txtColor) !important;
|
|
41
|
+
font-weight: 900;
|
|
42
|
+
}
|
|
43
|
+
.navbar-dark .navbar-toggler {
|
|
44
|
+
outline: none !important;
|
|
45
|
+
}
|
|
46
|
+
.navbar-nav .nav-item {
|
|
47
|
+
padding: 0 10px;
|
|
48
|
+
}
|
|
49
|
+
.navbar-nav .nav-link:hover {
|
|
50
|
+
color: var(--txtColor) !important;
|
|
51
|
+
transition: all 0.2s linear;
|
|
52
|
+
-webkit-transition: all 0.2s linear;
|
|
53
|
+
-moz-transition: all 0.2s linear;
|
|
54
|
+
}
|
|
55
|
+
.nav-link {
|
|
56
|
+
text-decoration: none !important;
|
|
57
|
+
font-size: 16px;
|
|
58
|
+
color: gray !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
26
61
|
/* blogs-card title, content styling */
|
|
27
62
|
.anchor_link {
|
|
28
63
|
text-decoration: none !important;
|
|
@@ -362,14 +397,3 @@ a {
|
|
|
362
397
|
margin-top: 10px;
|
|
363
398
|
}
|
|
364
399
|
}
|
|
365
|
-
@media (max-width: 992px) {
|
|
366
|
-
.dropdown:hover .dropdown-menu {
|
|
367
|
-
left: 0px;
|
|
368
|
-
padding: 0;
|
|
369
|
-
}
|
|
370
|
-
.dropdown-item {
|
|
371
|
-
text-align: left;
|
|
372
|
-
font-weight: 600;
|
|
373
|
-
padding: 0.25rem 0;
|
|
374
|
-
}
|
|
375
|
-
}
|