jekyll-theme-noesya 1.0.15 → 1.0.19

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
  SHA256:
3
- metadata.gz: e83bbe3393dccb97c45a47ea82a3fafe15b90933a70a4899671496488da23c56
4
- data.tar.gz: d432e7a63db88d6b306691812f92d71d4d8f9099ef9ab93609ff5e7cfc594398
3
+ metadata.gz: c62ed06ac18c64cc2eb69c1472f6248bd46fc65c8323110ea91e7cb138b33276
4
+ data.tar.gz: 075ea8367c29e1eebd6d6d1401fa9c621c056160babab2fd0181f6745a5ff87b
5
5
  SHA512:
6
- metadata.gz: 454a94be8b2856188d7659062b2df0a76d6cbfe372b6a060b932057a0f7593203dcdd6e6b932bc97daa565725fb7d7e07de96bec069960b5e2f084f169ae0400
7
- data.tar.gz: 1626d661209dad6d79c109053af870df124c67c4fc1971ab24b2a747564eb792d8505150dcce26e5051ecc894a7c07dc586d6bf8a25a9fb443270b715fd56ae2
6
+ metadata.gz: 5feba5957c71b85485aaa5c23266b224218cfa72f8d6d2d32c28730c191c6024b380eb81e6d4a6121c19fde39112807c240a8206ddd092bcd6abde1666695c89
7
+ data.tar.gz: 30a559a845833de496f951bb0fe7dc1548db67bd6b95d1201032e9dff4568f204e7af6b7d905a8c6fec2df1634de48e1c1b9f4144f80e95566ed94617286297a
@@ -18,6 +18,7 @@
18
18
  {% include header.html %}
19
19
  <main aria-label="Content" class="{{ page.class | default: layout.class }}">
20
20
  {{ content }}
21
+ {% include navigation-between-pages.html %}
21
22
  </main>
22
23
  {% include footer.html %}
23
24
 
data/_layouts/page.html CHANGED
@@ -7,6 +7,10 @@ class: page
7
7
  <h1>{{ page.title }}</h1>
8
8
  </header>
9
9
 
10
+ {% if page.sections %}
11
+ {% include sections-with-notes.html %}
12
+ {% endif %}
13
+
10
14
  {% if content != "" %}
11
15
  <section>
12
16
  {{ content }}
@@ -81,37 +81,3 @@
81
81
  a
82
82
  &:hover
83
83
  color: $primary
84
-
85
- main.index
86
- section
87
- li
88
- a
89
- &::after
90
- filter: invert(0)
91
- main.team
92
- p
93
- color: $secondary-reverse
94
-
95
- main.metier
96
- article
97
- p
98
- color: $secondary-reverse
99
-
100
- main.metier
101
- article
102
- p
103
- color: $secondary-reverse
104
- .is-menu-opened &
105
- color: $secondary
106
-
107
- main.member
108
- header+div
109
- background-color: $bg-secondary-color-reverse
110
- > section h2+p
111
- color: $secondary-on-gray-reverse
112
- @include media-breakpoint-up(md)
113
- .is-menu-opened &
114
- background-color: $bg-secondary-color
115
- span
116
- .is-menu-opened &
117
- color: $secondary
@@ -10,6 +10,8 @@ body > header
10
10
  z-index: 2
11
11
  @include media-breakpoint-up(md)
12
12
  padding-top: $grid-gutter * 2
13
+ &.menu_burger_only_mobile
14
+ margin-top: -3px
13
15
  a
14
16
  text-decoration: none
15
17
  // Logo
@@ -102,6 +102,7 @@
102
102
  a
103
103
  color: $primary
104
104
  li
105
+ font-family: $font-family-serif
105
106
  font-size: px2rem(25)
106
107
  margin-bottom: 0
107
108
  &:not(:first-child)
@@ -109,7 +110,8 @@
109
110
  a
110
111
  &.active,
111
112
  &:hover
112
- text-decoration: underline
113
+ text-decoration: underline 1px
114
+ text-underline-offset: 5px
113
115
  @include media-breakpoint-up(lg)
114
116
  .menu_burger_only_mobile &
115
117
  li:not(:first-child)
data/_sass/main.sass CHANGED
@@ -21,4 +21,6 @@
21
21
  @import "layouts/legal"
22
22
  @import "layouts/page"
23
23
 
24
+ @import "pages/index"
25
+
24
26
  @import "commons/darkmode"
@@ -0,0 +1,6 @@
1
+ main.index
2
+ header
3
+ h1
4
+ @include media-breakpoint-up(lg)
5
+ font-size: px2rem(55)
6
+ line-height: px2rem(75)
@@ -15,3 +15,7 @@
15
15
  @mixin media-breakpoint-height-up($height)
16
16
  @media (min-height: ($height)) and (min-width: 1200px)
17
17
  @content
18
+
19
+ @mixin media-breakpoint-height-down($height)
20
+ @media (max-height: ($height)) and (min-width: 1200px)
21
+ @content
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-noesya
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.15
4
+ version: 1.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sébastien Moulène
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-11-04 00:00:00.000000000 Z
13
+ date: 2021-11-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: jekyll
@@ -125,6 +125,7 @@ files:
125
125
  - _sass/layouts/legal.sass
126
126
  - _sass/layouts/page.sass
127
127
  - _sass/main.sass
128
+ - _sass/pages/index.sass
128
129
  - _sass/tools/functions/px2rem.sass
129
130
  - _sass/tools/mixins/container.sass
130
131
  - _sass/tools/mixins/graphics.sass