jekyll-theme-one 0.1.9 → 0.2.0

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: 05750ffdc965f6db764ac9a5fa0e9410a5bf6658530dafc53b945a27363f83ea
4
- data.tar.gz: ed643cddc551cabbeaff37e5ea3722f2b847e477c0925838f2eab03a6e97e3a0
3
+ metadata.gz: 47affd9ab16a0c416fd1e9694e79fb8ede40b592d42645ebf115f47df3641363
4
+ data.tar.gz: 7cf555140de21ec1c005b2fa2548f4564ddb9b38223c786d36b301e3a60fe6a1
5
5
  SHA512:
6
- metadata.gz: 9814f6cc3fcff6dd5270ea4f539b0e4873462717be42d8df4eb294fa096be78c39f1dc829ac378162778df59dc5580ade3c44cfe303565eea8baa6fc10f42c5e
7
- data.tar.gz: d662ff30db2c288354ab6fbd1de5b37b764fdb6c50965638c7f1903492554e2da0861fa0ee1f076e98ef51981eae42affeb20e3986ce992a67a579692b50b56b
6
+ metadata.gz: 5d6ccade836440a24e779eb750162569ae7c782ae981291d817a0467e4922866a2bf7b0ca399e2400878c7b0c1ad6028320cc7b0f3541133778b796177f8342c
7
+ data.tar.gz: fdcfc130505d4278168f423cae63a026b19351918021df32598cd8f215ca057387fae1dbb947c71c9e7488a29491b8d0b535c6fbf5ddd5995a61244052735412
@@ -9,7 +9,7 @@
9
9
 
10
10
  // Mixins
11
11
  @import
12
- "mixins/links"
12
+ "mixins/clearfix"
13
13
  ;
14
14
 
15
15
  // Modules
@@ -0,0 +1,9 @@
1
+ // Clearfix
2
+
3
+ @mixin clearfix {
4
+ &::after {
5
+ clear: both;
6
+ content: "";
7
+ display: block;
8
+ }
9
+ }
@@ -26,7 +26,17 @@ body {
26
26
 
27
27
  /* Links */
28
28
  a {
29
- @include unstyled-link;
29
+ color: #1a8cff;
30
+ text-decoration: none;
31
+
32
+ &:hover {
33
+ color: #1a8cff;
34
+ }
35
+
36
+ &:active,
37
+ &:hover {
38
+ outline: 0;
39
+ }
30
40
  }
31
41
 
32
42
  /* Layout utilities */
@@ -92,3 +102,8 @@ a {
92
102
  .mr-4 { margin-right: $spacer-4; }
93
103
  .mb-4 { margin-bottom: $spacer-4; }
94
104
  .ml-4 { margin-left: $spacer-4; }
105
+
106
+ /* Clearfix */
107
+ .clearfix {
108
+ @include clearfix;
109
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-one
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Melgoza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-05 00:00:00.000000000 Z
11
+ date: 2018-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -64,7 +64,7 @@ files:
64
64
  - _includes/head.html
65
65
  - _layouts/default.html
66
66
  - _sass/jekyll-theme-one.scss
67
- - _sass/mixins/_links.scss
67
+ - _sass/mixins/_clearfix.scss
68
68
  - _sass/modules/_global.scss
69
69
  - _sass/modules/_reset.scss
70
70
  - _sass/variables/_base.scss
@@ -1,10 +0,0 @@
1
- // Links
2
-
3
- @mixin unstyled-link() {
4
- color: inherit;
5
- text-decoration: none;
6
-
7
- &:visited {
8
- color: inherit;
9
- }
10
- }