askclass-course-theme 0.12.0 → 0.13.0
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/_config.yml +1 -1
- data/_includes/session/paginator.html +6 -6
- data/_sass/_bullets.scss +15 -3
- data/_sass/_post.scss +36 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6becfc825217bb8c2480a0fbe501222ff7ad9ae93419507c04507954a1f01ef0
|
|
4
|
+
data.tar.gz: 3d7e1b5b3bdc14f4ad6cbadf4a71a1656c22fb0db75fab3c8a5c47c850081e26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 470f4b4adfa96a3698db1a9f5952fc3a263862dc726501553632a7dac484b2616fedd6533d5e8803964fbf5507349f1c95cfd5afd5077f900ddce9b2222737dd
|
|
7
|
+
data.tar.gz: f2efcad9f2f27d72727a8cc71f2c7e6566d30f107201ef72e38ca1c5efdbc6ef6151eda431a1bba382d5164cc8fdf0e01bd5e725eab078a1212caf9710423073
|
data/_config.yml
CHANGED
|
@@ -26,17 +26,17 @@
|
|
|
26
26
|
{%- endunless -%}
|
|
27
27
|
|
|
28
28
|
<section class="spacer center-align">
|
|
29
|
+
<div class="paginator-container spacer">
|
|
30
|
+
{%- include session/next_prev.html p="previous" item=_prev_item -%}
|
|
31
|
+
{%- include session/next_prev.html p="next" item=_next_item -%}
|
|
32
|
+
</div>
|
|
29
33
|
|
|
30
|
-
{%- include segment/nav.html segment=session_data.segment -%}
|
|
31
34
|
<center>
|
|
32
35
|
{%- if session_data.header -%}
|
|
33
|
-
<small>{{ session_data.header }}</small><br/>
|
|
36
|
+
<small class='special'>{{ session_data.header }}</small><br/>
|
|
34
37
|
{%- endif -%}
|
|
35
38
|
{{ session_data.title }}
|
|
36
39
|
</center>
|
|
37
40
|
|
|
38
|
-
|
|
39
|
-
{%- include session/next_prev.html p="previous" item=_prev_item -%}
|
|
40
|
-
{%- include session/next_prev.html p="next" item=_next_item -%}
|
|
41
|
-
</div>
|
|
41
|
+
{%- include segment/nav.html segment=session_data.segment -%}
|
|
42
42
|
</section>
|
data/_sass/_bullets.scss
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
|
+
ul, ol {
|
|
2
|
+
margin-block-start: 0.5em;
|
|
3
|
+
margin-block-end: 0.5em;
|
|
4
|
+
padding-inline-start: 1em;
|
|
5
|
+
blockquote {
|
|
6
|
+
padding-left: 0.5em;
|
|
7
|
+
margin: 0 0.5em;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
ul ::marker {
|
|
11
|
+
color: var(--color-dark);
|
|
12
|
+
}
|
|
1
13
|
ol > li {
|
|
2
14
|
ul > li {
|
|
3
|
-
list-style-type:
|
|
15
|
+
list-style-type: initial;
|
|
4
16
|
}
|
|
5
17
|
ol > li {
|
|
6
18
|
list-style: lower-alpha;
|
|
@@ -8,8 +20,8 @@ ol > li {
|
|
|
8
20
|
}
|
|
9
21
|
|
|
10
22
|
ul > li > ul > li {
|
|
11
|
-
list-style-type:
|
|
23
|
+
list-style-type: initial;
|
|
12
24
|
ul > li {
|
|
13
|
-
list-style-type:
|
|
25
|
+
list-style-type: initial;
|
|
14
26
|
}
|
|
15
27
|
}
|
data/_sass/_post.scss
CHANGED
|
@@ -14,9 +14,19 @@ article {
|
|
|
14
14
|
&.max-width {
|
|
15
15
|
max-width: var(--content-width);
|
|
16
16
|
}
|
|
17
|
-
|
|
18
|
-
font-family: var(--font-special);
|
|
17
|
+
.bubble-container {
|
|
19
18
|
margin-bottom: 0;
|
|
19
|
+
font-family: var(--font-special);
|
|
20
|
+
}
|
|
21
|
+
h1, h2, h3, h4, h5, h6 {
|
|
22
|
+
margin-bottom: 0.2em;
|
|
23
|
+
font-family: var(--font-main);
|
|
24
|
+
}
|
|
25
|
+
h1, h2, h3 {
|
|
26
|
+
font-weight: 300;
|
|
27
|
+
}
|
|
28
|
+
h4, h5, h6 {
|
|
29
|
+
font-weight: 500;
|
|
20
30
|
}
|
|
21
31
|
h1 {
|
|
22
32
|
& + time {
|
|
@@ -32,6 +42,12 @@ article {
|
|
|
32
42
|
font-size: 0.8em;
|
|
33
43
|
}
|
|
34
44
|
}
|
|
45
|
+
h2 { font-size: 1.9em; }
|
|
46
|
+
h3 { font-size: 1.7em; }
|
|
47
|
+
h4 { font-size: 1.4em; }
|
|
48
|
+
h5 { font-size: 1.2em; }
|
|
49
|
+
h6 { font-size: 1.1em; }
|
|
50
|
+
|
|
35
51
|
code {
|
|
36
52
|
@include boxed();
|
|
37
53
|
}
|
|
@@ -87,11 +103,10 @@ article {
|
|
|
87
103
|
}
|
|
88
104
|
|
|
89
105
|
blockquote {
|
|
90
|
-
border-left:
|
|
106
|
+
border-left: 2px solid var(--color-dark);
|
|
91
107
|
padding-left: 10px;
|
|
92
108
|
margin: 0 10px 0 20px;
|
|
93
|
-
font-
|
|
94
|
-
font-size: 19px;
|
|
109
|
+
font-weight: 300;
|
|
95
110
|
p {
|
|
96
111
|
margin: 0;
|
|
97
112
|
}
|
|
@@ -100,6 +115,22 @@ blockquote {
|
|
|
100
115
|
}
|
|
101
116
|
}
|
|
102
117
|
|
|
118
|
+
dl {
|
|
119
|
+
font-weight: 300;
|
|
120
|
+
dt {
|
|
121
|
+
margin-top: 0.7em;
|
|
122
|
+
font-weight: 500;
|
|
123
|
+
}
|
|
124
|
+
dd {
|
|
125
|
+
margin-left: 1em;
|
|
126
|
+
}
|
|
127
|
+
&.poem dd {
|
|
128
|
+
margin-right: 1em;
|
|
129
|
+
padding-left: 1em;
|
|
130
|
+
text-indent: -1em;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
103
134
|
samp {
|
|
104
135
|
filter: blur(4px);
|
|
105
136
|
font-family: var(--font-special);
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: askclass-course-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- AskClass
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|