jekyll-dash 1.1.0 → 1.1.1
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.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/dash/_animations.scss +5 -0
- data/_sass/dash/_layout.scss +63 -8
- 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: 6dce4d7636f47ae1d0b2477535c572cd3f62b70ecb1df35f4cf3053fd0a66c84
|
4
|
+
data.tar.gz: 29f66ca1339ab8b111d58790209e81734bc36e13528725f42d8d626ce48026ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e5580c8977c2b726d53bb55af99b817bc30d68ee9cc1652e7a884c671606f35f13ac1398d8ca5a3d3a07853389795cc04beb54455d38d06542776d5d6a0b165
|
7
|
+
data.tar.gz: d4921fce0dafa1517d3033038d65ea1895aff67cb7a4998ca2f4bc8e92b49505ad0355d2523a0403098d10b518729fad3412224784f48ae018e2a24e57add8af
|
data/_includes/header.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<div class="site-header">
|
2
2
|
<div class="wrapper">
|
3
|
-
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}
|
3
|
+
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}<b class="command_prompt"></b><b class="blinking_cursor">_</b></a>
|
4
4
|
<span class="social_links">
|
5
5
|
{% for link in site.dash.social_links %}
|
6
6
|
<a class="color-{{ link.color }}-hover" href="{{ link.url }}"><i class="fab fa-{{ link.icon }}"></i></a>
|
data/_layouts/post.html
CHANGED
@@ -13,7 +13,7 @@ layout: default
|
|
13
13
|
{% endif %}
|
14
14
|
<div class="post-date">Published on {{ page.date | date_to_string }}</div>
|
15
15
|
{% if page.description != null %}
|
16
|
-
<div class="post-description"
|
16
|
+
<div class="post-description">{{ page.description }}</div>
|
17
17
|
{% endif %}
|
18
18
|
{{ content }}
|
19
19
|
</div>
|
data/_sass/dash/_animations.scss
CHANGED
data/_sass/dash/_layout.scss
CHANGED
@@ -7,12 +7,32 @@
|
|
7
7
|
|
8
8
|
.blinking_cursor {
|
9
9
|
animation: blinker 1s none infinite;
|
10
|
-
font-size: $base-font-size;
|
10
|
+
font-size: $base-font-size * 1.25;
|
11
11
|
}
|
12
12
|
|
13
13
|
.command_prompt {
|
14
14
|
color: $color-blue;
|
15
15
|
font-size: $base-font-size;
|
16
|
+
|
17
|
+
svg {
|
18
|
+
width: 20px;
|
19
|
+
height: 20px;
|
20
|
+
margin-bottom: -1px;
|
21
|
+
margin-left: 1px;
|
22
|
+
}
|
23
|
+
|
24
|
+
&:before {
|
25
|
+
content: "\f054";
|
26
|
+
font-family: "Font Awesome 5 Free";
|
27
|
+
font-weight: 900;
|
28
|
+
font-style: normal;
|
29
|
+
font-variant: normal;
|
30
|
+
text-rendering: auto;
|
31
|
+
font-weight: 900;
|
32
|
+
|
33
|
+
display: none;
|
34
|
+
-webkit-font-smoothing: antialiased;
|
35
|
+
}
|
16
36
|
}
|
17
37
|
}
|
18
38
|
|
@@ -73,8 +93,37 @@
|
|
73
93
|
|
74
94
|
.post-description {
|
75
95
|
margin-top: 1em;
|
76
|
-
|
77
|
-
|
96
|
+
font-size: $base-font-size * 1.15;
|
97
|
+
color: $color-foreground;
|
98
|
+
white-space: nowrap;
|
99
|
+
overflow: hidden;
|
100
|
+
width: 100%;
|
101
|
+
animation: type 2s steps(60, end);
|
102
|
+
|
103
|
+
& > svg {
|
104
|
+
color: $color-blue;
|
105
|
+
margin-right: 0.6em;
|
106
|
+
margin-bottom: -1px;
|
107
|
+
}
|
108
|
+
|
109
|
+
&:after {
|
110
|
+
content: "_";
|
111
|
+
animation: blinker 1s none infinite;
|
112
|
+
font-size: 16px;
|
113
|
+
}
|
114
|
+
|
115
|
+
&:before {
|
116
|
+
content: "\f054";
|
117
|
+
font-family: "Font Awesome 5 Free";
|
118
|
+
font-weight: 900;
|
119
|
+
font-style: normal;
|
120
|
+
font-variant: normal;
|
121
|
+
text-rendering: auto;
|
122
|
+
font-weight: 900;
|
123
|
+
|
124
|
+
display: none;
|
125
|
+
-webkit-font-smoothing: antialiased;
|
126
|
+
}
|
78
127
|
}
|
79
128
|
|
80
129
|
.post {
|
@@ -96,7 +145,12 @@
|
|
96
145
|
width: 100%;
|
97
146
|
}
|
98
147
|
|
99
|
-
li {
|
148
|
+
ol > li {
|
149
|
+
margin-left: 1em;
|
150
|
+
}
|
151
|
+
|
152
|
+
ul > li {
|
153
|
+
color: lighten($color-green, 25%);
|
100
154
|
list-style: none;
|
101
155
|
margin-left: 0;
|
102
156
|
|
@@ -119,7 +173,7 @@
|
|
119
173
|
}
|
120
174
|
}
|
121
175
|
|
122
|
-
ul {
|
176
|
+
ul, ol {
|
123
177
|
padding: 0;
|
124
178
|
margin-left: 0.5em;
|
125
179
|
}
|
@@ -147,13 +201,14 @@
|
|
147
201
|
}
|
148
202
|
|
149
203
|
& > svg.svg-inline--fa {
|
204
|
+
color: lighten($color-yellow, 20%);
|
150
205
|
float: left;
|
151
206
|
width: 3em;
|
152
207
|
height: 3em;
|
153
208
|
margin-right: 1em;
|
154
209
|
}
|
155
210
|
|
156
|
-
svg {
|
211
|
+
& > ul > li > svg {
|
157
212
|
color: lighten($color-yellow, 20%);
|
158
213
|
}
|
159
214
|
|
@@ -254,10 +309,10 @@
|
|
254
309
|
.social_links {
|
255
310
|
float: right;
|
256
311
|
& > a {
|
257
|
-
color: darken($color-foreground,
|
312
|
+
color: darken($color-foreground, 10%);
|
258
313
|
display: inline-block;
|
259
314
|
margin-left: 0.2em;
|
260
|
-
font-size: $post-link-font-size * 1.
|
315
|
+
font-size: $post-link-font-size * 1.35;
|
261
316
|
}
|
262
317
|
}
|
263
318
|
|