jekyll-theme-miniplex 0.2.1 → 0.2.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6760d34dfb670abb2dee3e365f59621bae27d369dba74d420c9b782f970b14e1
|
4
|
+
data.tar.gz: 4c8412513809f70586201c9e8e4268e074813aa791ecc32c8ade860d6fdb5157
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29b8ee9ef814b1df76d50f82088631adb451a31e1c7cc157987bf47ad6615d7a30ca0e3504598866f54de9b3e7a9a254435137f4bfcec1627df1ac8761a6a0d8
|
7
|
+
data.tar.gz: 9f365d9ddf271f0ec5efef01859c96ddb0784b7f647dc02bcacd5fc39c85a22d2f56f97fa27e02a09dfb1aee6bd97414ce7a549f502fcc80d47c6a0b1ebcbd48
|
File without changes
|
data/_layouts/default.html
CHANGED
@@ -3,10 +3,11 @@
|
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8">
|
5
5
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
|
6
|
+
<meta name="theme-color" content="#ffffff">
|
6
7
|
<title>{{ page.title }}</title>
|
7
8
|
<link rel="stylesheet" href="/assets/css/main.css">
|
8
9
|
<script type="text/javascript" src="/assets/js/main.js"></script>
|
9
|
-
{% include
|
10
|
+
{% include additional_head_tags.html %}
|
10
11
|
</head>
|
11
12
|
<body>
|
12
13
|
<div id="layout">
|
@@ -510,7 +510,7 @@ body
|
|
510
510
|
|
511
511
|
li#site-title
|
512
512
|
@include title_font
|
513
|
-
font-size:
|
513
|
+
@include responsive_property(font-size, $xs: 1.125 * $unit, $s: 1.25 * $unit, $m: 1.5 * $unit, $otherwise: 1.5 * $unit)
|
514
514
|
@include responsive_property(margin-bottom, $xs: 1.5 * $unit, $s: 1.75 * $unit, $m: 2 * $unit, $otherwise: 2 * $unit)
|
515
515
|
|
516
516
|
|
@@ -566,7 +566,7 @@ body
|
|
566
566
|
|
567
567
|
li#site-title
|
568
568
|
@include title_font
|
569
|
-
font-size: 1.25 * $unit
|
569
|
+
@include responsive_property(font-size, $xs: 1.125 * $unit, $s: 1.25 * $unit, $m: 1.5 * $unit, $otherwise: 1.5 * $unit)
|
570
570
|
@include responsive_property(padding-left, $m: $unit, $otherwise: math.div($unit, 2))
|
571
571
|
@include responsive_property(padding-top, $m: math.div($unit, 2), $otherwise: math.div($unit, 4))
|
572
572
|
@include responsive_property(padding-bottom, $m: math.div($unit, 2), $otherwise: math.div($unit, 4))
|
@@ -582,7 +582,7 @@ body
|
|
582
582
|
|
583
583
|
|
584
584
|
button#mobile-navigation-toggle
|
585
|
-
font-size: 1.25 * $unit
|
585
|
+
@include responsive_property(font-size, $xs: 1.125 * $unit, $s: 1.25 * $unit, $m: 1.5 * $unit, $otherwise: 1.5 * $unit)
|
586
586
|
font-weight: bold
|
587
587
|
cursor: pointer
|
588
588
|
display: flex
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-miniplex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timo Würsch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -48,7 +48,7 @@ files:
|
|
48
48
|
- LICENSE.txt
|
49
49
|
- README.md
|
50
50
|
- _config.yml
|
51
|
-
- _includes/
|
51
|
+
- _includes/additional_head_tags.html
|
52
52
|
- _includes/navigation_desktop.html
|
53
53
|
- _includes/navigation_mobile.html
|
54
54
|
- _layouts/default.html
|