askclass-home-theme 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/boxes/{fullpage.html → normal.html} +9 -2
- data/_includes/boxes/rounded.html +6 -1
- data/_includes/main.html +5 -1
- data/_sass/_base.scss +1 -0
- data/_sass/_defaults.scss +4 -0
- data/_sass/_section.scss +31 -4
- data/assets/css/default.scss +1 -1
- data/assets/css/modules.scss +1 -1
- data/assets/js/scripts.js +23 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3888ff13ef71645169ca769518138c749fce8d231850a3bfbe6f1fc2d8f0dcf
|
|
4
|
+
data.tar.gz: b4680d839fa56737cc97ef1ca1a2eb5e924db313a452be6003b0fbf43b6d1530
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c66ef310e2e133062a22df13ad209460dd19c35a2542d3be020dc451dbda834d6b6c876da5eb5371917587ab9eaa7bce2e8d0fe780d7bd596eeb92c71de45cce
|
|
7
|
+
data.tar.gz: fb283cf2ecc48bdd70a4b11c0e6e55649baea4806a9474b8c38876d6fb3c2182ad202454331c830f3d562990461478182827da11a7ba5e6d4e5333377f7ef2b1
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{%- assign info = include.data %}
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
{%- if include.type == 'fullpage' %}
|
|
3
|
+
{%- capture minHeight %}
|
|
4
4
|
min-height: calc(100vh - {{ info.offset-top | default: '0px' }});
|
|
5
|
+
{%- endcapture %}
|
|
6
|
+
{%- else %}
|
|
7
|
+
{%- assign minHeight = '' %}
|
|
8
|
+
{%- endif %}
|
|
9
|
+
<article class='fullpage'
|
|
10
|
+
style='{{ minHeight }}
|
|
11
|
+
color: {{ info.color | default: 'inherit' }};
|
|
5
12
|
background-color: {{ info.background-color | default: 'transparent' }};
|
|
6
13
|
justify-content: {{ info.justify | default: 'flex-start' }};
|
|
7
14
|
'>
|
|
@@ -17,6 +17,11 @@
|
|
|
17
17
|
'>
|
|
18
18
|
{%- if box.image %}
|
|
19
19
|
<div class='image-overlay'>
|
|
20
|
+
{%- if box.image.color %}
|
|
21
|
+
<div class='overlay'
|
|
22
|
+
onclick='playGif(this)'
|
|
23
|
+
style='background-image: linear-gradient(0deg, {{ box.image.color }}, transparent)'></div>
|
|
24
|
+
{%- endif %}
|
|
20
25
|
<img onclick='playGif(this)'
|
|
21
26
|
src='{{ box.image.src }}'
|
|
22
27
|
data-gif='{{ box.image.gif }}'
|
|
@@ -25,7 +30,7 @@
|
|
|
25
30
|
</div>
|
|
26
31
|
{%- endif %}
|
|
27
32
|
<div class='text-content'>
|
|
28
|
-
<h1 class='{{
|
|
33
|
+
<h1 class='{{ box.class }}'>{{ box.title }}</h1>
|
|
29
34
|
<p>{{ box.text }}</p>
|
|
30
35
|
{%- if box.button %}
|
|
31
36
|
<a class='a-button link' href='{{ box.button.href }}'>
|
data/_includes/main.html
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
{%- assign _slist = site.data[LANG].main.segments | default: site.data.main.segments %}
|
|
2
2
|
{%- for segment in _slist %}
|
|
3
3
|
{%- assign _info = SEGMENTS[segment] %}
|
|
4
|
-
{%-
|
|
4
|
+
{%- if _info.type == 'fullpage' %}
|
|
5
|
+
{%- include boxes/normal.html data=_info type='fullpage' %}
|
|
6
|
+
{%- else %}
|
|
7
|
+
{%- include boxes/{{ _info.type | default: 'normal' }}.html data=_info %}
|
|
8
|
+
{%- endif %}
|
|
5
9
|
{%- endfor %}
|
data/_sass/_base.scss
CHANGED
data/_sass/_defaults.scss
CHANGED
|
@@ -27,6 +27,10 @@ $color-footer-bg: transparent;
|
|
|
27
27
|
$color-footer-fg: #444;
|
|
28
28
|
$color-footer-link: #222;
|
|
29
29
|
|
|
30
|
+
$box-shift-top-margin: -97px;
|
|
31
|
+
$box-shift-shadow: rgba(50,50,50,0.5) 1px 1px 5px;
|
|
32
|
+
$box-larger-font-size: 60px;
|
|
33
|
+
|
|
30
34
|
$margin-footer: 100px 0 0 0;
|
|
31
35
|
|
|
32
36
|
$content-width: 1200px;
|
data/_sass/_section.scss
CHANGED
|
@@ -47,17 +47,15 @@ article {
|
|
|
47
47
|
padding: 4em 1em;
|
|
48
48
|
|
|
49
49
|
.media + .text {
|
|
50
|
-
margin-top:
|
|
50
|
+
margin-top: 1em;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
h4 {
|
|
54
54
|
margin: 0;
|
|
55
55
|
padding: 0;
|
|
56
|
-
color: var(--color-dark);
|
|
57
56
|
}
|
|
58
57
|
p {
|
|
59
58
|
font-family: var(--font-secondary);
|
|
60
|
-
color: var(--color-dark);
|
|
61
59
|
}
|
|
62
60
|
}
|
|
63
61
|
|
|
@@ -65,7 +63,6 @@ article {
|
|
|
65
63
|
display: flex;
|
|
66
64
|
justify-content: center;
|
|
67
65
|
.max-width {
|
|
68
|
-
align-items: flex-start;
|
|
69
66
|
padding: 0 1em;
|
|
70
67
|
width: 100%;
|
|
71
68
|
}
|
|
@@ -74,13 +71,37 @@ article {
|
|
|
74
71
|
box-sizing: border-box;
|
|
75
72
|
border-radius: 1em;
|
|
76
73
|
margin: 1em 0;
|
|
74
|
+
overflow: hidden;
|
|
77
75
|
h1 {
|
|
78
76
|
margin: 0;
|
|
79
77
|
line-height: 1;
|
|
78
|
+
overflow: hidden;
|
|
79
|
+
&.larger {
|
|
80
|
+
font-size: $box-larger-font-size;
|
|
81
|
+
}
|
|
82
|
+
&.shift {
|
|
83
|
+
margin-top: $box-shift-top-margin;
|
|
84
|
+
text-shadow: $box-shift-shadow;
|
|
85
|
+
}
|
|
80
86
|
}
|
|
81
87
|
p {
|
|
82
88
|
font-family: var(--font-secondary);
|
|
83
89
|
}
|
|
90
|
+
.image-overlay {
|
|
91
|
+
position: relative;
|
|
92
|
+
.overlay {
|
|
93
|
+
position: absolute;
|
|
94
|
+
bottom: 0;
|
|
95
|
+
left: 0;
|
|
96
|
+
width: 100%;
|
|
97
|
+
height: 100%;
|
|
98
|
+
background-image: linear-gradient( 0deg, black, transparent);
|
|
99
|
+
}
|
|
100
|
+
transition: all 5s ease-out;
|
|
101
|
+
}
|
|
102
|
+
.text-content {
|
|
103
|
+
position: relative;
|
|
104
|
+
}
|
|
84
105
|
}
|
|
85
106
|
}
|
|
86
107
|
|
|
@@ -111,6 +132,9 @@ article {
|
|
|
111
132
|
|
|
112
133
|
@media screen and (min-width:767px) {
|
|
113
134
|
@include medium();
|
|
135
|
+
&.rounded {
|
|
136
|
+
margin: 20px 0;
|
|
137
|
+
}
|
|
114
138
|
.max-width.split-content {
|
|
115
139
|
flex-direction: row;
|
|
116
140
|
&.align-right {
|
|
@@ -119,6 +143,9 @@ article {
|
|
|
119
143
|
.box, .media, .text {
|
|
120
144
|
flex: 0 0 49%;
|
|
121
145
|
}
|
|
146
|
+
.box {
|
|
147
|
+
height: 100%;
|
|
148
|
+
}
|
|
122
149
|
}
|
|
123
150
|
}
|
|
124
151
|
|
data/assets/css/default.scss
CHANGED
data/assets/css/modules.scss
CHANGED
data/assets/js/scripts.js
CHANGED
|
@@ -1,6 +1,28 @@
|
|
|
1
|
-
function playGif(
|
|
1
|
+
function playGif(overlay) {
|
|
2
|
+
let e = overlay.nextElementSibling;
|
|
3
|
+
|
|
4
|
+
if (overlay.dataset.gif) {
|
|
5
|
+
e = overlay;
|
|
6
|
+
}
|
|
7
|
+
|
|
2
8
|
if (!e.dataset.gif) return ;
|
|
9
|
+
|
|
3
10
|
const bak = e.src;
|
|
4
11
|
e.src = e.dataset.gif;
|
|
5
12
|
e.dataset.gif = bak;
|
|
13
|
+
|
|
14
|
+
if (e.dataset.playing) {
|
|
15
|
+
e.removeAttribute('data-playing');
|
|
16
|
+
if (e !== overlay)
|
|
17
|
+
overlay.style.opacity = 1;
|
|
18
|
+
} else {
|
|
19
|
+
e.dataset.playing = true;
|
|
20
|
+
if (e !== overlay)
|
|
21
|
+
overlay.style.opacity = 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
e.parentElement
|
|
25
|
+
.nextElementSibling
|
|
26
|
+
.firstElementChild
|
|
27
|
+
.style.opacity = e.dataset.playing ? 0.2 : 1;
|
|
6
28
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: askclass-home-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- AskClass
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-04-
|
|
11
|
+
date: 2023-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -34,7 +34,7 @@ files:
|
|
|
34
34
|
- LICENSE
|
|
35
35
|
- README.md
|
|
36
36
|
- _config.yml
|
|
37
|
-
- _includes/boxes/
|
|
37
|
+
- _includes/boxes/normal.html
|
|
38
38
|
- _includes/boxes/rounded.html
|
|
39
39
|
- _includes/foot/js.html
|
|
40
40
|
- _includes/foot/pwaupdate.html
|