alembic-jekyll-theme 1.2.0 → 1.2.1

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: fef732fbe7ddf84e7b01a510e2652493724bf4e2
4
- data.tar.gz: 0c42cfb09696fe09b9e029035d5af6aa488c99dd
3
+ metadata.gz: aab3d3a5d062e4da1bf7c7d41d4ab39c277e0bf4
4
+ data.tar.gz: 82902d8ea5f5e232f354c719985624c7c2170d4d
5
5
  SHA512:
6
- metadata.gz: 6d0d57d5289971c6643eb6a6953d78d9b6347c046fe93f424b07a01d29273f27e2a90f78a3e993c9d17c69d0c547743cf1851a4ccca2ed5d6b2d75807acbfd34
7
- data.tar.gz: 93b18a259d319514071b6caf2db5652043e55bff6ab7e0a810feefdaadc30e7686c8ce78af4e71f8cbea40c74d659a53733d6c93e2e54e21bd4702bafa88ed08
6
+ metadata.gz: 1293b208abe2fda423251085c904220e415c028f1c1592fb3cb4527f388c495c9750eea593ffeae4b3508fce1fb501ce78ba0978b4cdd9e0d7f6eec783485e50
7
+ data.tar.gz: 95dfdf361d402b528eaad74eb95b2b86d6bf099e2a0e6196f4d65bad2bf01919c5c23a9a0750ae12070664d9abfb40c21ecabae6baf09af19af5d4d40ca4f73b
@@ -1 +1 @@
1
- <a class="button" href="{{ include.link }}" title="{{ include.text }}" {% if include.color %}style="background: {{ include.color }}"{% endif %}>{{ include.text }}{% if include.icon %}&nbsp; {% include icon.html id=include.icon %}{% endif %}</a>
1
+ <a class="button" href="{{ include.link }}" title="Button - {{ include.text }}" {% if include.color %}style="background: {{ include.color }}"{% endif %}>{{ include.text }}{% if include.icon %}&nbsp; {% include icon.html id=include.icon %}{% endif %}</a>
@@ -1,4 +1,4 @@
1
1
  <figure class="figure{% if include.position %} figure--{{ include.position }}{% endif %}">
2
- <img class="image" src="{{ include.image }}">
2
+ <img class="image" src="{{ include.image }}" {% if include.caption %}alt="Image - {{ include.caption }}"{% endif %}>
3
3
  {% if include.caption %}<figcaption class="caption">{{ include.caption }}</figcaption>{% endif %}
4
4
  </figure>
@@ -5,9 +5,9 @@
5
5
  <li class="item item--nav{% if item.url == page.url %} item--current{% endif %}">
6
6
  {% if item.collectionpage %}
7
7
  {% assign collectiondata = site.collections | where: "label", item.collectionpage | first %}
8
- <a href="{{ item.url }}">{{ collectiondata.title }}</a>
8
+ <a href="{{ item.url }}" title="Page - {{ collectiondata.title }}">{{ collectiondata.title }}</a>
9
9
  {% else %}
10
- <a href="{{ item.url }}">{{ item.title }}</a>
10
+ <a href="{{ item.url }}" title="Page - {{ item.title }}">{{ item.title }}</a>
11
11
  {% endif %}
12
12
  </li>
13
13
  {% endunless %}
@@ -3,7 +3,7 @@
3
3
  <ul class="list list--nav">
4
4
  {% for item in site.navigation_footer %}
5
5
  <li class="item item--nav{% if item[1] == page.url %} item--current{% endif %}">
6
- <a href="{{ item[1] }}">{{ item[0] }}</a>
6
+ <a href="{{ item[1] }}" title="Page - {{ item[0] }}">{{ item[0] }}</a>
7
7
  </li>
8
8
  {% endfor %}
9
9
  </ul>
@@ -3,7 +3,7 @@
3
3
  <ul class="list list--nav">
4
4
  {% for item in site.navigation_header %}
5
5
  <li class="item item--nav{% if item[1] == page.url %} item--current{% endif %}">
6
- <a href="{{ item[1] }}">{{ item[0] }}</a>
6
+ <a href="{{ item[1] }}" title="Page - {{ item[0] }}">{{ item[0] }}</a>
7
7
  </li>
8
8
  {% endfor %}
9
9
  </ul>
@@ -2,7 +2,7 @@
2
2
  {% for link in site.social_links %}
