bubblin-jekyll 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 880f12f2fb079839b4b6a5d4dc16864052081e43
4
- data.tar.gz: 99daa7b152585af8281cd343e047425f8afb8c72
3
+ metadata.gz: d7fac6d19581c800c2f42ad2a1f0f7e8e83a9d4b
4
+ data.tar.gz: be7bdb90ed204ecf37db6b615d2905dd80f60064
5
5
  SHA512:
6
- metadata.gz: f8c940a119b9fa5b73c70b99763b6569b22e4bc74bdb2294a523442cc68fc3f42d797b795da3d1aeac2138271fd896c07de8012ba866ea69d3defb1aef26159d
7
- data.tar.gz: 8646507038c4935d3256d3f341b08b2072ca2728f0a3cb2b8250123954afa1f1a173716cf775911d1bfd1ff390b4416d5854c3dfdd5077c98539da6e0fdf1700
6
+ metadata.gz: 8f7f42f0b417cc14dedb08a173a6107863336aabd255210998ee11c37cb3319ad44f320791afddf6568d384b3972b21fad3ebc401b73084f4a32aab4a79a5e74
7
+ data.tar.gz: ba51c8a7aa37c91924222791772a1dd3a786746ee0dca88b9417c58fe6298a847fb90eeaef893c2eb02ffea65e23e733eb1ba6401f2d10293cf8496f39d73680
@@ -1,9 +1,5 @@
1
1
  @import url(https://fonts.googleapis.com/css?family=EB+Garamond);
2
2
 
3
- @charset "utf-8";
4
-
5
-
6
-
7
3
  $base-font-family: 'EB Garamond', serif;
8
4
  $base-font-size: 16px !default;
9
5
  $base-font-weight: 400 !default;
@@ -17,28 +13,30 @@ $grey-color: #828282 !default;
17
13
  $grey-color-light: lighten($grey-color, 40%) !default;
18
14
  $grey-color-dark: darken($grey-color, 25%) !default;
19
15
  $table-text-align: left !default;
16
+
17
+
20
18
  // Width of the content area
21
19
  $content-width: 800px !default;
22
20
  $on-palm: 600px !default;
23
21
  $on-laptop: 800px !default;
24
- // Use media queries like this:
25
- // @include media-query($on-palm) {
26
- // .wrapper {
27
- // padding-right: $spacing-unit / 2;
28
- // padding-left: $spacing-unit / 2;
29
- // }
30
- // }
22
+ @include media-query($on-palm) {
23
+ .wrapper {
24
+ padding-right: $spacing-unit / 2;
25
+ padding-left: $spacing-unit / 2;
26
+ }
27
+ }
31
28
  @mixin media-query($device) {
32
- @media screen and (max-width: $device) {
33
- @content;
34
- }
29
+ @media screen and (max-width: $device) {
30
+ @content;
31
+ }
35
32
  }
36
33
 
37
34
  @mixin relative-font-size($ratio) {
38
35
  font-size: $base-font-size * $ratio;
39
36
  }
40
37
 
41
- // Import partials.
42
- @import "bubblin-jekyll/base",
43
- "bubblin-jekyll/layout",
44
- "bubblin-jekyll/syntax-highlighting";
38
+ @import "bubblin-jekyll/base"
39
+
40
+ @import "bubblin-jekyll/layout"
41
+
42
+ @import "bubblin-jekyll/syntax-highlighting"
@@ -1,18 +1,10 @@
1
- /**
2
- * Reset some basic elements
3
- */
4
- body, h1, h2, h3, h4, h5, h6,
1
+ html, body, h1, h2, h3, h4, h5, h6,
5
2
  p, blockquote, pre, hr,
6
3
  dl, dd, ol, ul, figure {
7
4
  margin: 0;
8
5
  padding: 0;
9
6
  }
10
7
 
11
-
12
-
13
- /**
14
- * Basic styling
15
- */
16
8
  body {
17
9
  font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
18
10
  color: $text-color;
@@ -23,19 +15,9 @@ body {
23
15
  font-display: optional;
24
16
  -moz-osx-font-smoothing: grayscale;
25
17
  -webkit-osx-font-smoothing: antialiased;
26
- -webkit-text-size-adjust: 100%;
27
- -webkit-font-feature-settings: "kern" 1;
28
- -moz-font-feature-settings: "kern" 1;
29
- -o-font-feature-settings: "kern" 1;
30
- font-feature-settings: "kern" 1;
31
- font-kerning: normal;
32
18
  }
33
19
 
34
20
 
35
-
36
- /**
37
- * Set `margin-bottom` to maintain vertical rhythm
38
- */
39
21
  h1, h2, h3, h4, h5, h6,
40
22
  p, blockquote, pre,
41
23
  ul, ol, dl, figure,
@@ -43,21 +25,15 @@ ul, ol, dl, figure,
43
25
  margin-bottom: $spacing-unit / 2;
44
26
  }
45
27
 
28
+ h1, h2, h3, h4, h5, h6 {
29
+ font-weight: $base-font-weight;
30
+ }
46
31
 
47
-
48
- /**
49
- * Images
50
- */
51
32
  img {
52
33
  max-width: 100%;
53
34
  vertical-align: middle;
54
35
  }
55
36
 
56
-
57
-
58
- /**
59
- * Figures
60
- */
61
37
  figure > img {
62
38
  display: block;
63
39
  }
@@ -66,11 +42,6 @@ figcaption {
66
42
  font-size: $small-font-size;
67
43
  }
68
44
 
69
-
70
-
71
- /**
72
- * Lists
73
- */
74
45
  ul, ol {
75
46
  margin-left: $spacing-unit;
76
47
  }
@@ -82,20 +53,6 @@ li {
82
53
  }
83
54
  }
84
55
 
85
-
86
-
87
- /**
88
- * Headings
89
- */
90
- h1, h2, h3, h4, h5, h6 {
91
- font-weight: $base-font-weight;
92
- }
93
-
94
-
95
-
96
- /**
97
- * Links
98
- */
99
56
  a {
100
57
  color: $brand-color;
101
58
  text-decoration: none;
@@ -118,10 +75,6 @@ a {
118
75
  }
119
76
  }
120
77
 
121
-
122
- /**
123
- * Blockquotes
124
- */
125
78
  blockquote {
126
79
  color: $grey-color;
127
80
  border-left: 4px solid $grey-color-light;
@@ -135,11 +88,6 @@ blockquote {
135
88
  }
136
89
  }
137
90
 
138
-
139
-
140
- /**
141
- * Code formatting
142
- */
143
91
  pre,
144
92
  code {
145
93
  @include relative-font-size(0.9375);
@@ -163,11 +111,6 @@ pre {
163
111
  }
164
112
  }
165
113
 
166
-
167
-
168
- /**
169
- * Wrapper
170
- */
171
114
  .wrapper {
172
115
  max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
173
116
  max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
@@ -187,20 +130,12 @@ pre {
187
130
 
188
131
 
189
132
 
190
- /**
191
- * Clearfix
192
- */
193
133
  %clearfix:after {
194
134
  content: "";
195
135
  display: table;
196
136
  clear: both;
197
137
  }
198
138
 
199
-
200
-
201
- /**
202
- * Icons
203
- */
204
139
  .icon > svg {
205
140
  display: inline-block;
206
141
  vertical-align: middle;
@@ -220,11 +155,6 @@ pre {
220
155
  }
221
156
  }
222
157
 
223
-
224
-
225
- /**
226
- * Tables
227
- */
228
158
  table {
229
159
  margin-bottom: $spacing-unit;
230
160
  width: 100%;
@@ -248,4 +178,4 @@ table {
248
178
  td {
249
179
  border: 1px solid $grey-color-light;
250
180
  }
251
- }
181
+ }
@@ -1,6 +1,3 @@
1
- /**
2
- * Site header
3
- */
4
1
  .site-header {
5
2
  border-top: 5px solid $grey-color-dark;
6
3
  border-bottom: 1px solid $grey-color-light;
@@ -203,10 +200,6 @@
203
200
  }
204
201
 
205
202
 
206
-
207
- /**
208
- * Posts
209
- */
210
203
  .post-header {
211
204
  margin-bottom: $spacing-unit;
212
205
  }
@@ -247,4 +240,4 @@
247
240
  @include relative-font-size(1.125);
248
241
  }
249
242
  }
250
- }
243
+ }
@@ -1,6 +1,3 @@
1
- /**
2
- * Syntax highlighting styles
3
- */
4
1
  .highlight {
5
2
  background: #fff;
6
3
  @extend %vertical-rhythm;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bubblin-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marvin Danig