bubblin-jekyll 1.0.2 → 1.0.3

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: d7fac6d19581c800c2f42ad2a1f0f7e8e83a9d4b
4
- data.tar.gz: be7bdb90ed204ecf37db6b615d2905dd80f60064
3
+ metadata.gz: 706d57639aeff495be5f12a4b97ea0c7cf7ff28c
4
+ data.tar.gz: 61e37bd8a8f79225a9a2ce1911a0db03b0c61e6e
5
5
  SHA512:
6
- metadata.gz: 8f7f42f0b417cc14dedb08a173a6107863336aabd255210998ee11c37cb3319ad44f320791afddf6568d384b3972b21fad3ebc401b73084f4a32aab4a79a5e74
7
- data.tar.gz: ba51c8a7aa37c91924222791772a1dd3a786746ee0dca88b9417c58fe6298a847fb90eeaef893c2eb02ffea65e23e733eb1ba6401f2d10293cf8496f39d73680
6
+ metadata.gz: 9150ec1ceed3663ca56f1bd65e77af050e831789fce618656b737cf05f6e940a412e227a727108d4816ef126e29d5c2aa7629174d730af068cbd6510326af76d
7
+ data.tar.gz: c1c850e5de1f0aac855fffcbe02aeaa4cf95a617a2964200922334e32b18c9b047489abf3a65ad96089d3c7405fcf77a041852e3746a7e1662b8f0463afcb6f8
@@ -15,28 +15,22 @@ $grey-color-dark: darken($grey-color, 25%) !default;
15
15
  $table-text-align: left !default;
16
16
 
17
17
 
18
- // Width of the content area
19
18
  $content-width: 800px !default;
20
19
  $on-palm: 600px !default;
21
20
  $on-laptop: 800px !default;
22
- @include media-query($on-palm) {
23
- .wrapper {
24
- padding-right: $spacing-unit / 2;
25
- padding-left: $spacing-unit / 2;
26
- }
27
- }
21
+
28
22
  @mixin media-query($device) {
29
- @media screen and (max-width: $device) {
30
- @content;
31
- }
23
+ @media screen and (max-width: $device) {
24
+ @content;
25
+ }
32
26
  }
33
27
 
34
28
  @mixin relative-font-size($ratio) {
35
29
  font-size: $base-font-size * $ratio;
36
30
  }
37
31
 
38
- @import "bubblin-jekyll/base"
32
+ @import "bubblin-jekyll/base";
39
33
 
40
- @import "bubblin-jekyll/layout"
34
+ @import "bubblin-jekyll/layout";
41
35
 
42
- @import "bubblin-jekyll/syntax-highlighting"
36
+ @import "bubblin-jekyll/syntax-highlighting";
@@ -1,4 +1,4 @@
1
- html, body, h1, h2, h3, h4, h5, h6,
1
+ body, h1, h2, h3, h4, h5, h6,
2
2
  p, blockquote, pre, hr,
3
3
  dl, dd, ol, ul, figure {
4
4
  margin: 0;
@@ -15,9 +15,14 @@ body {
15
15
  font-display: optional;
16
16
  -moz-osx-font-smoothing: grayscale;
17
17
  -webkit-osx-font-smoothing: antialiased;
18
+ -webkit-text-size-adjust: 100%;
19
+ -webkit-font-feature-settings: "kern" 1;
20
+ -moz-font-feature-settings: "kern" 1;
21
+ -o-font-feature-settings: "kern" 1;
22
+ font-feature-settings: "kern" 1;
23
+ font-kerning: normal;
18
24
  }
19
25
 
20
-
21
26
  h1, h2, h3, h4, h5, h6,
22
27
  p, blockquote, pre,
23
28
  ul, ol, dl, figure,
@@ -25,10 +30,6 @@ ul, ol, dl, figure,
25
30
  margin-bottom: $spacing-unit / 2;
26
31
  }
27
32
 
28
- h1, h2, h3, h4, h5, h6 {
29
- font-weight: $base-font-weight;
30
- }
31
-
32
33
  img {
33
34
  max-width: 100%;
34
35
  vertical-align: middle;
@@ -53,6 +54,10 @@ li {
53
54
  }
54
55
  }
55
56
 
57
+ h1, h2, h3, h4, h5, h6 {
58
+ font-weight: $base-font-weight;
59
+ }
60
+
56
61
  a {
57
62
  color: $brand-color;
58
63
  text-decoration: none;
@@ -112,24 +117,22 @@ pre {
112
117
  }
113
118
 
114
119
  .wrapper {
115
- max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
116
- max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
120
+ /* max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
121
+ max-width: calc(#{$content-width} - (#{$spacing-unit} * 2)); */
117
122
  margin-right: auto;
118
123
  margin-left: auto;
119
124
  padding-right: $spacing-unit;
120
125
  padding-left: $spacing-unit;
121
126
  @extend %clearfix;
122
127
 
123
- @include media-query($on-laptop) {
128
+ /* @include media-query($on-laptop) {
124
129
  max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
125
130
  max-width: calc(#{$content-width} - (#{$spacing-unit}));
126
131
  padding-right: $spacing-unit / 2;
127
132
  padding-left: $spacing-unit / 2;
128
- }
133
+ } */
129
134
  }
130
135
 
131
-
132
-
133
136
  %clearfix:after {
134
137
  content: "";
135
138
  display: table;
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.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marvin Danig