3
3
  {% assign id = link[0] | downcase %}
4
4
  <a class="link" href="{{ link[1] }}" title="{{ link[0] }}">
5
- {% include icon.html id=id %}
5
+ {% include icon.html id=id title=id %}
6
6
  </a>
7
7
  {% endfor %}
8
8
  </nav>
@@ -5,7 +5,7 @@
5
5
  <li class="item item--post">
6
6
  <article class="article article--post typeset">
7
7
 
8
- <h2><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h2>
8
+ <h2><a href="{{ page.url }}" title="Post - {{ page.title }}">{{ page.title }}</a></h2>
9
9
  {% include post-meta.html %}
10
10
  {{ page.excerpt | markdownify | truncatewords: 60 }}
11
11
 
@@ -16,13 +16,13 @@
16
16
  {% include post-pagination.html %}
17
17
 
18
18
  {% else %}
19
- <h2>Latest blog posts</h2>
19
+ <h3>Latest blog posts</h3>
20
20
  <ul class="list list--posts">
21
21
  {% for page in site.posts limit: 4 %}
22
22
  <li class="item item--post">
23
23
  <article class="article article--post typeset">
24
24
 
25
- <h5><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h5>
25
+ <h4><a href="{{ page.url }}" title="Post - {{ page.title }}">{{ page.title }}</a></h4>
26
26
  {% include post-meta.html %}
27
27
  {{ page.excerpt | markdownify | truncatewords: 60 }}
28
28
 
@@ -1,10 +1,10 @@
1
- <h2>Related posts</h2>
1
+ <h3>Related posts</h3>
2
2
  <ul class="list list--posts">
3
3
  {% for page in site.related_posts limit: 3 %}
4
4
  <li class="item item--post">
5
5
  <article class="article article--post typeset">
6
6
 
7
- <h5><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h5>
7
+ <h4><a href="{{ page.url }}" title="Related post - {{ page.title }}">{{ page.title }}</a></h4>
8
8
  {% include post-meta.html %}
9
9
  {{ page.excerpt | markdownify | truncatewords: 20 }}
10
10
 
@@ -1,5 +1,5 @@
1
1
  <aside class="aside typeset">
2
- <h2>About this site</h2>
2
+ <h3>About this site</h3>
3
3
  <p>{{ site.description }}</p>
4
4
 
5
5
  {% unless paginator.posts %}
data/assets/styles.scss CHANGED
@@ -203,6 +203,7 @@ body {
203
203
  .link {
204
204
  display: inline-block;
205
205
  margin: .2rem;
206
+ line-height: 1;
206
207
  .icon {
207
208
  display: inline-block;
208
209
  transition: fill .1s;
@@ -305,9 +306,6 @@ textarea {
305
306
  box-shadow: none;
306
307
  border-radius: 0;
307
308
  -webkit-appearance: none;
308
- &:focus {
309
- outline: solid .2rem invert($color__site--accent);
310
- }
311
309
  .icon {
312
310
  margin: 0 0 .35rem;
313
311
  }
@@ -332,6 +330,21 @@ button,
332
330
  }
333
331
  }
334
332
 
333
+ a,
334
+ button,
335
+ .button,
336
+ input,
337
+ textarea {
338
+ &:focus,
339
+ &:hover:focus {
340
+ outline: solid .12rem invert($color__site--accent);
341
+ }
342
+ }
343
+
344
+ a:hover:focus {
345
+ outline: none;
346
+ }
347
+
335
348
  input[type="text"],
336
349
  input[type="email"],
337
350
  textarea {
@@ -350,6 +363,14 @@ label {
350
363
  @include baseline($fontsize: zeta, $font: $bodytype, $lineheight: 2, $below: 2, $breakpoint: all);
351
364
  }
352
365
 
366
+ code {
367
+ padding: .12rem .2rem;
368
+ }
369
+
370
+ pre code {
371
+ padding: 0;
372
+ }
373
+
353
374
  .required {
354
375
  color: red;
355
376
  }
@@ -373,7 +394,6 @@ label {
373
394
  text-shadow: none;
374
395
  }
375
396
 
376
-
377
397
  // Sassline overrides
378
398
  .typeset {
379
399
  .button,
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.2.0
4
+ version: 1.2.1
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-01-08 00:00:00.000000000 Z
11
+ date: 2017-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll