dark-blog-theme 1.0.5 → 1.1.0
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/_sass/minima/_layout.scss +6 -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: e9ff11ec7e8b652c7d568789dcf80c58555c8c60862489e51ca768a939f5557c
|
|
4
|
+
data.tar.gz: 161f3faf6284eeec2e57ebcbe8067d9a1dd4f447ba3dc3e8190c4d6429f45ca0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb6b5aefd30612b39b974dd59aeaf7a511ae026a12a5365d971ce73d62887a7a16d7aaa3c9fdb9e89b68d9f2e395ba49cd8f2500e6525a5c650ecd53ea3693b4
|
|
7
|
+
data.tar.gz: '09940a79533e7b739780e65e238d3029845c1973812d2c3de25fee028825dd29eb830c39476f17be56025acfd312885b917f36aef72d48b5323bfd79742480dc'
|
data/_includes/header.html
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
<div class="wrapper header-container">
|
|
3
3
|
{%- assign default_paths = site.pages | map: 'path' -%}
|
|
4
4
|
{%- assign page_paths = site.header_pages | default: default_paths -%}
|
|
5
|
-
<img class="logo" src="{{- "assets/theme-assets/theme-images/logo.svg" | relative_url -}}">
|
|
6
5
|
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
|
|
6
|
+
<img class="logo" src="{{- "assets/theme-assets/theme-images/logo.svg" | relative_url -}}">
|
|
7
7
|
{%- if page_paths -%}
|
|
8
8
|
<nav class="site-nav">
|
|
9
9
|
<input type="checkbox" id="nav-trigger" class="nav-trigger">
|
data/_sass/minima/_layout.scss
CHANGED
|
@@ -22,13 +22,17 @@
|
|
|
22
22
|
@include relative-font-size(1.625);
|
|
23
23
|
font-family: Virgil;
|
|
24
24
|
font-weight: 300;
|
|
25
|
-
font-size:
|
|
25
|
+
font-size: 38px;
|
|
26
26
|
text-align: center;
|
|
27
|
-
line-height: $base-line-height * $base-font-size * 2.25;
|
|
28
27
|
letter-spacing: -1px;
|
|
29
28
|
margin-bottom: 0;
|
|
29
|
+
margin-top: 12px;
|
|
30
30
|
// float: left;
|
|
31
31
|
|
|
32
|
+
@media screen and (min-width:500px) {
|
|
33
|
+
font-size: 56px;
|
|
34
|
+
}
|
|
35
|
+
|
|
32
36
|
&,
|
|
33
37
|
&:visited {
|
|
34
38
|
// color: $grey-color-dark;
|