overkyll-jekyll-theme 0.9 → 0.9.1

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: 31e550353f4d66b2eee8b1e09bac8f6693aca6ee
4
- data.tar.gz: de36128fd166bd319a60b54bd2ea72dcf1ebfb15
3
+ metadata.gz: 7a2075b842abf11e8096060dca7b1f1ab7a8236d
4
+ data.tar.gz: e5ba37cbf2be01cf421cee53fca790d823a42d30
5
5
  SHA512:
6
- metadata.gz: 0de066a6ab7cf10617a9b4dab449a3196344fd078ca7016365306b9ebd8ff4dd40f9067287af7307cfd4abe74bd4f75fde49e781c3941e98417891fd178c8684
7
- data.tar.gz: bd0daf724c568a3b48f1967f8b9415cbf14a6aba5d9bfc020bb79649f64dcfaf435b60ff187e814fcf86bb6160b7dd128125d0bae5521bd764c53ed4cb1b8f2f
6
+ metadata.gz: d684c89c5aad03ae796e38790cdb821cfaee410d00f26e58bb27e7e0ed2c78cf499e74dd3fd89923a7109b9107435f98ef9f6fa4dc38d2e8b3521e86b1fc6914
7
+ data.tar.gz: 0a49d0bc693275923fe3b0a7930110f62673efa7a5706f0ec5ee42214d370b319728cf33bda9053cea23348d7f1f776826fc6b0eb027cea975c644eaac502001
@@ -1,71 +1,4 @@
1
1
 
2
- /* Webfont: call local webfont */
3
- @if $base-font-name != '-apple-system' {
4
- @font-face {
5
- font-family: '#{$base-font-name}';
6
- src: url('../fonts/#{$base-font-name}-Bold.woff2') format('woff2');
7
- font-style: normal;
8
- font-weight: bold;
9
- }
10
-
11
- /* Webfont: Overpass-BoldItalic */
12
- @font-face {
13
- font-family: '#{$base-font-name}';
14
- src: url('../fonts/#{$base-font-name}-Italic.woff2') format('woff2');
15
- font-style: italic;
16
- font-weight: normal;
17
- }
18
-
19
- /* Webfont: Overpass-Light */
20
- @font-face {
21
- font-family: '#{$base-font-name}';
22
- src: url('../fonts/#{$base-font-name}-Light.woff2') format('woff2');
23
- font-style: normal;
24
- font-weight: normal;
25
- }
26
-
27
- /* Webfont: Overpass-ExtraLight */
28
- @font-face {
29
- font-family: '#{$base-font-name}';
30
- src: url('../fonts/#{$base-font-name}-ExtraLight.woff2') format('woff2');
31
- font-style: normal;
32
- font-weight: 300;
33
- }
34
- }
35
-
36
- @if $title-font-name != '-apple-system' {
37
- @font-face {
38
- font-family: '#{$title-font-name}';
39
- src: url('../fonts/#{$base-font-name}-Bold.woff2') format('woff2');
40
- font-style: normal;
41
- font-weight: bold;
42
- }
43
-
44
- /* Webfont: Overpass-BoldItalic */
45
- @font-face {
46
- font-family: '#{$title-font-name}';
47
- src: url('../fonts/#{$base-font-name}-Italic.woff2') format('woff2');
48
- font-style: italic;
49
- font-weight: normal;
50
- }
51
-
52
- /* Webfont: Overpass-Light */
53
- @font-face {
54
- font-family: '#{$title-font-name}';
55
- src: url('../fonts/#{$base-font-name}-Light.woff2') format('woff2');
56
- font-style: normal;
57
- font-weight: normal;
58
- }
59
-
60
- /* Webfont: Overpass-ExtraLight */
61
- @font-face {
62
- font-family: '#{$title-font-name}';
63
- src: url('../fonts/#{$base-font-name}-ExtraLight.woff2') format('woff2');
64
- font-style: normal;
65
- font-weight: 300;
66
- }
67
- }
68
-
69
2
  /*! system-font.css v1.1.0 | CC0-1.0 License | github.com/jonathantneal/system-font-face */
70
3
 
71
4
  @font-face {
@@ -9,22 +9,10 @@
9
9
  .site-header {
10
10
  position: relative;
11
11
  margin-bottom: $base-line*2;
12
- padding: 0;
12
+ padding: 0 1em;
13
13
  text-align: center;
14
14
  color: #fff;
15
15
  z-index: 0;
16
- .wrapper {
17
- @media #{$small-only} {
18
- max-width: 100%;
19
- }
20
- }
21
- .wrapper--flex {
22
- @media #{$medium-up} {
23
- display: flex;
24
- align-content: center;
25
- align-items: center;
26
- }
27
- }
28
16
  }
29
17
 
30
18
  // Site header top :: logo and menu
@@ -33,7 +21,7 @@
33
21
  flex-direction: column;
34
22
  justify-content: space-between;
35
23
  align-items: center;
36
- padding: $base-line/2;
24
+ padding: $base-line/2 $base-line;
37
25
  width: 100%;
38
26
  background: transparent;
39
27
  @media #{$medium-up} {
@@ -15,7 +15,6 @@ nav {
15
15
  }
16
16
 
17
17
  .nav-main {
18
- flex: 1;
19
18
  @media #{$small-only} {
20
19
  overflow-y: hidden !important;
21
20
  height: 40px !important;
@@ -14,6 +14,7 @@
14
14
  // Base
15
15
  @import "base/normalize";
16
16
  @import "base/base";
17
+ @import "base/font";
17
18
  @import "base/layout";
18
19
 
19
20
  // Generic
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  ---
3
3
 
4
- @import "overkyll-jekyll-theme
4
+ @import "overkyll-jekyll-theme";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: overkyll-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.9'
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - bertrandkeller
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.5.1
19
+ version: '3.5'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.5.1
26
+ version: '3.5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement