jekyll-theme-minimal-ryan 0.7.0 → 0.9.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/CHANGELOG.md +17 -0
- data/README.md +4 -0
- data/_sass/minimal-ryan/_base.scss +18 -11
- data/_sass/minimal-ryan/_theme.scss +4 -4
- data/_sass/minimal-ryan/custom.scss +50 -27
- data/assets/css/code.css +427 -61
- data/assets/css/style.scss +4 -6
- metadata +5 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02a134822e47afafdff48631af9dd455abb2907b2d51f7ea999470719861f3b4
|
4
|
+
data.tar.gz: 7dcd96d8a82988977f96aff9e355a96a078d6932900aed14abf9ec63f964c5f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d455041c44ae667247a7898523e828b09d663d3e6fea9c73c66567fd30e2eca1f87d0aba4bdd193c97f2086ea70597d54492e9c47d1078b948ab4021dc48b4ae
|
7
|
+
data.tar.gz: 2a200133c56155ea72e6b3366be1ae2da8e57fe4096b2a4dfdbb25f01b105f68bdb8e4fd93b7f0b808fb3e3116e0b05fb83bce203d40610208cd6904a8e04a2f
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
## 0.9.0 (2025-08-30)
|
2
|
+
|
3
|
+
### Feat
|
4
|
+
|
5
|
+
- improve readability
|
6
|
+
|
7
|
+
### Refactor
|
8
|
+
|
9
|
+
- remove use of deprecated @import
|
10
|
+
- upgrade dependencies to latest versions
|
11
|
+
|
12
|
+
## 0.8.0 (2024-08-16)
|
13
|
+
|
14
|
+
### Feat
|
15
|
+
|
16
|
+
- change code blocks to match theme
|
17
|
+
|
1
18
|
## 0.7.0 (2024-06-07)
|
2
19
|
|
3
20
|
### Feat
|
data/README.md
CHANGED
@@ -57,3 +57,7 @@ Your theme is setup just like a normal Jekyll site! To test your theme, run `bun
|
|
57
57
|
## License
|
58
58
|
|
59
59
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
60
|
+
|
61
|
+
## Acknowledgements
|
62
|
+
|
63
|
+
- Syntax highlighting for `<code>` blocks comes from https://github.com/jwarby/jekyll-pygments-themes.
|
@@ -1,11 +1,14 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
@use 'theme';
|
2
|
+
|
3
|
+
body, p, ol, ul {
|
3
4
|
margin: 0;
|
4
5
|
padding: 0;
|
5
6
|
}
|
6
7
|
|
7
8
|
body {
|
8
|
-
font:
|
9
|
+
font-family: theme.$base-font-family;
|
10
|
+
font-size: theme.$base-font-size;
|
11
|
+
color: theme.$base-font-color;
|
9
12
|
display: flex;
|
10
13
|
flex-direction: column;
|
11
14
|
}
|
@@ -20,11 +23,11 @@ a {
|
|
20
23
|
}
|
21
24
|
|
22
25
|
header {
|
23
|
-
height:
|
26
|
+
height: theme.$header-height;
|
24
27
|
display: flex;
|
25
28
|
align-items: center;
|
26
29
|
|
27
|
-
background-color:
|
30
|
+
background-color: theme.$primary-color;
|
28
31
|
z-index: 2;
|
29
32
|
|
30
33
|
nav {
|
@@ -38,7 +41,7 @@ header {
|
|
38
41
|
height: 100%;
|
39
42
|
display: flex;
|
40
43
|
align-items: center;
|
41
|
-
font-size:
|
44
|
+
font-size: theme.$big-font-size;
|
42
45
|
}
|
43
46
|
}
|
44
47
|
}
|
@@ -57,20 +60,24 @@ footer {
|
|
57
60
|
|
58
61
|
padding: 60px 0 30px 0;
|
59
62
|
line-height: 23px;
|
60
|
-
font-size:
|
61
|
-
max-width:
|
63
|
+
font-size: theme.$base-font-size;
|
64
|
+
max-width: theme.$content-max-width;
|
62
65
|
|
63
|
-
background-color:
|
66
|
+
background-color: theme.$primary-color;
|
64
67
|
z-index: 2;
|
65
68
|
}
|
66
69
|
|
67
70
|
pre {
|
68
|
-
max-width:
|
71
|
+
max-width: theme.$content-max-width;
|
69
72
|
overflow-x: scroll;
|
70
73
|
}
|
71
74
|
|
72
75
|
aside {
|
73
|
-
background-color:
|
76
|
+
background-color: theme.$tertiary-color-light;
|
74
77
|
box-sizing: border-box;
|
75
78
|
padding: 20px;
|
76
79
|
}
|
80
|
+
|
81
|
+
code {
|
82
|
+
font-size: 14.5px;
|
83
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* Colors */
|
2
|
-
$primary-color:
|
3
|
-
$secondary-color:
|
2
|
+
$primary-color: #fafafa;
|
3
|
+
$secondary-color: #444;
|
4
4
|
$tertiary-color: #575757;
|
5
5
|
$tertiary-color-light: #EAEAEA;
|
6
6
|
|
@@ -8,7 +8,7 @@ $tertiary-color-light: #EAEAEA;
|
|
8
8
|
$base-font-family: "Roboto", Arial;
|
9
9
|
$base-font-color: $secondary-color;
|
10
10
|
|
11
|
-
$base-font-size:
|
11
|
+
$base-font-size: 18px;
|
12
12
|
$big-font-size: 18px;
|
13
13
|
$biggest-font-size: 20px;
|
14
14
|
|
@@ -54,4 +54,4 @@ $screen-width-large: 1200px;
|
|
54
54
|
}
|
55
55
|
|
56
56
|
$header-height: 80px;
|
57
|
-
$content-max-width:
|
57
|
+
$content-max-width: 700px;
|
@@ -1,20 +1,22 @@
|
|
1
|
+
@use 'theme';
|
2
|
+
|
1
3
|
.content-container {
|
2
4
|
margin: auto;
|
3
5
|
|
4
|
-
@include extra-small-screen {
|
6
|
+
@include theme.extra-small-screen {
|
5
7
|
width: 90%;
|
6
8
|
}
|
7
9
|
|
8
|
-
@include small-screen {
|
9
|
-
width:
|
10
|
+
@include theme.small-screen {
|
11
|
+
width: theme.$screen-width-small;
|
10
12
|
}
|
11
13
|
|
12
|
-
@include medium-screen {
|
13
|
-
width:
|
14
|
+
@include theme.medium-screen {
|
15
|
+
width: theme.$screen-width-medium;
|
14
16
|
}
|
15
17
|
|
16
|
-
@include large-screen {
|
17
|
-
width:
|
18
|
+
@include theme.large-screen {
|
19
|
+
width: theme.$screen-width-large;
|
18
20
|
}
|
19
21
|
}
|
20
22
|
|
@@ -31,15 +33,15 @@
|
|
31
33
|
|
32
34
|
#home-page {
|
33
35
|
$large-screen-second-column-width: 45%;
|
34
|
-
$mobile-column-height: calc(90vh - #{
|
36
|
+
$mobile-column-height: calc(90vh - #{theme.$header-height});
|
35
37
|
|
36
38
|
display: flex;
|
37
39
|
flex-direction: column;
|
38
40
|
justify-content: center;
|
39
41
|
|
40
|
-
@include large-screen {
|
42
|
+
@include theme.large-screen {
|
41
43
|
flex-direction: row;
|
42
|
-
height: calc(100vh - #{
|
44
|
+
height: calc(100vh - #{theme.$header-height});
|
43
45
|
}
|
44
46
|
|
45
47
|
#first-column {
|
@@ -48,7 +50,7 @@
|
|
48
50
|
overflow: hidden;
|
49
51
|
height: $mobile-column-height;
|
50
52
|
|
51
|
-
@include large-screen {
|
53
|
+
@include theme.large-screen {
|
52
54
|
width: calc(100% - #{$large-screen-second-column-width});
|
53
55
|
height: 100%;
|
54
56
|
}
|
@@ -59,7 +61,7 @@
|
|
59
61
|
}
|
60
62
|
|
61
63
|
#second-column {
|
62
|
-
background-color:
|
64
|
+
background-color: theme.$primary-color;
|
63
65
|
display: flex;
|
64
66
|
flex-direction: column;
|
65
67
|
justify-content: center;
|
@@ -67,7 +69,7 @@
|
|
67
69
|
width: 100%;
|
68
70
|
height: $mobile-column-height;
|
69
71
|
|
70
|
-
@include large-screen {
|
72
|
+
@include theme.large-screen {
|
71
73
|
width: $large-screen-second-column-width;
|
72
74
|
height: 100%;
|
73
75
|
}
|
@@ -75,7 +77,7 @@
|
|
75
77
|
#content-box {
|
76
78
|
text-align: center;
|
77
79
|
|
78
|
-
@include large-screen {
|
80
|
+
@include theme.large-screen {
|
79
81
|
text-align: right;
|
80
82
|
padding-right: 18%;
|
81
83
|
}
|
@@ -83,27 +85,27 @@
|
|
83
85
|
#home-title {
|
84
86
|
font-size: 16vw;
|
85
87
|
|
86
|
-
@include small-screen {
|
88
|
+
@include theme.small-screen {
|
87
89
|
font-size: 12vw;
|
88
90
|
}
|
89
91
|
|
90
|
-
@include medium-screen {
|
92
|
+
@include theme.medium-screen {
|
91
93
|
font-size: 10vw;
|
92
94
|
}
|
93
95
|
|
94
|
-
@include large-screen {
|
96
|
+
@include theme.large-screen {
|
95
97
|
font-size: 8vw;
|
96
98
|
}
|
97
99
|
}
|
98
100
|
|
99
101
|
p {
|
100
|
-
font-size:
|
102
|
+
font-size: theme.$biggest-font-size;
|
101
103
|
|
102
|
-
@include extra-small-screen {
|
104
|
+
@include theme.extra-small-screen {
|
103
105
|
padding: 0 2%;
|
104
106
|
}
|
105
107
|
|
106
|
-
@include small-screen {
|
108
|
+
@include theme.small-screen {
|
107
109
|
padding: 0;
|
108
110
|
}
|
109
111
|
}
|
@@ -113,7 +115,7 @@
|
|
113
115
|
}
|
114
116
|
|
115
117
|
#blog-page {
|
116
|
-
min-height: calc(100vh - #{
|
118
|
+
min-height: calc(100vh - #{theme.$header-height});
|
117
119
|
|
118
120
|
.post {
|
119
121
|
display: flex;
|
@@ -136,7 +138,7 @@
|
|
136
138
|
width: 100%;
|
137
139
|
|
138
140
|
.post-title {
|
139
|
-
font-size:
|
141
|
+
font-size: theme.$big-font-size;
|
140
142
|
font-weight: bold;
|
141
143
|
padding-bottom: 16px;
|
142
144
|
}
|
@@ -145,7 +147,7 @@
|
|
145
147
|
$line-height: 1.2em;
|
146
148
|
$num-lines: 3;
|
147
149
|
|
148
|
-
color:
|
150
|
+
color: theme.$tertiary-color;
|
149
151
|
overflow: hidden;
|
150
152
|
max-height: calc(#{$line-height} * #{$num-lines});
|
151
153
|
line-height: $line-height;
|
@@ -156,7 +158,7 @@
|
|
156
158
|
}
|
157
159
|
|
158
160
|
#post-page {
|
159
|
-
min-height: calc(100vh - #{
|
161
|
+
min-height: calc(100vh - #{theme.$header-height});
|
160
162
|
display: flex;
|
161
163
|
flex-direction: column;
|
162
164
|
align-items: center;
|
@@ -164,11 +166,11 @@
|
|
164
166
|
& > * {
|
165
167
|
margin: 8px 0;
|
166
168
|
width: 100%;
|
167
|
-
line-height: 1.
|
169
|
+
line-height: 1.8em;
|
168
170
|
}
|
169
171
|
|
170
172
|
& > *:not(#post-title-img) {
|
171
|
-
max-width:
|
173
|
+
max-width: theme.$content-max-width;
|
172
174
|
}
|
173
175
|
|
174
176
|
#post-title-img {
|
@@ -182,10 +184,31 @@
|
|
182
184
|
}
|
183
185
|
|
184
186
|
a {
|
185
|
-
color:
|
187
|
+
color: theme.$tertiary-color;
|
186
188
|
}
|
187
189
|
|
188
190
|
li {
|
189
191
|
padding: 4px 0;
|
190
192
|
}
|
193
|
+
|
194
|
+
h1 {
|
195
|
+
margin-top: 1.5em;
|
196
|
+
}
|
197
|
+
|
198
|
+
h2 {
|
199
|
+
margin-top: 1.4em;
|
200
|
+
}
|
201
|
+
|
202
|
+
h3 {
|
203
|
+
margin-top: 1.3em;
|
204
|
+
}
|
205
|
+
|
206
|
+
h4 {
|
207
|
+
margin-top: 1.2em;
|
208
|
+
}
|
209
|
+
|
210
|
+
h5 {
|
211
|
+
margin-top: 1.1em;
|
212
|
+
}
|
213
|
+
|
191
214
|
}
|
data/assets/css/code.css
CHANGED
@@ -1,61 +1,427 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
.highlight
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
.highlight .
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
.highlight .
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
.highlight .
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
.highlight .na {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
.highlight .
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
.highlight .
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
.highlight .
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
.highlight .
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
.highlight .
|
59
|
-
|
60
|
-
|
61
|
-
|
1
|
+
/* Generated by Pygments CSS Theme Builder - https://jwarby.github.io/jekyll-pygments-themes/builder.html */
|
2
|
+
/* Base Style */
|
3
|
+
.highlight pre {
|
4
|
+
padding: 16px 0px;
|
5
|
+
color: #000000;
|
6
|
+
background-color: #fcfcfc;
|
7
|
+
}
|
8
|
+
|
9
|
+
/* Punctuation */
|
10
|
+
.highlight .p {
|
11
|
+
color: #000000;
|
12
|
+
background-color: #fcfcfc;
|
13
|
+
}
|
14
|
+
|
15
|
+
/* Error */
|
16
|
+
.highlight .err {
|
17
|
+
color: #000000;
|
18
|
+
background-color: #fcfcfc;
|
19
|
+
}
|
20
|
+
|
21
|
+
/* Base Style */
|
22
|
+
.highlight .n {
|
23
|
+
color: #000000;
|
24
|
+
background-color: transparent;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Name Attribute */
|
28
|
+
.highlight .na {
|
29
|
+
color: #000000;
|
30
|
+
background-color: transparent;
|
31
|
+
}
|
32
|
+
|
33
|
+
/* Name Builtin */
|
34
|
+
.highlight .nb {
|
35
|
+
color: #000000;
|
36
|
+
background-color: transparent;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* Name Class */
|
40
|
+
.highlight .nc {
|
41
|
+
color: #000000;
|
42
|
+
background-color: transparent;
|
43
|
+
}
|
44
|
+
|
45
|
+
/* Name Constant */
|
46
|
+
.highlight .no {
|
47
|
+
color: #000000;
|
48
|
+
background-color: transparent;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* Name Decorator */
|
52
|
+
.highlight .nd {
|
53
|
+
color: #000000;
|
54
|
+
background-color: transparent;
|
55
|
+
}
|
56
|
+
|
57
|
+
/* Name Entity */
|
58
|
+
.highlight .ni {
|
59
|
+
color: #000000;
|
60
|
+
background-color: transparent;
|
61
|
+
}
|
62
|
+
|
63
|
+
/* Name Exception */
|
64
|
+
.highlight .ne {
|
65
|
+
color: #000000;
|
66
|
+
background-color: transparent;
|
67
|
+
}
|
68
|
+
|
69
|
+
/* Name Function */
|
70
|
+
.highlight .nf {
|
71
|
+
color: #000000;
|
72
|
+
background-color: transparent;
|
73
|
+
}
|
74
|
+
|
75
|
+
/* Name Label */
|
76
|
+
.highlight .nl {
|
77
|
+
color: #000000;
|
78
|
+
background-color: transparent;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Name Namespace */
|
82
|
+
.highlight .nn {
|
83
|
+
color: #000000;
|
84
|
+
background-color: transparent;
|
85
|
+
}
|
86
|
+
|
87
|
+
/* Name Other */
|
88
|
+
.highlight .nx {
|
89
|
+
color: #000000;
|
90
|
+
background-color: transparent;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* Name Property */
|
94
|
+
.highlight .py {
|
95
|
+
color: #000000;
|
96
|
+
background-color: transparent;
|
97
|
+
}
|
98
|
+
|
99
|
+
/* Name Tag */
|
100
|
+
.highlight .nt {
|
101
|
+
color: #000000;
|
102
|
+
background-color: transparent;
|
103
|
+
}
|
104
|
+
|
105
|
+
/* Name Variable */
|
106
|
+
.highlight .nv {
|
107
|
+
color: #000000;
|
108
|
+
background-color: transparent;
|
109
|
+
}
|
110
|
+
|
111
|
+
/* Name Variable Class */
|
112
|
+
.highlight .vc {
|
113
|
+
color: #000000;
|
114
|
+
background-color: transparent;
|
115
|
+
}
|
116
|
+
|
117
|
+
/* Name Variable Global */
|
118
|
+
.highlight .vg {
|
119
|
+
color: #000000;
|
120
|
+
background-color: transparent;
|
121
|
+
}
|
122
|
+
|
123
|
+
/* Name Variable Instance */
|
124
|
+
.highlight .vi {
|
125
|
+
color: #000000;
|
126
|
+
background-color: transparent;
|
127
|
+
}
|
128
|
+
|
129
|
+
/* Name Builtin Pseudo */
|
130
|
+
.highlight .bp {
|
131
|
+
color: #000000;
|
132
|
+
background-color: transparent;
|
133
|
+
}
|
134
|
+
|
135
|
+
/* Base Style */
|
136
|
+
.highlight .g {
|
137
|
+
color: #000000;
|
138
|
+
background-color: #ffffff;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* */
|
142
|
+
.highlight .gd {
|
143
|
+
color: #000000;
|
144
|
+
background-color: #ffffff;
|
145
|
+
}
|
146
|
+
|
147
|
+
/* Base Style */
|
148
|
+
.highlight .o {
|
149
|
+
color: #000000;
|
150
|
+
background-color: transparent;
|
151
|
+
}
|
152
|
+
|
153
|
+
/* Operator Word */
|
154
|
+
.highlight .ow {
|
155
|
+
color: #000000;
|
156
|
+
background-color: transparent;
|
157
|
+
}
|
158
|
+
|
159
|
+
/* Base Style */
|
160
|
+
.highlight .c {
|
161
|
+
color: #000000;
|
162
|
+
background-color: transparent;
|
163
|
+
}
|
164
|
+
|
165
|
+
/* Comment Multiline */
|
166
|
+
.highlight .cm {
|
167
|
+
color: #000000;
|
168
|
+
background-color: transparent;
|
169
|
+
}
|
170
|
+
|
171
|
+
/* Comment Preproc */
|
172
|
+
.highlight .cp {
|
173
|
+
color: #000000;
|
174
|
+
background-color: transparent;
|
175
|
+
}
|
176
|
+
|
177
|
+
/* Comment Single */
|
178
|
+
.highlight .c1 {
|
179
|
+
color: #000000;
|
180
|
+
background-color: transparent;
|
181
|
+
}
|
182
|
+
|
183
|
+
/* Comment Special */
|
184
|
+
.highlight .cs {
|
185
|
+
color: #000000;
|
186
|
+
background-color: transparent;
|
187
|
+
}
|
188
|
+
|
189
|
+
/* Base Style */
|
190
|
+
.highlight .k {
|
191
|
+
color: #000000;
|
192
|
+
background-color: transparent;
|
193
|
+
}
|
194
|
+
|
195
|
+
/* Keyword Constant */
|
196
|
+
.highlight .kc {
|
197
|
+
color: #000000;
|
198
|
+
background-color: transparent;
|
199
|
+
}
|
200
|
+
|
201
|
+
/* Keyword Declaration */
|
202
|
+
.highlight .kd {
|
203
|
+
color: #000000;
|
204
|
+
background-color: transparent;
|
205
|
+
}
|
206
|
+
|
207
|
+
/* Keyword Namespace */
|
208
|
+
.highlight .kn {
|
209
|
+
color: #000000;
|
210
|
+
background-color: transparent;
|
211
|
+
}
|
212
|
+
|
213
|
+
/* Keyword Pseudo */
|
214
|
+
.highlight .kp {
|
215
|
+
color: #000000;
|
216
|
+
background-color: transparent;
|
217
|
+
}
|
218
|
+
|
219
|
+
/* Keyword Reserved */
|
220
|
+
.highlight .kr {
|
221
|
+
color: #000000;
|
222
|
+
background-color: transparent;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* Keyword Type */
|
226
|
+
.highlight .kt {
|
227
|
+
color: #000000;
|
228
|
+
background-color: transparent;
|
229
|
+
}
|
230
|
+
|
231
|
+
/* Base Style */
|
232
|
+
.highlight .l {
|
233
|
+
color: #000000;
|
234
|
+
background-color: transparent;
|
235
|
+
}
|
236
|
+
|
237
|
+
/* Literal Date */
|
238
|
+
.highlight .ld {
|
239
|
+
color: #000000;
|
240
|
+
background-color: transparent;
|
241
|
+
}
|
242
|
+
|
243
|
+
/* Literal Number */
|
244
|
+
.highlight .m {
|
245
|
+
color: #000000;
|
246
|
+
background-color: transparent;
|
247
|
+
}
|
248
|
+
|
249
|
+
/* Literal Number Float */
|
250
|
+
.highlight .mf {
|
251
|
+
color: #000000;
|
252
|
+
background-color: transparent;
|
253
|
+
}
|
254
|
+
|
255
|
+
/* Literal Number Hex */
|
256
|
+
.highlight .mh {
|
257
|
+
color: #000000;
|
258
|
+
background-color: transparent;
|
259
|
+
}
|
260
|
+
|
261
|
+
/* Literal Number Integer */
|
262
|
+
.highlight .mi {
|
263
|
+
color: #000000;
|
264
|
+
background-color: transparent;
|
265
|
+
}
|
266
|
+
|
267
|
+
/* Literal Number Oct */
|
268
|
+
.highlight .mo {
|
269
|
+
color: #000000;
|
270
|
+
background-color: transparent;
|
271
|
+
}
|
272
|
+
|
273
|
+
/* Literal Number Integer Long */
|
274
|
+
.highlight .il {
|
275
|
+
color: #000000;
|
276
|
+
background-color: transparent;
|
277
|
+
}
|
278
|
+
|
279
|
+
/* Literal String */
|
280
|
+
.highlight .s {
|
281
|
+
color: #000000;
|
282
|
+
background-color: #ffffff;
|
283
|
+
}
|
284
|
+
|
285
|
+
/* Literal String Backtick */
|
286
|
+
.highlight .sb {
|
287
|
+
color: #000000;
|
288
|
+
background-color: transparent;
|
289
|
+
}
|
290
|
+
|
291
|
+
/* Literal String Char */
|
292
|
+
.highlight .sc {
|
293
|
+
color: #000000;
|
294
|
+
background-color: transparent;
|
295
|
+
}
|
296
|
+
|
297
|
+
/* Literal String Doc */
|
298
|
+
.highlight .sd {
|
299
|
+
color: #000000;
|
300
|
+
background-color: transparent;
|
301
|
+
}
|
302
|
+
|
303
|
+
/* Literal String Double */
|
304
|
+
.highlight .s2 {
|
305
|
+
color: #000000;
|
306
|
+
background-color: transparent;
|
307
|
+
}
|
308
|
+
|
309
|
+
/* Literal String Escape */
|
310
|
+
.highlight .se {
|
311
|
+
color: #000000;
|
312
|
+
background-color: transparent;
|
313
|
+
}
|
314
|
+
|
315
|
+
/* Literal String Heredoc */
|
316
|
+
.highlight .sh {
|
317
|
+
color: #000000;
|
318
|
+
background-color: transparent;
|
319
|
+
}
|
320
|
+
|
321
|
+
/* Literal String Interpol */
|
322
|
+
.highlight .si {
|
323
|
+
color: #000000;
|
324
|
+
background-color: transparent;
|
325
|
+
}
|
326
|
+
|
327
|
+
/* Literal String Other */
|
328
|
+
.highlight .sx {
|
329
|
+
color: #000000;
|
330
|
+
background-color: transparent;
|
331
|
+
}
|
332
|
+
|
333
|
+
/* Literal String Regex */
|
334
|
+
.highlight .sr {
|
335
|
+
color: #000000;
|
336
|
+
background-color: transparent;
|
337
|
+
}
|
338
|
+
|
339
|
+
/* Literal String Single */
|
340
|
+
.highlight .s1 {
|
341
|
+
color: #000000;
|
342
|
+
background-color: transparent;
|
343
|
+
}
|
344
|
+
|
345
|
+
/* Literal String Symbol */
|
346
|
+
.highlight .ss {
|
347
|
+
color: #000000;
|
348
|
+
background-color: transparent;
|
349
|
+
}
|
350
|
+
|
351
|
+
/* Base Style */
|
352
|
+
.highlight .g {
|
353
|
+
color: transparent;
|
354
|
+
background-color: transparent;
|
355
|
+
}
|
356
|
+
|
357
|
+
/* Generic Deleted */
|
358
|
+
.highlight .gd {
|
359
|
+
color: transparent;
|
360
|
+
background-color: transparent;
|
361
|
+
}
|
362
|
+
|
363
|
+
/* Generic Emph */
|
364
|
+
.highlight .ge {
|
365
|
+
color: transparent;
|
366
|
+
background-color: transparent;
|
367
|
+
}
|
368
|
+
|
369
|
+
/* Generic Error */
|
370
|
+
.highlight .gr {
|
371
|
+
color: transparent;
|
372
|
+
background-color: transparent;
|
373
|
+
}
|
374
|
+
|
375
|
+
/* Generic Heading */
|
376
|
+
.highlight .gh {
|
377
|
+
color: transparent;
|
378
|
+
background-color: transparent;
|
379
|
+
}
|
380
|
+
|
381
|
+
/* Generic Inserted */
|
382
|
+
.highlight .gi {
|
383
|
+
color: transparent;
|
384
|
+
background-color: transparent;
|
385
|
+
}
|
386
|
+
|
387
|
+
/* Generic Output */
|
388
|
+
.highlight .go {
|
389
|
+
color: transparent;
|
390
|
+
background-color: transparent;
|
391
|
+
}
|
392
|
+
|
393
|
+
/* Generic Prompt */
|
394
|
+
.highlight .gp {
|
395
|
+
color: transparent;
|
396
|
+
background-color: transparent;
|
397
|
+
}
|
398
|
+
|
399
|
+
/* Generic Strong */
|
400
|
+
.highlight .gs {
|
401
|
+
color: transparent;
|
402
|
+
background-color: transparent;
|
403
|
+
}
|
404
|
+
|
405
|
+
/* Generic Subheading */
|
406
|
+
.highlight .gu {
|
407
|
+
color: transparent;
|
408
|
+
background-color: transparent;
|
409
|
+
}
|
410
|
+
|
411
|
+
/* Generic Traceback */
|
412
|
+
.highlight .gt {
|
413
|
+
color: transparent;
|
414
|
+
background-color: transparent;
|
415
|
+
}
|
416
|
+
|
417
|
+
/* Other */
|
418
|
+
.highlight .x {
|
419
|
+
color: #000000;
|
420
|
+
background-color: transparent;
|
421
|
+
}
|
422
|
+
|
423
|
+
/* Text Whitespace */
|
424
|
+
.highlight .w {
|
425
|
+
color: transparent;
|
426
|
+
background-color: transparent;
|
427
|
+
}
|
data/assets/css/style.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-minimal-ryan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ryanshepps
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: jekyll
|
@@ -16,14 +15,14 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - "~>"
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: '4.
|
18
|
+
version: '4.4'
|
20
19
|
type: :runtime
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
23
|
- - "~>"
|
25
24
|
- !ruby/object:Gem::Version
|
26
|
-
version: '4.
|
25
|
+
version: '4.4'
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: jekyll-regex-replace
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -38,7 +37,6 @@ dependencies:
|
|
38
37
|
- - "~>"
|
39
38
|
- !ruby/object:Gem::Version
|
40
39
|
version: 1.1.0
|
41
|
-
description:
|
42
40
|
email:
|
43
41
|
- ryansheppardd@gmail.com
|
44
42
|
executables: []
|
@@ -79,7 +77,6 @@ licenses:
|
|
79
77
|
- MIT
|
80
78
|
metadata:
|
81
79
|
plugin_type: theme
|
82
|
-
post_install_message:
|
83
80
|
rdoc_options: []
|
84
81
|
require_paths:
|
85
82
|
- lib
|
@@ -94,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
91
|
- !ruby/object:Gem::Version
|
95
92
|
version: '0'
|
96
93
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
98
|
-
signing_key:
|
94
|
+
rubygems_version: 3.6.9
|
99
95
|
specification_version: 4
|
100
96
|
summary: Minimalistic blogging theme for Jekyll
|
101
97
|
test_files: []
|