alembic-jekyll-theme 1.5.2 → 1.5.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
  SHA1:
3
- metadata.gz: ae3fa5a1e9ccfd560f240562b7adbbe5b911c15a
4
- data.tar.gz: 757a86c247fae5a242215f49f03db5cad3b2e54a
3
+ metadata.gz: febc34aaac364870b5b4b25b60481a2c3b0cbcd2
4
+ data.tar.gz: 6100552b2b71e516f94d9db31ad6a9472c5acf87
5
5
  SHA512:
6
- metadata.gz: c150693b169f226b126c36ecf07fb6dd97d7cb298324f4cece60cee22fdab2329fa07f5ff27b81dff6d3200dd60f1b61fa8dc317c360f3d3378f745ab2e4f124
7
- data.tar.gz: 9aa92c6d19ea473e1a29bc7503845cbbebafa14069628512d1757d533b86ee9c9eff64860e67fb6242eca506fed645d4490def03fe3f3d2aab80addd52ef6a57
6
+ metadata.gz: ced7b7e03c165625105fe5ad2d7e921622ae2efa3d86716f11d581e99493033f190beddcc3923d1021bde46716cca1d4209926f949e98297be4d04dd2fb97075
7
+ data.tar.gz: 722fef4bbbb52dfa97f3dfd35142ba4997366b52d3c930f0b64c668b2c9cda26a5be6e19378622c2c8fe4c1ba70abbae89bc5b6d323dde3679e1721f09b0ff2b
data/README.md CHANGED
@@ -51,6 +51,8 @@ Here are a few examples of Alembic out in the wild being used in a variety of wa
51
51
  - [bawejakunal.github.io](https://bawejakunal.github.io/)
52
52
  - [case2111.github.io](http://case2111.github.io/)
53
53
  - [www.10people.co.uk](http://www.10people.co.uk/)
54
+ - [hrkeni.me](http://hrkeni.me/)
55
+ - [venuthatikonda.github.io](https://venuthatikonda.github.io/)
54
56
 
55
57
  ## Installation
56
58
 
@@ -47,7 +47,6 @@
47
47
  const field = document.querySelector('#search');
48
48
  const resultsList = document.querySelector('#list');
49
49
 
50
- field.addEventListener('change', displayResults);
51
50
  field.addEventListener('keyup', displayResults);
52
51
 
53
52
  field.addEventListener('keypress', function(event) {
@@ -4,4 +4,3 @@
4
4
  @import "sassline-base/modular-scale";
5
5
  @import "sassline-base/mixins";
6
6
  @import "sassline-base/typography";
7
- @import "sassline-base/layouts";
data/assets/styles.scss CHANGED
@@ -229,8 +229,6 @@ body {
229
229
  .icon {
230
230
  display: inline-block;
231
231
  transition: fill .1s;
232
- min-width: 24px;
233
- min-height: 24px;
234
232
  &:hover {
235
233
  fill: darken($color__site--link, 10%);
236
234
  }
@@ -239,8 +237,8 @@ body {
239
237
 
240
238
  .icon {
241
239
  vertical-align: middle;
242
- width: 1em;
243
- height: 1em;
240
+ width: 1.1em;
241
+ height: 1.1em;
244
242
  fill: CurrentColor;
245
243
  }
246
244
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alembic-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.2
4
+ version: 1.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Darnes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-05 00:00:00.000000000 Z
11
+ date: 2017-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -186,7 +186,6 @@ files:
186
186
  - _sass/_normalize.scss
187
187
  - _sass/_sassline-base.scss
188
188
  - _sass/_syntax.scss
189
- - _sass/sassline-base/_layouts.scss
190
189
  - _sass/sassline-base/_mixins.scss
191
190
  - _sass/sassline-base/_modular-scale.scss
192
191
  - _sass/sassline-base/_reset.scss
@@ -1,282 +0,0 @@
1
- // Layouts
2
- // ---------------------------------------
3
-
4
- // Container.
5
- .section {
6
- @include clearfix;
7
-
8
- margin: 0 auto;
9
- position: relative;
10
- width: 94%;
11
-
12
- @include breakpoint(break-3) {
13
- @include maxwidth(3);
14
- }
15
-
16
- @include breakpoint(break-4) {
17
- @include maxwidth(4);
18
- }
19
- }
20
-
21
- // Single column (based on measure for typeset content).
22
- .single-measure {
23
- @include measure(all);
24
-
25
- margin: 0 auto;
26
- }
27
-
28
- // Base column styles.
29
- .column {
30
- @include measure(0);
31
-
32
- margin: 0 auto;
33
- width: 100%;
34
-
35
- @include breakpoint(break-1) {
36
- float: left;
37
- margin: initial;
38
- max-width: initial;
39
- padding-left: map-get($gutterwidths, small);
40
- padding-right: map-get($gutterwidths, small);
41
- }
42
-
43
- @include breakpoint(break-3) {
44
- padding-left: map-get($gutterwidths, medium);
45
- padding-right: map-get($gutterwidths, medium);
46
- }
47
- }
48
-
49
- // Two columns.
50
- .column--duo {
51
-
52
- @include breakpoint(break-1) {
53
- width: 50%;
54
-
55
- &:nth-of-type(2n+3) {
56
- clear: left;
57
- }
58
-
59
- &:nth-of-type(n+3) {
60
- margin-top: 3rem;
61
- }
62
- }
63
- }
64
-
65
- // Three columns.
66
- .column--trio {
67
-
68
- @include breakpoint(break-1) {
69
- width: 33.333%;
70
-
71
- &:nth-of-type(3n+4) {
72
- clear: left;
73
- }
74
-
75
- &:nth-of-type(n+4) {
76
- margin-top: 3rem;
77
- }
78
- }
79
- }
80
-
81
- // Four columns. Two at smaller breakpoints.
82
- .column--quad {
83
-
84
- @include breakpoint(break-1) {
85
- width: 50%;
86
- }
87
-
88
- @include breakpoint(break-2) {
89
- width: 25%;
90
- }
91
- }
92
-
93
- // Two column layout with a main text column and a sidebar.
94
-
95
- // Main column.
96
- .column--main {
97
-
98
- @include breakpoint(break-1) {
99
- @include ideal-measure(1, small);
100
- }
101
-
102
- @include breakpoint(break-2) {
103
- @include ideal-measure(2, small);
104
- }
105
-
106
- @include breakpoint(break-3) {
107
- @include ideal-measure(3, medium);
108
- }
109
-
110
- @include breakpoint(break-4) {
111
- @include ideal-measure(4, medium);
112
- }
113
- }
114
-
115
- // Sidebar.
116
- .column--sidebar {
117
-
118
- @include breakpoint(break-1) {
119
- @include ideal-measure(1, small, false);
120
-
121
- padding-right: map-get($gutterwidths, medium);
122
- }
123
-
124
- @include breakpoint(break-2) {
125
- @include ideal-measure(2, small, false);
126
- }
127
-
128
- @include breakpoint(break-3) {
129
- @include ideal-measure(3, medium, false);
130
-
131
- padding-right: map-get($gutterwidths, large);
132
- }
133
-
134
- @include breakpoint(break-4) {
135
- @include ideal-measure(4, medium, false);
136
- }
137
- }
138
-
139
- // If sidebar on the right side.
140
- .column--main + .column--sidebar {
141
- @include breakpoint(break-1) {
142
- padding-left: map-get($gutterwidths, medium);
143
- padding-right: map-get($gutterwidths, small);
144
- }
145
-
146
- @include breakpoint(break-3) {
147
- padding-left: map-get($gutterwidths, large);
148
- padding-right: map-get($gutterwidths, medium);
149
- }
150
- }
151
-
152
- // Set the main text one level down in the modular scale for narrower columns.
153
- .column--trio,
154
- .column--quad,
155
- .column--sidebar {
156
-
157
- @include breakpoint(break-3) {
158
-
159
- p {
160
- @include sassline($fontsize: eta, $font: $bodytype, $lineheight: 2, $below: 2, $breakpoint: 3);
161
- }
162
-
163
- li {
164
- @include fontsize(eta, 3);
165
- }
166
- }
167
-
168
- @include breakpoint(break-4) {
169
-
170
- p {
171
- @include sassline($fontsize: eta, $font: $bodytype, $lineheight: 2, $below: 2, $breakpoint: 4);
172
- }
173
-
174
- li {
175
- @include fontsize(eta, 4);
176
- }
177
- }
178
- }
179
-
180
- // Main column on the right with inline sidenotes.
181
- // The sidenotes will move out the column into the sidebar position aligned to the baseline.
182
- .column--right {
183
-
184
- @include breakpoint(break-1) {
185
- @include ideal-measure(1, small);
186
- @include ideal-measure(1, small, false, margin-left);
187
- }
188
-
189
- @include breakpoint(break-2) {
190
- @include ideal-measure(2, small);
191
- @include ideal-measure(2, small, false, margin-left);
192
- }
193
-
194
- @include breakpoint(break-3) {
195
- @include ideal-measure(3, medium);
196
- @include ideal-measure(3, medium, false, margin-left);
197
- }
198
-
199
- @include breakpoint(break-4) {
200
- @include ideal-measure(4, medium);
201
- @include ideal-measure(4, medium, false, margin-left);
202
- }
203
-
204
- .sidenote {
205
-
206
- @include breakpoint(break-1) {
207
- @include ideal-measure(1, small, false);
208
-
209
- left: 0;
210
- padding-left: map-get($gutterwidths, small);
211
- padding-right: map-get($gutterwidths, medium);
212
- position: absolute;
213
- }
214
-
215
- @include breakpoint(break-2) {
216
- @include ideal-measure(2, small, false);
217
- }
218
-
219
- @include breakpoint(break-3) {
220
- @include ideal-measure(3, medium, false);
221
-
222
- padding-right: map-get($gutterwidths, large);
223
- }
224
-
225
- @include breakpoint(break-4) {
226
- @include ideal-measure(4, medium, false);
227
-
228
- padding-left: map-get($gutterwidths, medium);
229
- }
230
- }
231
- }
232
-
233
- // Main column on the left with inline sidenotes.
234
- .column--left {
235
-
236
- @include breakpoint(break-1) {
237
- @include ideal-measure(1, small);
238
- }
239
-
240
- @include breakpoint(break-2) {
241
- @include ideal-measure(2, small);
242
- }
243
-
244
- @include breakpoint(break-3) {
245
- @include ideal-measure(3, medium);
246
- }
247
-
248
- @include breakpoint(break-4) {
249
- @include ideal-measure(4, medium);
250
- }
251
-
252
- .sidenote {
253
-
254
- @include breakpoint(break-1) {
255
- @include ideal-measure(1, small, false);
256
- @include ideal-measure(1, small, true, left);
257
-
258
- padding-left: map-get($gutterwidths, medium);
259
- padding-right: map-get($gutterwidths, small);
260
- position: absolute;
261
- }
262
-
263
- @include breakpoint(break-2) {
264
- @include ideal-measure(2, small, false);
265
- @include ideal-measure(2, small, true, left);
266
- }
267
-
268
- @include breakpoint(break-3) {
269
- @include ideal-measure(3, medium, false);
270
- @include ideal-measure(3, medium, true, left);
271
-
272
- padding-left: map-get($gutterwidths, large);
273
- }
274
-
275
- @include breakpoint(break-4) {
276
- @include ideal-measure(4, medium, false);
277
- @include ideal-measure(4, medium, true, left);
278
-
279
- padding-right: map-get($gutterwidths, medium);
280
- }
281
- }
282
- }