askclass-course-theme 0.13.1 → 0.13.3

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: ca131df680fc8901032da971128f6cff0ffcd95fddf62557450e70c4138f3fee
4
- data.tar.gz: 8e74cc5df19ff760df82172d3c8e59e5203dd8c86f5933e067b554114ceeaa86
3
+ metadata.gz: 9a35de1d672ce03ad7e494efe35fdc772efbbe8a8675fb1ef661251cec9f5b0b
4
+ data.tar.gz: 98b231c60e2a953732b0b66b60402ed9b9481e76a9a70ed7785c56842ffa01cd
5
5
  SHA512:
6
- metadata.gz: a792727db693974fcd0d7cf3a84cb3f90b040a1320a94d32462eb2b980355a3658954d3f17bc46f0e52d8df2884cc9780d01bb81a5731464f3bc9ab3009a2b17
7
- data.tar.gz: 3c9c4410b2210f2b4d4ee09aca9835082f11efbdd95d4aeff045aaef049778c6b17841f3a53483c5578458dbb7e0882cd64c29ff5f1e8564d2abe72693d03e80
6
+ metadata.gz: b37239ef32a1102f048e938a1f76d58c9530a5686d0e37ffc01bb0b19cafd6a11b5802dbe2995361879b38dd7311a11669397a5e357468c129e94c5100889fc6
7
+ data.tar.gz: d4323775984e14171012cb6667bd60aed1c7b3d5adaec2377b7af0633f9fa1a88d192f756a3ca8eeeab1acf4d62ecb649485c869b6fcb679b00d11dafaa2e1e6
data/_config.yml CHANGED
@@ -4,6 +4,8 @@ description: >
4
4
  Organize your analog or digital course using this template
5
5
  to make the syllabus and content easy to read and mobile.
6
6
 
7
+ ignore_theme_config: false
8
+
7
9
  acc:
8
10
  date_format: "%b %d, %y"
9
11
  short_name: "AC Course"
@@ -52,7 +54,6 @@ acc:
52
54
  - icon: "toys"
53
55
  href: "https://app.askclass.com"
54
56
  text: "Icebreakers"
55
- # Donot change the below (will figure something out later)
56
57
  font_families:
57
58
  - Teko
58
59
  - Open+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,700
@@ -84,6 +85,7 @@ defaults:
84
85
 
85
86
  sass:
86
87
  style: compact
88
+ sourcemap: never
87
89
 
88
90
  include:
89
91
  - index.html
@@ -1,5 +1,5 @@
1
1
  {% assign acc = site.acc %}
2
- {% assign desc = page.excerpt | default: site.description | strip_html | strip_newlines %}
2
+ {% assign desc = page.description | default: site.description | strip_html | strip_newlines %}
3
3
  {% assign assets = '/assets/' | prepend: site.url %}
4
4
  {% assign families = acc.font_families | join: "&family=" %}
5
5
  {% assign og_image = acc.meta.og_image | prepend: assets %}
data/_sass/_base.scss CHANGED
@@ -15,6 +15,7 @@
15
15
  --color-link: #{$color-link};
16
16
  --color-dark: #{$color-dark};
17
17
  --color-theme: #{$color-theme};
18
+ --color-bullet: #{$color-bullet};
18
19
  --color-row-odd: #{$color-row-odd};
19
20
  --color-row-even: #{$color-row-even};
20
21
 
data/_sass/_bullets.scss CHANGED
@@ -11,7 +11,7 @@ ul, ol {
11
11
  }
12
12
  }
13
13
  ol ::marker, ul ::marker {
14
- color: var(--color-dark);
14
+ color: var(--color-bullet);
15
15
  }
16
16
  ol > li {
17
17
  ul > li {
@@ -14,6 +14,7 @@ $color-fg: ivory;
14
14
  $color-dark: gray;
15
15
  $color-link: deeppink;
16
16
  $color-theme: #ffc100;
17
+ $color-bullet: gray;
17
18
 
18
19
  $color-row-odd: #2a2a2a;
19
20
  $color-row-even: #2f2f2f;
@@ -28,7 +29,3 @@ $content-width: 600px;
28
29
 
29
30
  $grid-width: 180px;
30
31
  $grid-image-height: 180px;
31
-
32
- @import
33
- "init",
34
- "base";
data/_sass/_post.scss CHANGED
@@ -42,7 +42,7 @@ article {
42
42
  font-size: 0.8em;
43
43
  }
44
44
  }
45
- h2 { font-size: 1.9em; }
45
+ h2 { font-size: 2.0em; }
46
46
  h3 { font-size: 1.7em; }
47
47
  h4 { font-size: 1.4em; }
48
48
  h5 { font-size: 1.2em; }
@@ -55,12 +55,14 @@ article {
55
55
  margin: 0;
56
56
  width: 100%;
57
57
  overflow-x: auto;
58
+ white-space: pre-wrap;
58
59
  code {
59
60
  border: 0;
60
61
  background-color: inherit;
61
62
  border-radius: 0;
62
63
  padding: 0;
63
64
  margin: 0;
65
+ white-space: pre;
64
66
  }
65
67
  }
66
68
  p:has(> sub) {
@@ -138,7 +140,7 @@ article {
138
140
  }
139
141
 
140
142
  blockquote {
141
- border-left: 2px solid var(--color-dark);
143
+ border-left: 2px solid var(--color-bullet);
142
144
  padding-left: 10px;
143
145
  margin: 0 10px 0 20px;
144
146
  font-weight: 300;
@@ -146,7 +148,7 @@ blockquote {
146
148
  margin: 0;
147
149
  }
148
150
  & + blockquote {
149
- margin-bottom: 2em;
151
+ margin-top: 10px;
150
152
  }
151
153
  }
152
154
 
@@ -1,8 +1,3 @@
1
1
  ---
2
2
  ---
3
-
4
- @import
5
- "post",
6
- "bubbles",
7
- "default";
8
-
3
+ @import "post", "bubbles", "default", "init", "base";
@@ -1,6 +1,3 @@
1
1
  ---
2
2
  ---
3
-
4
- @import
5
- "grid",
6
- "default";
3
+ @import "grid", "default", "init", "base";
@@ -1,6 +1,3 @@
1
1
  ---
2
2
  ---
3
-
4
- @import
5
- "post",
6
- "default";
3
+ @import "post", "default", "init", "base";
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.13.1
4
+ version: 0.13.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-01-20 00:00:00.000000000 Z
11
+ date: 2023-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -66,6 +66,7 @@ files:
66
66
  - _sass/_base.scss
67
67
  - _sass/_bubbles.scss
68
68
  - _sass/_bullets.scss
69
+ - _sass/_default.scss
69
70
  - _sass/_grid.scss
70
71
  - _sass/_paginator.scss
71
72
  - _sass/_post.scss
@@ -73,7 +74,6 @@ files:
73
74
  - _sass/_tab.scss
74
75
  - _sass/_table.scss
75
76
  - _sass/_video.scss
76
- - _sass/default.scss
77
77
  - _sass/init.scss
78
78
  - assets/css/dialog.scss
79
79
  - assets/css/segment.scss