cyclist-jekyll 0.11.0 → 0.11.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/cyclist-jekyll.scss +1 -1
- data/_sass/layout.scss +12 -0
- data/_sass/typography.scss +9 -9
- data/vendor/cyclist-grid/dist/css/cyclist-grid.css +12 -8
- data/vendor/cyclist-grid/dist/scss/partials/_setup.scss +2 -3
- data/vendor/cyclist-grid/dist/scss/partials/_typography.scss +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3269ab12f913105c3536c47b8b2a323640b5831a80d1d044e7269a066c1ae871
|
4
|
+
data.tar.gz: 0d31e2286508eace1196bc26d6435394a2511d0cad1f9f75619949950fe8da06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad07a536a568cd9150701cb76069e5f15123bee609d22dfbc67c34dfcab4b80dee90a7c7fcbdf52a682da3c1519942682d9601f6d1de33cd8e10c3435c630ed4
|
7
|
+
data.tar.gz: 799fa7b9144004a5e8d92ae6f1cbd88a17d1cec2e5726d3de53ca7b02e117627cb1496b51b8aefafae5de0f890ed8358a9afa6a071945e9116844086844845c6
|
data/_sass/cyclist-jekyll.scss
CHANGED
@@ -27,7 +27,7 @@ ul#social li a svg {
|
|
27
27
|
}
|
28
28
|
|
29
29
|
ul#social li a:visited svg {
|
30
|
-
// This doesn't actually, because `:visited` has security-related limitations
|
30
|
+
// This doesn't actually work, because `:visited` has security-related limitations
|
31
31
|
filter: invert(49%) sepia(13%) saturate(0%) hue-rotate(134deg) brightness(103%) contrast(85%);
|
32
32
|
}
|
33
33
|
|
data/_sass/layout.scss
CHANGED
@@ -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
@@ -1,5 +1,5 @@
|
|
1
1
|
body {
|
2
|
-
font-family: "Crimson", Georgia, "Times New Roman", Times, serif;
|
2
|
+
font-family: "Crimson Text", Georgia, "Times New Roman", Times, serif;
|
3
3
|
}
|
4
4
|
|
5
5
|
h1,
|
@@ -24,9 +24,9 @@ h3 {
|
|
24
24
|
}
|
25
25
|
|
26
26
|
blockquote {
|
27
|
-
font-family: "
|
27
|
+
font-family: "Lato", Helvetica, Verdana, sans-serif;
|
28
28
|
color: #555;
|
29
|
-
font-size:
|
29
|
+
font-size: 0.85em;
|
30
30
|
}
|
31
31
|
|
32
32
|
pre,
|
@@ -36,15 +36,15 @@ code {
|
|
36
36
|
}
|
37
37
|
|
38
38
|
nav {
|
39
|
-
font-family: "
|
39
|
+
font-family: "Lato", Helvetica, Verdana, sans-serif;
|
40
40
|
font-weight: bold;
|
41
41
|
}
|
42
42
|
|
43
43
|
.post-date {
|
44
|
-
font-family: "
|
44
|
+
font-family: "Lato", Helvetica, Verdana, sans-serif;
|
45
45
|
font-weight: bold;
|
46
46
|
text-transform: uppercase;
|
47
|
-
font-size:
|
47
|
+
font-size: 0.8em;
|
48
48
|
}
|
49
49
|
|
50
50
|
.link h1,
|
@@ -53,7 +53,7 @@ nav {
|
|
53
53
|
article h4,
|
54
54
|
article h5,
|
55
55
|
article h6 {
|
56
|
-
font-size:
|
56
|
+
font-size: 1.1em;
|
57
57
|
}
|
58
58
|
|
59
59
|
a {
|
@@ -81,9 +81,9 @@ sup {
|
|
81
81
|
}
|
82
82
|
|
83
83
|
code {
|
84
|
-
font-size:
|
84
|
+
font-size: 0.75em;
|
85
85
|
}
|
86
86
|
|
87
87
|
pre code {
|
88
|
-
font-size:
|
88
|
+
font-size: 0.75em;
|
89
89
|
}
|
@@ -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.4
|
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-
|
11
|
+
date: 2021-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|