jekyll-theme-noesya 1.0.9 → 1.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_sass/components/menu.sass +8 -8
- data/_sass/components/nav-between.sass +63 -0
- data/_sass/components/notes.sass +61 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f831149364194c2e5d83bbf03d312eca41a1d8468c1a06e668c5b7f4b382bce7
|
4
|
+
data.tar.gz: 534753743b687e307adc85401d504ccd99f9654ec9d9a4d985c99de12691d784
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0791801ee0a812d6f3b1193bb205685ce1800c6e29381c13228e28690c6f1f7f68b5fb882fd7e13b576cc93d2c206517a9c9ae643ae16d605bb219004b76c325'
|
7
|
+
data.tar.gz: 87033e7b9cca30fdba920cb6afd5dd5e3beaf30af3f0f1b936a858a1e3be8f0fb7ef1c661c7185df32d39bcfbe92f266593c1e5d90fadb55380a7957a77d7818
|
data/_sass/components/menu.sass
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
left: 15px
|
39
39
|
position: absolute
|
40
40
|
transform-origin: center
|
41
|
-
transition: transform 0.
|
41
|
+
transition: transform 0.28s 0.2s $easeInOutQuad
|
42
42
|
width: 20px
|
43
43
|
&::after
|
44
44
|
transform: translateY(-9px)
|
@@ -52,7 +52,7 @@
|
|
52
52
|
left: 15px
|
53
53
|
position: absolute
|
54
54
|
transform-origin: center
|
55
|
-
transition: transform 0.
|
55
|
+
transition: transform 0.28s $easeInOutQuad
|
56
56
|
width: 20px
|
57
57
|
&::after
|
58
58
|
transform: rotate(-45deg) scaleX(0)
|
@@ -60,11 +60,11 @@
|
|
60
60
|
transform: rotate(45deg) scaleX(0)
|
61
61
|
&:hover
|
62
62
|
&::after
|
63
|
-
animation: 0.
|
63
|
+
animation: 0.3s 0.14s menu-hovered $easeInOutQuad
|
64
64
|
i
|
65
|
-
animation: 0.
|
65
|
+
animation: 0.3s 0.07s menu-hovered $easeInOutQuad
|
66
66
|
&::before
|
67
|
-
animation: 0.
|
67
|
+
animation: 0.3s 0s menu-hovered $easeInOutQuad
|
68
68
|
|
69
69
|
.menu
|
70
70
|
backface-visibility: hidden
|
@@ -114,14 +114,14 @@
|
|
114
114
|
span
|
115
115
|
&::after
|
116
116
|
transform: rotate(-45deg) scaleX(1)
|
117
|
-
transition-delay: 0.
|
117
|
+
transition-delay: 0.15s
|
118
118
|
&::before
|
119
119
|
transform: rotate(45deg) scaleX(1)
|
120
|
-
transition-delay: 0.
|
120
|
+
transition-delay: 0.25s
|
121
121
|
|
122
122
|
&::before
|
123
123
|
transform: translateY(9px) scaleX(0)
|
124
|
-
transition-delay: 0.
|
124
|
+
transition-delay: 0.15s
|
125
125
|
i
|
126
126
|
transform: scaleX(0)
|
127
127
|
transition-delay: 0s
|
@@ -0,0 +1,63 @@
|
|
1
|
+
main > nav
|
2
|
+
background-color: $bg-secondary-color
|
3
|
+
overflow-x: hidden
|
4
|
+
ul
|
5
|
+
li
|
6
|
+
@include media-breakpoint-down(md)
|
7
|
+
@include container
|
8
|
+
&:first-child
|
9
|
+
border-bottom: 1px solid $border-color
|
10
|
+
a
|
11
|
+
@extend h2
|
12
|
+
display: block
|
13
|
+
font-family: $font-family-sans-serif
|
14
|
+
margin-bottom: 0
|
15
|
+
padding-bottom: $grid-gutter * 2
|
16
|
+
padding-top: $grid-gutter * 2
|
17
|
+
text-decoration: none
|
18
|
+
span
|
19
|
+
color: $secondary-on-gray
|
20
|
+
|
21
|
+
@include media-breakpoint-up(md)
|
22
|
+
transition: background .3s ease
|
23
|
+
.is-menu-opened &
|
24
|
+
background-color: $bg-secondary-color-reverse
|
25
|
+
ul
|
26
|
+
@include container
|
27
|
+
@include grid(2)
|
28
|
+
> li
|
29
|
+
border-bottom: none
|
30
|
+
a
|
31
|
+
padding-bottom: $grid-gutter * 4
|
32
|
+
padding-top: $grid-gutter * 4
|
33
|
+
position: relative
|
34
|
+
z-index: 1
|
35
|
+
span
|
36
|
+
transition: color .3s ease
|
37
|
+
.is-menu-opened &
|
38
|
+
color: $secondary-reverse
|
39
|
+
li
|
40
|
+
position: relative
|
41
|
+
&::before
|
42
|
+
background: $white
|
43
|
+
content: ''
|
44
|
+
cursor: pointer
|
45
|
+
height: 100%
|
46
|
+
left: calc((max(50vw, #{$grid-width/2}) - #{$grid-width / 2 - $grid-gutter * 2}) * -1)
|
47
|
+
mix-blend-mode: exclusion
|
48
|
+
position: absolute
|
49
|
+
top: 0
|
50
|
+
transition: width 0.35s $easeInOutQuad
|
51
|
+
width: 0
|
52
|
+
z-index: 2
|
53
|
+
&:hover
|
54
|
+
&::before
|
55
|
+
transition: width 3s $easeInOutQuad
|
56
|
+
width: 50vw
|
57
|
+
li + li
|
58
|
+
@include border-line
|
59
|
+
left: -#{$grid-gutter}
|
60
|
+
padding-left: $grid-gutter
|
61
|
+
&::before
|
62
|
+
left: -$grid-gutter
|
63
|
+
right: auto
|
@@ -0,0 +1,61 @@
|
|
1
|
+
aside
|
2
|
+
grid-column: 5/13
|
3
|
+
padding-bottom: $grid-gutter
|
4
|
+
&:hover
|
5
|
+
z-index: 2
|
6
|
+
img
|
7
|
+
border: 1px solid rgba(0, 0, 0, 0.05)
|
8
|
+
display: block
|
9
|
+
margin: $grid-gutter/2 0
|
10
|
+
max-width: 124px
|
11
|
+
p
|
12
|
+
margin-bottom: 0
|
13
|
+
&.is-fixed
|
14
|
+
background: $bg-secondary-color
|
15
|
+
bottom: 0
|
16
|
+
left: 0
|
17
|
+
padding: 5px 15px 10px 10px
|
18
|
+
padding-bottom: env(safe-area-inset-bottom, 10px)
|
19
|
+
position: fixed
|
20
|
+
transform: translateY(100%)
|
21
|
+
width: 100%
|
22
|
+
z-index: 3
|
23
|
+
&.is-handled
|
24
|
+
transition: 0.25s $easeInOutQuad
|
25
|
+
img
|
26
|
+
transition: 0.33s $easeInOutQuad
|
27
|
+
|
28
|
+
&.is-visible
|
29
|
+
&, img
|
30
|
+
transform: translateY(0)
|
31
|
+
img
|
32
|
+
bottom: 12px
|
33
|
+
margin: 0
|
34
|
+
max-width: 100px
|
35
|
+
position: absolute
|
36
|
+
right: 12px
|
37
|
+
transform: translateY(100%)
|
38
|
+
picture + p
|
39
|
+
padding-right: 120px
|
40
|
+
|
41
|
+
&.is-handled:not(.is-fixed)
|
42
|
+
display: flex
|
43
|
+
flex-direction: column-reverse
|
44
|
+
grid-column: 1/5
|
45
|
+
padding-bottom: 0
|
46
|
+
position: absolute
|
47
|
+
img
|
48
|
+
filter: grayscale(1)
|
49
|
+
margin-bottom: $grid-gutter/2
|
50
|
+
opacity: 0.9
|
51
|
+
transition: 0.33s $easeInOutQuad
|
52
|
+
&:hover, &.is-hovered
|
53
|
+
img
|
54
|
+
filter: grayscale(0)
|
55
|
+
opacity: 1
|
56
|
+
&:hover, &.is-hovered
|
57
|
+
a
|
58
|
+
text-decoration-color: black
|
59
|
+
img
|
60
|
+
filter: grayscale(0)
|
61
|
+
opacity: 1
|
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.
|
4
|
+
version: 1.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sébastien Moulène
|
@@ -120,6 +120,8 @@ files:
|
|
120
120
|
- _sass/commons/typography.sass
|
121
121
|
- _sass/components/header.sass
|
122
122
|
- _sass/components/menu.sass
|
123
|
+
- _sass/components/nav-between.sass
|
124
|
+
- _sass/components/notes.sass
|
123
125
|
- _sass/layouts/legal.sass
|
124
126
|
- _sass/layouts/page.sass
|
125
127
|
- _sass/main.sass
|
@@ -154,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
156
|
- !ruby/object:Gem::Version
|
155
157
|
version: '0'
|
156
158
|
requirements: []
|
157
|
-
rubygems_version: 3.1.
|
159
|
+
rubygems_version: 3.1.4
|
158
160
|
signing_key:
|
159
161
|
specification_version: 4
|
160
162
|
summary: Noesya theme for Jekyll.
|