jekyll-dash 1.0.2 → 1.0.3
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/post.html +1 -1
- data/_sass/dash/_layout.scss +21 -1
- 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: 8ec4da2829c58bb0a59f72965ae0ba179f88d05c2f3e83aa84b5e2b601a40f47
|
4
|
+
data.tar.gz: 9a6f7b95ef41188f952300a2c6848445cc2992c4f522d7b39c675cb140b52a6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b779055a02829df098b863b357b7aa4eb21af5d5537478fe9a20a2bd038d293be00e923b343c08a74e727a46db04a5c819709b0b46e7cd8f7f22446660689ce0
|
7
|
+
data.tar.gz: 2647ffe7168c743e0d147e80505a15a723ee8bf4e3a6814ca5ef265761ef40a13efa488c25a36897d3d920865dd33490c60d95c15768a5785175caaf1acbe3b5
|
data/_layouts/post.html
CHANGED
@@ -11,7 +11,7 @@ layout: default
|
|
11
11
|
</div>
|
12
12
|
<div class="post-date">Published on {{ page.date | date_to_string }}</div>
|
13
13
|
{% if page.description != null %}
|
14
|
-
<div class="post-description">{{ page.description }}</div>
|
14
|
+
<div class="post-description"><span class="color-blue">> </span>{{ page.description }}</div>
|
15
15
|
{% endif %}
|
16
16
|
{{ content }}
|
17
17
|
</div>
|
data/_sass/dash/_layout.scss
CHANGED
@@ -53,6 +53,7 @@
|
|
53
53
|
margin-right: 1em;
|
54
54
|
width: 72px;
|
55
55
|
height: 72px;
|
56
|
+
border-radius: 0.3em;
|
56
57
|
}
|
57
58
|
}
|
58
59
|
|
@@ -63,12 +64,27 @@
|
|
63
64
|
|
64
65
|
.post-title {
|
65
66
|
color: $color-foreground;
|
67
|
+
text-align: left;
|
68
|
+
}
|
69
|
+
|
70
|
+
.post-description {
|
71
|
+
margin-top: 1em;
|
72
|
+
color: $color-pink;
|
73
|
+
font-style: italic;
|
66
74
|
}
|
67
75
|
|
68
76
|
.post {
|
69
77
|
.post-date {
|
70
|
-
margin-top:
|
78
|
+
margin-top: 1em;
|
71
79
|
color: $color-foreground-dark;
|
80
|
+
font-size: 12px;
|
81
|
+
margin-top: 1em;
|
82
|
+
margin-left: 0.5em;
|
83
|
+
}
|
84
|
+
|
85
|
+
img {
|
86
|
+
border-radius: 0.3em;
|
87
|
+
width: 100%;
|
72
88
|
}
|
73
89
|
}
|
74
90
|
|
@@ -153,3 +169,7 @@
|
|
153
169
|
font-size: $post-link-font-size * 1.25;
|
154
170
|
}
|
155
171
|
}
|
172
|
+
|
173
|
+
blockquote {
|
174
|
+
color: $color-orange;
|
175
|
+
}
|