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: 747e7a1863404c0a0bb4f048fa9a86cfd9628302223d46dc20c2946bf3ea1979
4
- data.tar.gz: f6de5ff6886d2138187b9a0fd73cde1c97b85a36187334de66702595d311d42e
3
+ metadata.gz: 4fde9535a5cc0845f5240f914a0884b62fac9461870b3a4ced45828d6a5eac37
4
+ data.tar.gz: 52935cc8152a2cb6a3d6fac55fa51a22214d561199ecb9224240b60600919a97
5
5
  SHA512:
6
- metadata.gz: b73b236d807bf3f17607fec1ac213906ec99a3719fd40ce59bc8bb65a9b13a22d18c3c2fe3de9907c809dbbb7a72c4fa192c6159d9b96196e1182c2adb9c0d62
7
- data.tar.gz: cf232c139f27d112a9d5932b8c27c6d90df27787070775646ec5b8c79a36c9060f74e1ea45100a4ef4b3c68d4cc0a04ea91123982575f1e78e1d91e108face38
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(4);
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;
@@ -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,
@@ -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: 2rem; }
96
+ margin-left: 1.25rem; }
93
97
 
94
98
  ol {
95
99
  list-style-type: decimal;
96
- margin-left: 2rem; }
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: 1rem;
123
- -webkit-flex: 0 0 9rem;
124
- flex: 0 0 9rem; }
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: 1rem;
132
- -webkit-flex: 0 0 4rem;
133
- flex: 0 0 4rem; }
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: 1rem !default;
16
- $num-indent-gutters: 2 !default;
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
-
@@ -72,6 +72,11 @@ h6 {
72
72
  @include header($pica-ratio);
73
73
  }
74
74
 
75
+ h1, h2 {
76
+ margin-bottom: $line-height;
77
+ margin-top: $line-height * 2;
78
+ }
79
+
75
80
  p,
76
81
  ul,
77
82
  ol {
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.1
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-16 00:00:00.000000000 Z
11
+ date: 2021-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll