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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 572cc8521c872f728eebe711bf104817e9fd05472a4c76b8447a7ef1f58a1366
4
- data.tar.gz: b7c3efd4ec9d25fc27ac7de2ad5bda85ccc124d0b3959d57d9aa3776fb5395b3
3
+ metadata.gz: 6becfc825217bb8c2480a0fbe501222ff7ad9ae93419507c04507954a1f01ef0
4
+ data.tar.gz: 3d7e1b5b3bdc14f4ad6cbadf4a71a1656c22fb0db75fab3c8a5c47c850081e26
5
5
  SHA512:
6
- metadata.gz: 4f2e13cbd7d2d92f1a92c96d08dd751068b28f8a489fdfc1412d94e2b580afb0680edc4b362c49222b03f711a0bf38f02b3982675b4006f544ba703c1b625ab4
7
- data.tar.gz: c209af4d70a2c1b2a0593161c7de8e72196cb33b9a6ceaa398c6cf0161a599e405dc9db4005bad4d68e75435dda7084ec4d1bd535da88dffc590383b693a4548
6
+ metadata.gz: 470f4b4adfa96a3698db1a9f5952fc3a263862dc726501553632a7dac484b2616fedd6533d5e8803964fbf5507349f1c95cfd5afd5077f900ddce9b2222737dd
7
+ data.tar.gz: f2efcad9f2f27d72727a8cc71f2c7e6566d30f107201ef72e38ca1c5efdbc6ef6151eda431a1bba382d5164cc8fdf0e01bd5e725eab078a1212caf9710423073
data/_config.yml CHANGED
@@ -55,7 +55,7 @@ acc:
55
55
  # Donot change the below (will figure something out later)
56
56
  font_families:
57
57
  - Teko
58
- - Open+Sans
58
+ - Open+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400;1,700
59
59
  - Josefin+Sans
60
60
  - Share+Tech+Mono
61
61
  - Lexend
@@ -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
- <div class="paginator-container spacer">
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: disc;
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: square;
23
+ list-style-type: initial;
12
24
  ul > li {
13
- list-style-type: circle;
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
- h1, h2, h3, h4, .bubble-container {
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: 5px solid var(--color-dark);
106
+ border-left: 2px solid var(--color-dark);
91
107
  padding-left: 10px;
92
108
  margin: 0 10px 0 20px;
93
- font-family: var(--font-special);
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.12.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: 2022-11-27 00:00:00.000000000 Z
11
+ date: 2023-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll