cyclist-jekyll 0.11.1 → 0.11.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4fde9535a5cc0845f5240f914a0884b62fac9461870b3a4ced45828d6a5eac37
|
4
|
+
data.tar.gz: 52935cc8152a2cb6a3d6fac55fa51a22214d561199ecb9224240b60600919a97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4345a37da532865f3de1ff1249f2ac952e9bbf65f0a1c832714d4bf02b466c19b2096f4ae7d9279c5253c77e65f5ca8b87c88c1e6c670bf46a2a3d55657c0c1e
|
7
|
+
data.tar.gz: d93872a5bc2c6de8a1e6a81dbf01128451ee8b687cb3178754779d16fe493ad12e500690b0fcb2d6b558c763eb6ef0c1360d17efafc4f316072e16db7f29ce60
|
data/_sass/layout.scss
CHANGED
@@ -3,7 +3,7 @@ pre {
|
|
3
3
|
margin: 0 0 $leading-height 0;
|
4
4
|
}
|
5
5
|
|
6
|
-
$main-width: columns-width(
|
6
|
+
$main-width: columns-width(3);
|
7
7
|
|
8
8
|
html,
|
9
9
|
body {
|
@@ -28,6 +28,18 @@ div#grid {
|
|
28
28
|
}
|
29
29
|
}
|
30
30
|
|
31
|
+
header h1 {
|
32
|
+
margin-top: 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
h2.post-date {
|
36
|
+
margin-top: 0;
|
37
|
+
}
|
38
|
+
|
39
|
+
li h1, li h2 {
|
40
|
+
margin-top: 0;
|
41
|
+
}
|
42
|
+
|
31
43
|
header[role=banner] {
|
32
44
|
text-align: center;
|
33
45
|
margin-bottom: $leading-height * 2;
|
data/_sass/typography.scss
CHANGED
@@ -76,6 +76,10 @@ h6 {
|
|
76
76
|
font-size: calc(1em * (12 / 12));
|
77
77
|
line-height: calc(1 * 1.25rem); }
|
78
78
|
|
79
|
+
h1, h2 {
|
80
|
+
margin-bottom: 1.25rem;
|
81
|
+
margin-top: 2.5rem; }
|
82
|
+
|
79
83
|
p,
|
80
84
|
ul,
|
81
85
|
ol {
|
@@ -89,11 +93,11 @@ ol ul {
|
|
89
93
|
|
90
94
|
ul {
|
91
95
|
list-style-type: disc;
|
92
|
-
margin-left:
|
96
|
+
margin-left: 1.25rem; }
|
93
97
|
|
94
98
|
ol {
|
95
99
|
list-style-type: decimal;
|
96
|
-
margin-left:
|
100
|
+
margin-left: 1.25rem; }
|
97
101
|
|
98
102
|
sub {
|
99
103
|
line-height: 0;
|
@@ -119,18 +123,18 @@ sup {
|
|
119
123
|
display: -webkit-flex;
|
120
124
|
display: flex;
|
121
125
|
background-color: rgba(148, 235, 255, 0.25);
|
122
|
-
margin-right:
|
123
|
-
-webkit-flex: 0 0
|
124
|
-
flex: 0 0
|
126
|
+
margin-right: 1.25rem;
|
127
|
+
-webkit-flex: 0 0 11.25rem;
|
128
|
+
flex: 0 0 11.25rem; }
|
125
129
|
|
126
130
|
.cyclist-guidelines > div.cyclist-column:last-child {
|
127
131
|
margin-right: 0; }
|
128
132
|
|
129
133
|
.cyclist-column > div.cyclist-unit {
|
130
134
|
background-color: rgba(148, 235, 255, 0.25);
|
131
|
-
margin-right:
|
132
|
-
-webkit-flex: 0 0
|
133
|
-
flex: 0 0
|
135
|
+
margin-right: 1.25rem;
|
136
|
+
-webkit-flex: 0 0 5rem;
|
137
|
+
flex: 0 0 5rem; }
|
134
138
|
|
135
139
|
.cyclist-column > div.cyclist-unit:last-child {
|
136
140
|
margin-right: 0; }
|
@@ -12,8 +12,8 @@ $leading-height: $line-height !default;
|
|
12
12
|
|
13
13
|
// Grid Variables
|
14
14
|
|
15
|
-
$gutter-width:
|
16
|
-
$num-indent-gutters:
|
15
|
+
$gutter-width: $line-height !default;
|
16
|
+
$num-indent-gutters: 1 !default;
|
17
17
|
$num-unit-gutters: 4 !default;
|
18
18
|
$num-column-units: 2 !default;
|
19
19
|
|
@@ -22,4 +22,3 @@ $num-column-units: 2 !default;
|
|
22
22
|
$indent-width: $gutter-width * $num-indent-gutters !default;
|
23
23
|
$unit-width: $gutter-width * $num-unit-gutters !default;
|
24
24
|
$column-width: $unit-width * $num-column-units + $gutter-width * ($num-column-units - 1) !default;
|
25
|
-
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cyclist-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roben Kleene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|