cyclist-jekyll 0.11.2 → 0.11.6

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: 97271fcd87f1b526e70c7d1890d973c8563ab64984cf87e35cb4833659df965d
4
- data.tar.gz: 494ce253749abf47a3184d7bd046471625de950078cb80618981cfdd5df1ff00
3
+ metadata.gz: d02ea55f9e97149fcf2609735015b60f802494a81aa13096fe14850ac49c3af2
4
+ data.tar.gz: ad33eaa2e8953509db1d0a899c498347589ce9501703e80d8c6a8529cf2f0bf4
5
5
  SHA512:
6
- metadata.gz: '08ca7c6516dd360d09a4858d8e226f52efc534072a2e3f259dddce276f8e02edbd0e2cf4b9c37f46e2930153614c46b66ffe6ab9e82b83a965a35813ec5412ef'
7
- data.tar.gz: 6d579274e370f72ee7a1959a6039cab9fb411049e21835b641673698838634af0c5d511a395020100d0e90ca2934c46fd4f394be1ca8ea95b7e49da2165d3adb
6
+ metadata.gz: eebb8e35db63f86aa7c94cb780cf2439541b54266f1c1026fa01363276dd1b256a0de4f83860f2f596e94b8be95cec2a1e64e2ded1ee6b7b22c04da8fd237372
7
+ data.tar.gz: 6170318fb000ed78b324ef2895440c990c440eb573fedf74073418997b1eb64bcf40f10ba6a021fb598b84c42e90bd3f8d28c8a7217d161a0441dca743538925
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 {
@@ -26,6 +26,21 @@ div#grid {
26
26
  div#grid {
27
27
  width: 100%;
28
28
  }
29
+
30
+ body header[role=banner] nav {
31
+ text-align: left;
32
+ }
33
+ body header[role=banner] nav ul {
34
+ display: inline;
35
+ flex-direction: initial; }
36
+ body header[role=banner] nav ul li {
37
+ flex-grow: 0;
38
+ display: inline; }
39
+ body header[role=banner] nav ul li {
40
+ text-align: left;
41
+ margin-right: 1rem; }
42
+ body header[role=banner] nav ul li a {
43
+ display: inline; }
29
44
  }
30
45
 
31
46
  header h1 {
@@ -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,
@@ -19,11 +19,6 @@ h2 {
19
19
  @include header($great-primer-ratio);
20
20
  }
21
21
 
22
- h1, h2 {
23
- margin-bottom: $line-height;
24
- margin-top: $line-height * 2;
25
- }
26
-
27
22
  h3 {
28
23
  @include header($english-ratio);
29
24
  }
@@ -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.2
4
+ version: 0.11.6
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-19 00:00:00.000000000 Z
11
+ date: 2021-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll