askclass-course-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +373 -0
  3. data/README.md +51 -0
  4. data/_config.yml +96 -0
  5. data/_includes/course.html +57 -0
  6. data/_includes/foot/mathjax.html +2 -0
  7. data/_includes/foot/pwaupdate.html +8 -0
  8. data/_includes/footer.html +11 -0
  9. data/_includes/head/common.html +44 -0
  10. data/_includes/head/meta.html +10 -0
  11. data/_includes/header.html +12 -0
  12. data/_includes/logo.html +15 -0
  13. data/_includes/segment/common.html +25 -0
  14. data/_includes/segment/header.html +10 -0
  15. data/_includes/segment/index.html +44 -0
  16. data/_includes/segment/nav.html +40 -0
  17. data/_includes/session/content_revealer.html +6 -0
  18. data/_includes/session/footer.html +29 -0
  19. data/_includes/session/header.html +35 -0
  20. data/_includes/session/item.html +3 -0
  21. data/_includes/session/points.html +11 -0
  22. data/_includes/session/videos.html +5 -0
  23. data/_includes/session/youtube.html +6 -0
  24. data/_layouts/default.html +11 -0
  25. data/_layouts/segment.html +17 -0
  26. data/_layouts/session.html +26 -0
  27. data/_sass/_bullets.scss +15 -0
  28. data/_sass/_default.scss +224 -0
  29. data/_sass/_grid.scss +24 -0
  30. data/_sass/_lesson.scss +35 -0
  31. data/_sass/_paginator.scss +34 -0
  32. data/_sass/_post.scss +57 -0
  33. data/_sass/_tab-colors.scss +81 -0
  34. data/_sass/_tab.scss +138 -0
  35. data/_sass/_tab.scsse +125 -0
  36. data/_sass/_table.scss +17 -0
  37. data/_sass/_video.scss +13 -0
  38. data/assets/css/grid.scss +5 -0
  39. data/assets/css/md.scss +10 -0
  40. data/assets/css/style.scss +4 -0
  41. data/assets/css/tab.scss +5 -0
  42. data/assets/favicon.ico +0 -0
  43. data/assets/loading.svg +6 -0
  44. data/assets/logo-144.png +0 -0
  45. data/assets/logo-192.png +0 -0
  46. data/assets/logo-300.png +0 -0
  47. data/assets/logo-48.png +0 -0
  48. data/assets/logo-512.png +0 -0
  49. data/assets/logo-96.png +0 -0
  50. data/assets/logo-icon.svg +4 -0
  51. data/assets/logo-square-144.png +0 -0
  52. data/assets/logo-square-192.png +0 -0
  53. data/assets/logo-square-300.png +0 -0
  54. data/assets/logo-square-48.png +0 -0
  55. data/assets/logo-square-512.png +0 -0
  56. data/assets/logo-square-96.png +0 -0
  57. data/assets/logo.svg +3 -0
  58. data/assets/site.webmanifest +57 -0
  59. metadata +114 -0
data/_sass/_post.scss ADDED
@@ -0,0 +1,57 @@
1
+ article {
2
+ max-width: var(--contentWidth);
3
+ display: flex;
4
+ flex-direction: column;
5
+ overflow-wrap: break-word;
6
+ word-break: break-word;
7
+ h1, h2, h3, h4 {
8
+ font-family: var(--specialFont);
9
+ margin-bottom: 0;
10
+ }
11
+ h1 {
12
+ & + time {
13
+ color: var(--darkColor);
14
+ font-size: 15px;
15
+ }
16
+ }
17
+ address {
18
+ font-style: normal;
19
+ font-family: var(--secondaryFont);
20
+ margin-top: 1.5em;
21
+ font-size: 1.4em;
22
+ a {
23
+ color: var(--tertiaryColor);
24
+ }
25
+ }
26
+ .text > p:first-child {
27
+ font-size: 25px;
28
+ line-height: 1.3;
29
+ }
30
+ .tags {
31
+ small {
32
+ font-family: var(--secondaryFont);
33
+ color: var(--darkColor);
34
+ }
35
+ }
36
+ .source {
37
+ color: var(--darkColor);
38
+ font-size: 13px;
39
+ & > * {
40
+ margin-left: 10px;
41
+ }
42
+ }
43
+ }
44
+
45
+ blockquote {
46
+ border-left: 5px solid var(--darkColor);
47
+ padding-left: 10px;
48
+ margin: 0 10px 0 20px;
49
+ font-family: var(--specialFont);
50
+ font-size: 19px;
51
+ p {
52
+ margin: 0;
53
+ }
54
+ & + blockquote {
55
+ margin-bottom: 2em;
56
+ }
57
+ }
@@ -0,0 +1,81 @@
1
+ $color-1: #005F73;
2
+ $color-2: #03989E;
3
+ $color-3: #CA6702;
4
+ $color-4: #EE9B00;
5
+ $color-5: #355691;
6
+ $color-6: #4073A0;
7
+ $color-7: #3C5A14;
8
+ $color-8: #598B2C;
9
+ $color-9: #9B2226;
10
+ $color-10: #B18FCF;
11
+
12
+ html {
13
+ --c1: #{$color-1};
14
+ --c2: #{$color-2};
15
+ --c3: #{$color-3};
16
+ --c4: #{$color-4};
17
+ --c5: #{$color-5};
18
+ --c6: #{$color-6};
19
+ --c7: #{$color-7};
20
+ --c8: #{$color-8};
21
+ --c9: #{$color-9};
22
+ --c10: #{$color-10};
23
+ }
24
+
25
+ @mixin paint($color) {
26
+ background-image: linear-gradient(225deg, $color 50%, transparent 50%);
27
+ border-top-color: $color;
28
+ .control, .header {
29
+ a {
30
+ color: $color;
31
+ }
32
+ .button {
33
+ background-color: $color;
34
+ }
35
+ }
36
+ .body {
37
+ h3, h3 a {
38
+ color: $color;
39
+ }
40
+ code, .due {
41
+ color: white;
42
+ background-color: $color;
43
+ }
44
+ }
45
+ &.current {
46
+ .control {
47
+ background-color: $color;
48
+ }
49
+ }
50
+ }
51
+
52
+ .c1 {
53
+ @include paint($color-1);
54
+ }
55
+ .c2 {
56
+ @include paint($color-2);
57
+ }
58
+ .c3 {
59
+ @include paint($color-3);
60
+ }
61
+ .c4 {
62
+ @include paint($color-4);
63
+ }
64
+ .c5 {
65
+ @include paint($color-5);
66
+ }
67
+ .c6 {
68
+ @include paint($color-6);
69
+ }
70
+ .c7 {
71
+ @include paint($color-7);
72
+ }
73
+ .c8 {
74
+ @include paint($color-8);
75
+ }
76
+ .c9 {
77
+ @include paint($color-9);
78
+ }
79
+ .c10 {
80
+ @include paint($color-10);
81
+ }
data/_sass/_tab.scss ADDED
@@ -0,0 +1,138 @@
1
+ $color-bg: whitesmoke;
2
+ $color-fg: #444;
3
+ $size-font: 16px;
4
+
5
+ @mixin special() {
6
+ color: $color-bg;
7
+ font-family: var(--specialFont);
8
+ }
9
+
10
+ html {
11
+ --bg: #{$color-bg};
12
+ --fg: #{$color-fg};
13
+ --fontSize: #{$size-font};
14
+ }
15
+
16
+ .card-tab {
17
+ display: flex;
18
+ flex-direction: column;
19
+ position: relative;
20
+ background-image: linear-gradient(225deg, $color-fg 50%, transparent 50%);
21
+ background-size: 120px 27px;
22
+ background-repeat: no-repeat;
23
+ background-position: right top;
24
+ border-radius: 2px;
25
+ box-shadow: 3px 3px 3px rgba(0, 0, 0, .1);
26
+ border-top-width: 22px;
27
+ border-top-style: solid;
28
+ border-top-color: $color-fg;
29
+ background-color: $color-bg;
30
+ color: $color-fg;
31
+ text-transform: none;
32
+ height: calc(100% - 22px);
33
+ }
34
+
35
+ .top-bar {
36
+ @include special();
37
+ margin: -21px 0 0 5px;
38
+ font-size: 15px;
39
+ text-align: left;
40
+ }
41
+
42
+ .tab {
43
+ @include special();
44
+ position: absolute;
45
+ top: -10px;
46
+ right: 3px;
47
+ font-size: 45px;
48
+ line-height: 30px;
49
+ text-align: right;
50
+ small {
51
+ display: block;
52
+ font-size: 12px;
53
+ }
54
+ .material-symbols-outlined {
55
+ font-size: 24px;
56
+ }
57
+ }
58
+
59
+ .header {
60
+ margin: 4px 50px 0 5px;
61
+ text-align: left;
62
+ line-height: 1;
63
+ height: 20px;
64
+ font-size: 20px;
65
+ overflow: hidden;
66
+ text-overflow: ellipsis;
67
+ display: flex;
68
+ align-items: flex-end;
69
+ font-family: var(--secondaryFont);
70
+ a {
71
+ color: var(--bgColor);
72
+ }
73
+ }
74
+
75
+ .body {
76
+ flex-grow: 2;
77
+ padding: 0 10px;
78
+ overflow: hidden;
79
+ text-align: left;
80
+ h2 {
81
+ word-break: break-word;
82
+ margin-top: 10px;
83
+ line-height: 2.4rem;
84
+ }
85
+ .item {
86
+ margin-bottom: 20px;
87
+ text-align: left;
88
+ font-size: $size-font;
89
+ border-top: 3px outset;
90
+ line-height: normal;
91
+ h3 {
92
+ margin: 3px 5px 0 5px;
93
+ color: $color-fg;
94
+ }
95
+ .due {
96
+ display: flex;
97
+ align-items: center;
98
+ border-radius: 5px;
99
+ margin: 0 3px;
100
+ padding: 2px 5px;
101
+ .material-symbols-outlined {
102
+ font-size: 1.3em;
103
+ font-variation-settings: 'FILL' 1;
104
+ }
105
+ }
106
+ }
107
+ pre, code {
108
+ color: inherit;
109
+ }
110
+ }
111
+
112
+ .control {
113
+ margin-top: 10px;
114
+ padding: 10px;
115
+ display: flex;
116
+ justify-content: space-between;
117
+ a {
118
+ text-decoration: none;
119
+ font-size: $size-font;
120
+ display: contents;
121
+ &.button {
122
+ display: flex;
123
+ border-radius: 5px;
124
+ padding: 5px 10px;
125
+ color: white!important;
126
+ background-color: $color-fg;
127
+ .material-symbols-outlined {
128
+ font-variation-settings: 'FILL' 1;
129
+ }
130
+ }
131
+ }
132
+ .tags {
133
+ font-family: var(--secondaryFont);
134
+ white-space: nowrap;
135
+ text-overflow: ellipsis;
136
+ overflow: hidden;
137
+ }
138
+ }
data/_sass/_tab.scsse ADDED
@@ -0,0 +1,125 @@
1
+ $color-bg: whitesmoke;
2
+ $color-fg: #444;
3
+ $size-font: 16px;
4
+
5
+ @mixin special() {
6
+ color: $color-bg;
7
+ font-family: var(--specialFont);
8
+ }
9
+
10
+ html {
11
+ --bg: #{$color-bg};
12
+ --fg: #{$color-fg};
13
+ --fontSize: #{$size-font};
14
+ }
15
+
16
+ .card-tab {
17
+ display: flex;
18
+ flex-direction: column;
19
+ position: relative;
20
+ background-image: linear-gradient(225deg, $color-fg 50%, transparent 50%);
21
+ background-size: 120px 27px;
22
+ background-repeat: no-repeat;
23
+ background-position: right top;
24
+ border-radius: 2px;
25
+ box-shadow: 3px 3px 3px rgba(0, 0, 0, .1);
26
+ border-top-width: 22px;
27
+ border-top-style: solid;
28
+ border-top-color: $color-fg;
29
+ background-color: $color-bg;
30
+ color: $color-fg;
31
+ text-transform: none;
32
+ height: calc(100% - 22px);
33
+ }
34
+
35
+ .top-bar {
36
+ @include special();
37
+ margin: -21px 0 0 5px;
38
+ font-size: 15px;
39
+ text-align: left;
40
+ }
41
+
42
+ .tab {
43
+ @include special();
44
+ position: absolute;
45
+ top: -10px;
46
+ right: 3px;
47
+ font-size: 45px;
48
+ line-height: 30px;
49
+ text-align: right;
50
+ small {
51
+ display: block;
52
+ font-size: 12px;
53
+ }
54
+ .material-symbols-outlined {
55
+ font-size: 24px;
56
+ }
57
+ }
58
+
59
+ .header {
60
+ margin: 4px 50px 0 5px;
61
+ text-align: left;
62
+ line-height: 1;
63
+ height: 30px;
64
+ font-size: 20px;
65
+ overflow: hidden;
66
+ text-overflow: ellipsis;
67
+ display: -webkit-box;
68
+ -webkit-line-clamp: 2;
69
+ -webkit-box-orient: vertical;
70
+ font-family: var(--secondaryFont);
71
+ a {
72
+ color: var(--bgColor);
73
+ }
74
+ }
75
+
76
+ .body {
77
+ flex-grow: 2;
78
+ padding: 0 10px;
79
+ overflow: hidden;
80
+ text-align: left;
81
+ h2 {
82
+ word-break: break-word;
83
+ margin-top: 10px;
84
+ line-height: 2.4rem;
85
+ }
86
+ .item {
87
+ margin-bottom: 20px;
88
+ text-align: left;
89
+ font-size: $size-font;
90
+ border-top: 3px outset;
91
+ line-height: normal;
92
+ h3 {
93
+ margin: 0 0 0 5px;
94
+ color: $color-fg;
95
+ }
96
+ }
97
+ pre, code {
98
+ color: inherit;
99
+ }
100
+ }
101
+
102
+ .control {
103
+ margin-top: 10px;
104
+ padding: 10px;
105
+ display: flex;
106
+ justify-content: space-between;
107
+ a {
108
+ text-decoration: none;
109
+ font-size: $size-font;
110
+ display: contents;
111
+ &.button {
112
+ display: flex;
113
+ border-radius: 5px;
114
+ padding: 5px 10px;
115
+ color: white!important;
116
+ background-color: $color-fg;
117
+ }
118
+ }
119
+ .tags {
120
+ font-family: var(--secondaryFont);
121
+ white-space: nowrap;
122
+ text-overflow: ellipsis;
123
+ overflow: hidden;
124
+ }
125
+ }
data/_sass/_table.scss ADDED
@@ -0,0 +1,17 @@
1
+ $color-odd: #2a2a2a;
2
+ $color-even: #2f2f2f;
3
+
4
+ table {
5
+ table-layout: fixed;
6
+ tr:nth-child(odd) {
7
+ background-color: $color-odd;
8
+ }
9
+ th, tr:nth-child(even) {
10
+ background-color: $color-even;
11
+ }
12
+ td, th {
13
+ word-break: normal;
14
+ vertical-align: top;
15
+ padding: 7px;
16
+ }
17
+ }
data/_sass/_video.scss ADDED
@@ -0,0 +1,13 @@
1
+ .video-background {
2
+ position: relative;
3
+ padding-bottom: 56.25%; /* 16:9 */
4
+ height: 0;
5
+ iframe {
6
+ position: absolute;
7
+ top: 0;
8
+ left: 0;
9
+ width: 100%;
10
+ height: 100%;
11
+ }
12
+ }
13
+
@@ -0,0 +1,5 @@
1
+ ---
2
+ ---
3
+
4
+ @import "grid";
5
+
@@ -0,0 +1,10 @@
1
+ ---
2
+ ---
3
+
4
+ @import "post";
5
+ @import "paginator";
6
+ @import "bullets";
7
+ @import "table";
8
+ @import "tab-colors";
9
+ @import "video";
10
+ @import "lesson";
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "default";
@@ -0,0 +1,5 @@
1
+ ---
2
+ ---
3
+
4
+ @import "tab";
5
+ @import "tab-colors";
Binary file
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
2
+ <g transform="translate(50 50)">
3
+ <g>
4
+ <animateTransform attributeName="transform" type="rotate" values="0;45" keyTimes="0;1" dur="0.2s" repeatCount="indefinite"></animateTransform><path d="M29.491524206117255 -5.5 L37.491524206117255 -5.5 L37.491524206117255 5.5 L29.491524206117255 5.5 A30 30 0 0 1 24.742744050198738 16.964569457146712 L24.742744050198738 16.964569457146712 L30.399598299691117 22.621423706639092 L22.621423706639096 30.399598299691114 L16.964569457146716 24.742744050198734 A30 30 0 0 1 5.5 29.491524206117255 L5.5 29.491524206117255 L5.5 37.491524206117255 L-5.499999999999997 37.491524206117255 L-5.499999999999997 29.491524206117255 A30 30 0 0 1 -16.964569457146705 24.742744050198738 L-16.964569457146705 24.742744050198738 L-22.621423706639085 30.399598299691117 L-30.399598299691117 22.621423706639092 L-24.742744050198738 16.964569457146712 A30 30 0 0 1 -29.491524206117255 5.500000000000009 L-29.491524206117255 5.500000000000009 L-37.491524206117255 5.50000000000001 L-37.491524206117255 -5.500000000000001
5
+ L-29.491524206117255 -5.500000000000002 A30 30 0 0 1 -24.742744050198738 -16.964569457146705 L-24.742744050198738 -16.964569457146705 L-30.399598299691117 -22.621423706639085 L-22.621423706639092 -30.399598299691117 L-16.964569457146712 -24.742744050198738 A30 30 0 0 1 -5.500000000000011 -29.491524206117255 L-5.500000000000011 -29.491524206117255 L-5.500000000000012 -37.491524206117255 L5.499999999999998 -37.491524206117255 L5.5 -29.491524206117255 A30 30 0 0 1 16.964569457146702 -24.74274405019874 L16.964569457146702 -24.74274405019874 L22.62142370663908 -30.39959829969112 L30.399598299691117 -22.6214237066391 L24.742744050198738 -16.964569457146716 A30 30 0 0 1 29.491524206117255 -5.500000000000013 M0 -20A20 20 0 1 0 0 20 A20 20 0 1 0 0 -20" fill="#eee"></path></g></g>
6
+ </svg>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 300 300">
2
+ <circle cx="150" cy="150" r="150" fill="#ffc100"/>
3
+ <path fill="#2b2b2b" d="m151.53 40.55-86.76 186.5h28.5l30.76-67.62 63.84 25 18.4 42.62h28.96zm.15 58.57 26.38 60.3h-54.03z" />
4
+ </svg>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/assets/logo.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1500 500">
2
+ <path fill="#ffc100" fill-rule="nonzero" d="M222.46 374 263 285l83.77 33.01L370.95 374H409L299.01 129 185 374ZM334 285h-71l36.33-79zm119.43 93c14.12 0 26.18-4.49 36.16-13.47 10.27-9.48 15.41-21.25 15.41-35.32 0-10.97-3.06-19.7-9.19-26.19-6.12-6.48-18.03-13.57-35.72-21.25-12.84-5.49-19.26-11.03-19.26-16.61 0-3.2 1.09-5.82 3.26-7.86a11.05 11.05 0 0 1 7.85-3.07c6.43 0 11.81 4.5 16.16 13.47l27.56-14.82c-8.99-19.25-22.72-28.88-41.2-28.88-12.54 0-23.21 4.14-32 12.42-8.6 8.28-12.9 18.76-12.9 31.43 0 9.58 2.52 17.41 7.56 23.5 3.95 4.79 10.77 9.58 20.45 14.36 3.46 1.7 6.87 3.35 10.22 4.94 3.36 1.6 6.72 3.25 10.08 4.94 8.7 5.19 13.04 10.78 13.04 16.76 0 10.38-5.63 15.57-16.9 15.57-5.62 0-10.46-1.9-14.52-5.69-2.07-1.9-5.08-6.33-9.04-13.32L402 342.23c10.08 23.85 27.22 35.77 51.43 35.77Zm94.51-4v-56.17l5.43-5.4L601.95 374H646l-68.49-84.63 63.81-61.27h-45.56l-47.82 47.19V121H514v253zm212.3 5c21.92 0 42.84-5.64 62.76-16.93v-42.1a175.77 175.77 0 0 1-16.21 12.29 90 90 0 0 1-14.87 8.09c-8.57 4-18.98 6-31.23 6-23.7 0-43.73-8.35-60.07-25.03-16.34-16.68-24.5-37.15-24.5-61.42 0-24.57 8.16-45.34 24.5-62.32 16.24-17.08 36.21-25.62 59.92-25.62 21.52 0 42.34 8.44 62.46 25.32v-41.35C803.67 144.64 783.65 139 762.93 139c-37.95 0-68.88 14.13-92.8 42.4-19.42 23.07-29.13 49.34-29.13 78.8 0 32.86 11.6 60.92 34.82 84.2 23.3 23.06 51.45 34.6 84.42 34.6ZM875 374V121h-34v253zm84.52 4c15.94 0 30.84-6.49 44.7-19.46v15.27H1038V228.04h-33.79v16.91c-13.45-13.97-28.65-20.95-45.6-20.95-19.63 0-35.97 7.28-49.03 21.85-13.05 14.57-19.58 32.78-19.58 54.63 0 22.25 6.53 40.8 19.58 55.67 13.16 14.57 29.8 21.85 49.94 21.85Zm4.73-29c-11.67 0-21.35-4.46-29.03-13.39-7.48-8.82-11.22-20.25-11.22-34.29 0-13.13 3.84-24.16 11.52-33.08 7.78-8.83 17.46-13.24 29.03-13.24 12.27 0 22.25 4.36 29.93 13.08 7.68 8.93 11.52 20.26 11.52 34 0 13.73-3.84 25.06-11.52 33.99-7.68 8.62-17.76 12.93-30.23 12.93Zm139.18 29c14.12 0 26.18-4.49 36.16-13.47 10.27-9.48 15.41-21.25 15.41-35.32 0-10.97-3.06-19.7-9.19-26.19-6.12-6.48-18.03-13.57-35.71-21.25-12.85-5.49-19.27-11.03-19.27-16.61 0-3.2 1.09-5.82 3.26-7.86a11.05 11.05 0 0 1 7.85-3.07c6.43 0 11.81 4.5 16.16 13.47l27.56-14.82c-8.99-19.25-22.72-28.88-41.2-28.88-12.54 0-23.21 4.14-32 12.42-8.6 8.28-12.9 18.76-12.9 31.43 0 9.58 2.52 17.41 7.56 23.5 3.95 4.79 10.77 9.58 20.45 14.36 3.46 1.7 6.86 3.35 10.22 4.94 3.36 1.6 6.72 3.25 10.08 4.94 8.7 5.19 13.04 10.78 13.04 16.76 0 10.38-5.63 15.57-16.9 15.57-5.62 0-10.46-1.9-14.52-5.69-2.07-1.9-5.08-6.33-9.04-13.32L1052 342.23c10.08 23.85 27.22 35.77 51.43 35.77Zm103 0c14.12 0 26.18-4.49 36.16-13.47 10.27-9.48 15.41-21.25 15.41-35.32 0-10.97-3.06-19.7-9.19-26.19-6.12-6.48-18.03-13.57-35.71-21.25-12.85-5.49-19.27-11.03-19.27-16.61 0-3.2 1.09-5.82 3.26-7.86a11.05 11.05 0 0 1 7.85-3.07c6.43 0 11.81 4.5 16.16 13.47l27.56-14.82c-8.99-19.25-22.72-28.88-41.2-28.88-12.54 0-23.21 4.14-32 12.42-8.6 8.28-12.9 18.76-12.9 31.43 0 9.58 2.52 17.41 7.56 23.5 3.95 4.79 10.77 9.58 20.45 14.36 3.46 1.7 6.86 3.35 10.22 4.94 3.36 1.6 6.72 3.25 10.08 4.94 8.7 5.19 13.04 10.78 13.04 16.76 0 10.38-5.63 15.57-16.9 15.57-5.62 0-10.46-1.9-14.52-5.69-2.07-1.9-5.08-6.33-9.04-13.32L1155 342.23c10.08 23.85 27.22 35.77 51.43 35.77Zm88.07 0c5.7 0 10.52-1.97 14.45-5.9a19.9 19.9 0 0 0 6.05-14.6c0-5.6-2.02-10.42-6.05-14.45a19.72 19.72 0 0 0-14.45-6.05c-5.6 0-10.42 2.02-14.45 6.05a19.56 19.56 0 0 0-6.05 14.3c0 5.9 1.97 10.82 5.9 14.75 3.93 3.93 8.8 5.9 14.6 5.9z" display="inline"/>
3
+ </svg>
@@ -0,0 +1,57 @@
1
+ ---
2
+ ---
3
+ {
4
+ "background_color": "{{ site.acc.color.bg }}",
5
+ "theme_color": "{{ site.acc.color.theme }}",
6
+ "name": "{{ site.title }}",
7
+ "short_name": "{{ site.acc.short_name }}",
8
+ "categories": [ "{{ site.acc.categories | join: '","' }}" ],
9
+ "display": "standalone",
10
+ "scope": "/",
11
+ "start_url": "/",
12
+ "description": "{{ site.description | strip_newlines }}",
13
+ "orientation": "portrait-primary",
14
+ "dir": "auto",
15
+ "icons": [
16
+ {
17
+ "src": "logo-300.png",
18
+ "type": "image/png",
19
+ "sizes": "300x300"
20
+ },
21
+ {
22
+ "src": "logo-48.png",
23
+ "sizes": "48x48",
24
+ "type": "image/png",
25
+ "purpose": "maskable"
26
+ },
27
+ {
28
+ "src": "logo-96.png",
29
+ "sizes": "96x96",
30
+ "type": "image/png",
31
+ "purpose": "maskable"
32
+ },
33
+ {
34
+ "src": "logo-144.png",
35
+ "sizes": "144x144",
36
+ "type": "image/png",
37
+ "purpose": "maskable"
38
+ },
39
+ {
40
+ "src": "logo-192.png",
41
+ "sizes": "192x192",
42
+ "type": "image/png",
43
+ "purpose": "maskable"
44
+ },
45
+ {
46
+ "src": "logo-512.png",
47
+ "sizes": "512x512",
48
+ "type": "image/png",
49
+ "purpose": "maskable"
50
+ },
51
+ {
52
+ "src": "logo-icon.svg",
53
+ "type": "image/png",
54
+ "sizes": "any"
55
+ }
56
+ ]
57
+ }
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: askclass-course-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - AskClass
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-10-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.2'
27
+ description:
28
+ email:
29
+ - team@askclass.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE
35
+ - README.md
36
+ - _config.yml
37
+ - _includes/course.html
38
+ - _includes/foot/mathjax.html
39
+ - _includes/foot/pwaupdate.html
40
+ - _includes/footer.html
41
+ - _includes/head/common.html
42
+ - _includes/head/meta.html
43
+ - _includes/header.html
44
+ - _includes/logo.html
45
+ - _includes/segment/common.html
46
+ - _includes/segment/header.html
47
+ - _includes/segment/index.html
48
+ - _includes/segment/nav.html
49
+ - _includes/session/content_revealer.html
50
+ - _includes/session/footer.html
51
+ - _includes/session/header.html
52
+ - _includes/session/item.html
53
+ - _includes/session/points.html
54
+ - _includes/session/videos.html
55
+ - _includes/session/youtube.html
56
+ - _layouts/default.html
57
+ - _layouts/segment.html
58
+ - _layouts/session.html
59
+ - _sass/_bullets.scss
60
+ - _sass/_default.scss
61
+ - _sass/_grid.scss
62
+ - _sass/_lesson.scss
63
+ - _sass/_paginator.scss
64
+ - _sass/_post.scss
65
+ - _sass/_tab-colors.scss
66
+ - _sass/_tab.scss
67
+ - _sass/_tab.scsse
68
+ - _sass/_table.scss
69
+ - _sass/_video.scss
70
+ - assets/css/grid.scss
71
+ - assets/css/md.scss
72
+ - assets/css/style.scss
73
+ - assets/css/tab.scss
74
+ - assets/favicon.ico
75
+ - assets/loading.svg
76
+ - assets/logo-144.png
77
+ - assets/logo-192.png
78
+ - assets/logo-300.png
79
+ - assets/logo-48.png
80
+ - assets/logo-512.png
81
+ - assets/logo-96.png
82
+ - assets/logo-icon.svg
83
+ - assets/logo-square-144.png
84
+ - assets/logo-square-192.png
85
+ - assets/logo-square-300.png
86
+ - assets/logo-square-48.png
87
+ - assets/logo-square-512.png
88
+ - assets/logo-square-96.png
89
+ - assets/logo.svg
90
+ - assets/site.webmanifest
91
+ homepage: https://acc.askclass.com
92
+ licenses:
93
+ - MPL-2.0
94
+ metadata: {}
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubygems_version: 3.2.33
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: Responsive Jekyll theme for putting analog class syllabus online.
114
+ test_files: []