voppe-jekyll-theme 0.2.2 → 0.2.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/_layouts/post.html +1 -1
  3. data/_sass/app.scss +66 -72
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 25a373523f2cae3ff873a8625a8755e97fe641ae
4
- data.tar.gz: e97869792f1fef0ab0d6abb7bcb0165978999e45
3
+ metadata.gz: fe381c0e7fbb3a3ca2a032dfdd39c28804fc84be
4
+ data.tar.gz: 860b57630e6901a6b8b81a20b7d0e119415e014e
5
5
  SHA512:
6
- metadata.gz: bc1e7ea0766e9c92fee7eaf96fbc0d8eeda656f1fec5d96b369cc954cdbd37a23524f917dc94418f4e0ba911c7c3246702f43254cf2e1243298bd7f0ff915f3a
7
- data.tar.gz: 6313338cfb49214cff67640a35caf82b05bac7c36e4d05c562acb2c8ac0ef239b2b137a5a17ec74d037900f00ff29b3dd90c87f11d302edd4353d40cc5336af9
6
+ metadata.gz: cf76fcf9569de5f6816e52e35b5cb07a22ea097cbd26b350cfa89c4e731b1f463f4046d56274bb676a0ae56e03de5003de6b10fdf8eef21a88aa6b8da8e18b44
7
+ data.tar.gz: 664f29458ea594020fa42e58f53bd0d709632138b82c3480d48e8f31185b82775efb05bdbe083c77b986b1d09d9da1c7a0c31be52c9edf6ab7eead9d04df98e8
data/_layouts/post.html CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- <main>
4
+ <main class="post">
5
5
  {% include post.html %}
6
6
  </main>
data/_sass/app.scss CHANGED
@@ -8,93 +8,87 @@ html, body {
8
8
  @include media-tablet {
9
9
  flex-direction: column;
10
10
  }
11
+ }
11
12
 
12
- h1 {
13
- text-transform: uppercase;
14
- font-size: 1.5em;
15
- }
13
+ h1 {
14
+ text-transform: uppercase;
15
+ font-size: 1.5em;
16
+ }
17
+
18
+ nav.list {
19
+ display:flex;
20
+ flex-direction: row-reverse;
21
+ flex-wrap: wrap-reverse;
22
+ justify-content: center;
23
+ align-content: flex-start;
24
+ align-items: flex-start;
16
25
 
17
- .body {
18
- flex: 1;
19
- padding: 1em;
20
-
26
+ a {
27
+ flex-grow: 0;
28
+ flex-shrink: 0;
21
29
  @include media-desktop {
22
- margin-left: 6em;
30
+ flex-basis: 50%;
31
+ }
32
+
33
+ color: inherit;
34
+ text-decoration: none;
35
+
36
+ h1 {
37
+ font-size: 1.5em;
23
38
  }
24
- }
25
39
 
26
- nav.list {
27
- display:flex;
28
- flex-direction: row-reverse;
29
- flex-wrap: wrap-reverse;
30
- justify-content: center;
31
- align-content: flex-start;
32
- align-items: flex-start;
33
-
34
- a {
35
- flex-grow: 0;
36
- flex-shrink: 0;
37
- @include media-desktop {
38
- flex-basis: 50%;
39
- }
40
-
41
- color: inherit;
42
- text-decoration: none;
43
-
44
- h1 {
45
- font-size: 1.5em;
46
- }
47
-
48
- &:hover .card {
49
- background-color: $color-primary;
50
- }
40
+ &:hover .card {
41
+ background-color: $color-primary;
51
42
  }
52
43
  }
53
-
54
- article {
55
- background-color: $color-bg-secondary;
56
- padding: 1em;
57
- flex-basis: 60em;
44
+ }
58
45
 
59
- a {
60
- color: $color-secondary;
46
+ article {
47
+ background-color: $color-bg-secondary;
48
+ padding: 1em;
61
49
 
62
- &:visited {
63
- color: $color-primary;
64
- }
50
+ .post & {
51
+ flex-basis: 60em;
52
+ }
65
53
 
66
- &:hover {
67
- color: $color-text;
68
- }
69
- }
54
+ a {
55
+ color: $color-secondary;
70
56
 
71
- @include media-mobile {
72
- margin-top: 2em;
73
- }
74
- @include media-tablet {
75
- margin-top: 2em;
57
+ &:visited {
58
+ color: $color-primary;
76
59
  }
77
60
 
78
- @include media-desktop {
79
- margin-left: 1em;
80
- margin-right: 1em;
61
+ &:hover {
62
+ color: $color-text;
81
63
  }
82
64
  }
83
65
 
84
- main {
85
- width: 100%;
86
- display:flex;
87
- flex-direction: row;
88
- flex-wrap: wrap;
89
- justify-content: center;
90
- align-content: flex-start;
91
- align-items: flex-start;
92
-
93
- &.jumbotron {
94
- text-align: center;
95
- align-content: center;
96
- align-items: center;
97
- font-size: 6em;
98
- }
66
+ @include media-mobile {
67
+ margin-top: 2em;
68
+ }
69
+ @include media-tablet {
70
+ margin-top: 2em;
71
+ }
72
+
73
+ @include media-desktop {
74
+ margin-left: 1em;
75
+ margin-right: 1em;
76
+ }
77
+ }
78
+
79
+ main {
80
+ width: 100%;
81
+ display:flex;
82
+ flex-direction: row;
83
+ flex-wrap: wrap;
84
+ justify-content: center;
85
+ align-content: flex-start;
86
+ align-items: flex-start;
87
+
88
+ &.jumbotron {
89
+ text-align: center;
90
+ align-content: center;
91
+ align-items: center;
92
+ font-size: 6em;
99
93
  }
100
94
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voppe-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - voppe