steve-for-jekyll 1.2.1 → 1.2.3
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/404.html +9 -9
- data/LICENSE.txt +21 -21
- data/README.md +46 -46
- data/_config.yml +1 -2
- data/_includes/blog/custom-widgets.html +3 -3
- data/_includes/blog/post.html +57 -57
- data/_includes/blog/sidebar.html +42 -42
- data/_includes/footer/custom-text.html +5 -5
- data/_includes/footer/links.html +11 -11
- data/_includes/footer.html +11 -11
- data/_includes/head.html +9 -9
- data/_includes/header/menu.html +12 -12
- data/_includes/header.html +17 -17
- data/_includes/post/comment-form.html +69 -69
- data/_includes/post/comments.html +47 -47
- data/_includes/search-form.html +13 -13
- data/_layouts/archive.html +21 -21
- data/_layouts/blog.html +9 -9
- data/_layouts/default.html +18 -18
- data/_layouts/home.html +23 -23
- data/_layouts/page.html +15 -15
- data/_layouts/post.html +115 -115
- data/_sass/steve/_base.scss +269 -269
- data/_sass/steve/_layout.scss +477 -472
- data/_sass/steve/_syntax.scss +252 -252
- data/_sass/steve-for-jekyll.scss +51 -51
- data/assets/css/screen.scss +34 -34
- data/assets/js/responsive-videos.js +79 -79
- data/staticman.yml +30 -30
- metadata +7 -35
data/_sass/steve/_syntax.scss
CHANGED
@@ -1,252 +1,252 @@
|
|
1
|
-
// Code
|
2
|
-
//
|
3
|
-
// Inline and block-level code snippets. Includes tweaks to syntax highlighted
|
4
|
-
// snippets from Pygments/Rouge and Gist embeds.
|
5
|
-
|
6
|
-
code,
|
7
|
-
pre {
|
8
|
-
font-family: var(--font-code);
|
9
|
-
}
|
10
|
-
|
11
|
-
code {
|
12
|
-
font-size: 85%;
|
13
|
-
}
|
14
|
-
|
15
|
-
pre {
|
16
|
-
display: block;
|
17
|
-
margin-top: 0;
|
18
|
-
margin-bottom: var(--spacer-3);
|
19
|
-
overflow: auto;
|
20
|
-
}
|
21
|
-
|
22
|
-
.highlight {
|
23
|
-
padding: var(--spacer);
|
24
|
-
margin-bottom: var(--spacer);
|
25
|
-
background-color: var(--code-bg);
|
26
|
-
border-radius: var(--border-radius);
|
27
|
-
|
28
|
-
pre {
|
29
|
-
margin-bottom: 0;
|
30
|
-
}
|
31
|
-
|
32
|
-
// Triple backticks (code fencing) doubles the .highlight elements
|
33
|
-
.highlight {
|
34
|
-
padding: 0;
|
35
|
-
}
|
36
|
-
}
|
37
|
-
|
38
|
-
.rouge-table {
|
39
|
-
margin-bottom: 0;
|
40
|
-
font-size: 100%;
|
41
|
-
|
42
|
-
&,
|
43
|
-
td,
|
44
|
-
th {
|
45
|
-
border: 0;
|
46
|
-
}
|
47
|
-
|
48
|
-
.gutter {
|
49
|
-
vertical-align: top;
|
50
|
-
user-select: none;
|
51
|
-
opacity: 0.25;
|
52
|
-
}
|
53
|
-
}
|
54
|
-
|
55
|
-
// Gist via GitHub Pages
|
56
|
-
.gist .markdown-body {
|
57
|
-
padding: 15px !important;
|
58
|
-
}
|
59
|
-
|
60
|
-
.highlight .hll {
|
61
|
-
background-color: #ffc;
|
62
|
-
}
|
63
|
-
.highlight .c {
|
64
|
-
color: #999;
|
65
|
-
} /* Comment */
|
66
|
-
.highlight .err {
|
67
|
-
color: #a00;
|
68
|
-
background-color: #faa;
|
69
|
-
} /* Error */
|
70
|
-
.highlight .k {
|
71
|
-
color: #069;
|
72
|
-
} /* Keyword */
|
73
|
-
.highlight .o {
|
74
|
-
color: #555;
|
75
|
-
} /* Operator */
|
76
|
-
.highlight .cm {
|
77
|
-
color: #09f;
|
78
|
-
font-style: italic;
|
79
|
-
} /* Comment.Multiline */
|
80
|
-
.highlight .cp {
|
81
|
-
color: #099;
|
82
|
-
} /* Comment.Preproc */
|
83
|
-
.highlight .c1 {
|
84
|
-
color: #999;
|
85
|
-
} /* Comment.Single */
|
86
|
-
.highlight .cs {
|
87
|
-
color: #999;
|
88
|
-
} /* Comment.Special */
|
89
|
-
.highlight .gd {
|
90
|
-
background-color: #fcc;
|
91
|
-
border: 1px solid #c00;
|
92
|
-
} /* Generic.Deleted */
|
93
|
-
.highlight .ge {
|
94
|
-
font-style: italic;
|
95
|
-
} /* Generic.Emph */
|
96
|
-
.highlight .gr {
|
97
|
-
color: #f00;
|
98
|
-
} /* Generic.Error */
|
99
|
-
.highlight .gh {
|
100
|
-
color: #030;
|
101
|
-
} /* Generic.Heading */
|
102
|
-
.highlight .gi {
|
103
|
-
background-color: #cfc;
|
104
|
-
border: 1px solid #0c0;
|
105
|
-
} /* Generic.Inserted */
|
106
|
-
.highlight .go {
|
107
|
-
color: #aaa;
|
108
|
-
} /* Generic.Output */
|
109
|
-
.highlight .gp {
|
110
|
-
color: #009;
|
111
|
-
} /* Generic.Prompt */
|
112
|
-
.highlight .gs {
|
113
|
-
} /* Generic.Strong */
|
114
|
-
.highlight .gu {
|
115
|
-
color: #030;
|
116
|
-
} /* Generic.Subheading */
|
117
|
-
.highlight .gt {
|
118
|
-
color: #9c6;
|
119
|
-
} /* Generic.Traceback */
|
120
|
-
.highlight .kc {
|
121
|
-
color: #069;
|
122
|
-
} /* Keyword.Constant */
|
123
|
-
.highlight .kd {
|
124
|
-
color: #069;
|
125
|
-
} /* Keyword.Declaration */
|
126
|
-
.highlight .kn {
|
127
|
-
color: #069;
|
128
|
-
} /* Keyword.Namespace */
|
129
|
-
.highlight .kp {
|
130
|
-
color: #069;
|
131
|
-
} /* Keyword.Pseudo */
|
132
|
-
.highlight .kr {
|
133
|
-
color: #069;
|
134
|
-
} /* Keyword.Reserved */
|
135
|
-
.highlight .kt {
|
136
|
-
color: #078;
|
137
|
-
} /* Keyword.Type */
|
138
|
-
.highlight .m {
|
139
|
-
color: #f60;
|
140
|
-
} /* Literal.Number */
|
141
|
-
.highlight .s {
|
142
|
-
color: #d44950;
|
143
|
-
} /* Literal.String */
|
144
|
-
.highlight .na {
|
145
|
-
color: #4f9fcf;
|
146
|
-
} /* Name.Attribute */
|
147
|
-
.highlight .nb {
|
148
|
-
color: #366;
|
149
|
-
} /* Name.Builtin */
|
150
|
-
.highlight .nc {
|
151
|
-
color: #0a8;
|
152
|
-
} /* Name.Class */
|
153
|
-
.highlight .no {
|
154
|
-
color: #360;
|
155
|
-
} /* Name.Constant */
|
156
|
-
.highlight .nd {
|
157
|
-
color: #99f;
|
158
|
-
} /* Name.Decorator */
|
159
|
-
.highlight .ni {
|
160
|
-
color: #999;
|
161
|
-
} /* Name.Entity */
|
162
|
-
.highlight .ne {
|
163
|
-
color: #c00;
|
164
|
-
} /* Name.Exception */
|
165
|
-
.highlight .nf {
|
166
|
-
color: #c0f;
|
167
|
-
} /* Name.Function */
|
168
|
-
.highlight .nl {
|
169
|
-
color: #99f;
|
170
|
-
} /* Name.Label */
|
171
|
-
.highlight .nn {
|
172
|
-
color: #0cf;
|
173
|
-
} /* Name.Namespace */
|
174
|
-
.highlight .nt {
|
175
|
-
color: #2f6f9f;
|
176
|
-
} /* Name.Tag */
|
177
|
-
.highlight .nv {
|
178
|
-
color: #033;
|
179
|
-
} /* Name.Variable */
|
180
|
-
.highlight .ow {
|
181
|
-
color: #000;
|
182
|
-
} /* Operator.Word */
|
183
|
-
.highlight .w {
|
184
|
-
color: #bbb;
|
185
|
-
} /* Text.Whitespace */
|
186
|
-
.highlight .mf {
|
187
|
-
color: #f60;
|
188
|
-
} /* Literal.Number.Float */
|
189
|
-
.highlight .mh {
|
190
|
-
color: #f60;
|
191
|
-
} /* Literal.Number.Hex */
|
192
|
-
.highlight .mi {
|
193
|
-
color: #f60;
|
194
|
-
} /* Literal.Number.Integer */
|
195
|
-
.highlight .mo {
|
196
|
-
color: #f60;
|
197
|
-
} /* Literal.Number.Oct */
|
198
|
-
.highlight .sb {
|
199
|
-
color: #c30;
|
200
|
-
} /* Literal.String.Backtick */
|
201
|
-
.highlight .sc {
|
202
|
-
color: #c30;
|
203
|
-
} /* Literal.String.Char */
|
204
|
-
.highlight .sd {
|
205
|
-
color: #c30;
|
206
|
-
font-style: italic;
|
207
|
-
} /* Literal.String.Doc */
|
208
|
-
.highlight .s2 {
|
209
|
-
color: #c30;
|
210
|
-
} /* Literal.String.Double */
|
211
|
-
.highlight .se {
|
212
|
-
color: #c30;
|
213
|
-
} /* Literal.String.Escape */
|
214
|
-
.highlight .sh {
|
215
|
-
color: #c30;
|
216
|
-
} /* Literal.String.Heredoc */
|
217
|
-
.highlight .si {
|
218
|
-
color: #a00;
|
219
|
-
} /* Literal.String.Interpol */
|
220
|
-
.highlight .sx {
|
221
|
-
color: #c30;
|
222
|
-
} /* Literal.String.Other */
|
223
|
-
.highlight .sr {
|
224
|
-
color: #3aa;
|
225
|
-
} /* Literal.String.Regex */
|
226
|
-
.highlight .s1 {
|
227
|
-
color: #c30;
|
228
|
-
} /* Literal.String.Single */
|
229
|
-
.highlight .ss {
|
230
|
-
color: #fc3;
|
231
|
-
} /* Literal.String.Symbol */
|
232
|
-
.highlight .bp {
|
233
|
-
color: #366;
|
234
|
-
} /* Name.Builtin.Pseudo */
|
235
|
-
.highlight .vc {
|
236
|
-
color: #033;
|
237
|
-
} /* Name.Variable.Class */
|
238
|
-
.highlight .vg {
|
239
|
-
color: #033;
|
240
|
-
} /* Name.Variable.Global */
|
241
|
-
.highlight .vi {
|
242
|
-
color: #033;
|
243
|
-
} /* Name.Variable.Instance */
|
244
|
-
.highlight .il {
|
245
|
-
color: #f60;
|
246
|
-
} /* Literal.Number.Integer.Long */
|
247
|
-
|
248
|
-
.css .o,
|
249
|
-
.css .o + .nt,
|
250
|
-
.css .nt + .nt {
|
251
|
-
color: #999;
|
252
|
-
}
|
1
|
+
// Code
|
2
|
+
//
|
3
|
+
// Inline and block-level code snippets. Includes tweaks to syntax highlighted
|
4
|
+
// snippets from Pygments/Rouge and Gist embeds.
|
5
|
+
|
6
|
+
code,
|
7
|
+
pre {
|
8
|
+
font-family: var(--font-code);
|
9
|
+
}
|
10
|
+
|
11
|
+
code {
|
12
|
+
font-size: 85%;
|
13
|
+
}
|
14
|
+
|
15
|
+
pre {
|
16
|
+
display: block;
|
17
|
+
margin-top: 0;
|
18
|
+
margin-bottom: var(--spacer-3);
|
19
|
+
overflow: auto;
|
20
|
+
}
|
21
|
+
|
22
|
+
.highlight {
|
23
|
+
padding: var(--spacer);
|
24
|
+
margin-bottom: var(--spacer);
|
25
|
+
background-color: var(--code-bg);
|
26
|
+
border-radius: var(--border-radius);
|
27
|
+
|
28
|
+
pre {
|
29
|
+
margin-bottom: 0;
|
30
|
+
}
|
31
|
+
|
32
|
+
// Triple backticks (code fencing) doubles the .highlight elements
|
33
|
+
.highlight {
|
34
|
+
padding: 0;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
.rouge-table {
|
39
|
+
margin-bottom: 0;
|
40
|
+
font-size: 100%;
|
41
|
+
|
42
|
+
&,
|
43
|
+
td,
|
44
|
+
th {
|
45
|
+
border: 0;
|
46
|
+
}
|
47
|
+
|
48
|
+
.gutter {
|
49
|
+
vertical-align: top;
|
50
|
+
user-select: none;
|
51
|
+
opacity: 0.25;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
// Gist via GitHub Pages
|
56
|
+
.gist .markdown-body {
|
57
|
+
padding: 15px !important;
|
58
|
+
}
|
59
|
+
|
60
|
+
.highlight .hll {
|
61
|
+
background-color: #ffc;
|
62
|
+
}
|
63
|
+
.highlight .c {
|
64
|
+
color: #999;
|
65
|
+
} /* Comment */
|
66
|
+
.highlight .err {
|
67
|
+
color: #a00;
|
68
|
+
background-color: #faa;
|
69
|
+
} /* Error */
|
70
|
+
.highlight .k {
|
71
|
+
color: #069;
|
72
|
+
} /* Keyword */
|
73
|
+
.highlight .o {
|
74
|
+
color: #555;
|
75
|
+
} /* Operator */
|
76
|
+
.highlight .cm {
|
77
|
+
color: #09f;
|
78
|
+
font-style: italic;
|
79
|
+
} /* Comment.Multiline */
|
80
|
+
.highlight .cp {
|
81
|
+
color: #099;
|
82
|
+
} /* Comment.Preproc */
|
83
|
+
.highlight .c1 {
|
84
|
+
color: #999;
|
85
|
+
} /* Comment.Single */
|
86
|
+
.highlight .cs {
|
87
|
+
color: #999;
|
88
|
+
} /* Comment.Special */
|
89
|
+
.highlight .gd {
|
90
|
+
background-color: #fcc;
|
91
|
+
border: 1px solid #c00;
|
92
|
+
} /* Generic.Deleted */
|
93
|
+
.highlight .ge {
|
94
|
+
font-style: italic;
|
95
|
+
} /* Generic.Emph */
|
96
|
+
.highlight .gr {
|
97
|
+
color: #f00;
|
98
|
+
} /* Generic.Error */
|
99
|
+
.highlight .gh {
|
100
|
+
color: #030;
|
101
|
+
} /* Generic.Heading */
|
102
|
+
.highlight .gi {
|
103
|
+
background-color: #cfc;
|
104
|
+
border: 1px solid #0c0;
|
105
|
+
} /* Generic.Inserted */
|
106
|
+
.highlight .go {
|
107
|
+
color: #aaa;
|
108
|
+
} /* Generic.Output */
|
109
|
+
.highlight .gp {
|
110
|
+
color: #009;
|
111
|
+
} /* Generic.Prompt */
|
112
|
+
.highlight .gs {
|
113
|
+
} /* Generic.Strong */
|
114
|
+
.highlight .gu {
|
115
|
+
color: #030;
|
116
|
+
} /* Generic.Subheading */
|
117
|
+
.highlight .gt {
|
118
|
+
color: #9c6;
|
119
|
+
} /* Generic.Traceback */
|
120
|
+
.highlight .kc {
|
121
|
+
color: #069;
|
122
|
+
} /* Keyword.Constant */
|
123
|
+
.highlight .kd {
|
124
|
+
color: #069;
|
125
|
+
} /* Keyword.Declaration */
|
126
|
+
.highlight .kn {
|
127
|
+
color: #069;
|
128
|
+
} /* Keyword.Namespace */
|
129
|
+
.highlight .kp {
|
130
|
+
color: #069;
|
131
|
+
} /* Keyword.Pseudo */
|
132
|
+
.highlight .kr {
|
133
|
+
color: #069;
|
134
|
+
} /* Keyword.Reserved */
|
135
|
+
.highlight .kt {
|
136
|
+
color: #078;
|
137
|
+
} /* Keyword.Type */
|
138
|
+
.highlight .m {
|
139
|
+
color: #f60;
|
140
|
+
} /* Literal.Number */
|
141
|
+
.highlight .s {
|
142
|
+
color: #d44950;
|
143
|
+
} /* Literal.String */
|
144
|
+
.highlight .na {
|
145
|
+
color: #4f9fcf;
|
146
|
+
} /* Name.Attribute */
|
147
|
+
.highlight .nb {
|
148
|
+
color: #366;
|
149
|
+
} /* Name.Builtin */
|
150
|
+
.highlight .nc {
|
151
|
+
color: #0a8;
|
152
|
+
} /* Name.Class */
|
153
|
+
.highlight .no {
|
154
|
+
color: #360;
|
155
|
+
} /* Name.Constant */
|
156
|
+
.highlight .nd {
|
157
|
+
color: #99f;
|
158
|
+
} /* Name.Decorator */
|
159
|
+
.highlight .ni {
|
160
|
+
color: #999;
|
161
|
+
} /* Name.Entity */
|
162
|
+
.highlight .ne {
|
163
|
+
color: #c00;
|
164
|
+
} /* Name.Exception */
|
165
|
+
.highlight .nf {
|
166
|
+
color: #c0f;
|
167
|
+
} /* Name.Function */
|
168
|
+
.highlight .nl {
|
169
|
+
color: #99f;
|
170
|
+
} /* Name.Label */
|
171
|
+
.highlight .nn {
|
172
|
+
color: #0cf;
|
173
|
+
} /* Name.Namespace */
|
174
|
+
.highlight .nt {
|
175
|
+
color: #2f6f9f;
|
176
|
+
} /* Name.Tag */
|
177
|
+
.highlight .nv {
|
178
|
+
color: #033;
|
179
|
+
} /* Name.Variable */
|
180
|
+
.highlight .ow {
|
181
|
+
color: #000;
|
182
|
+
} /* Operator.Word */
|
183
|
+
.highlight .w {
|
184
|
+
color: #bbb;
|
185
|
+
} /* Text.Whitespace */
|
186
|
+
.highlight .mf {
|
187
|
+
color: #f60;
|
188
|
+
} /* Literal.Number.Float */
|
189
|
+
.highlight .mh {
|
190
|
+
color: #f60;
|
191
|
+
} /* Literal.Number.Hex */
|
192
|
+
.highlight .mi {
|
193
|
+
color: #f60;
|
194
|
+
} /* Literal.Number.Integer */
|
195
|
+
.highlight .mo {
|
196
|
+
color: #f60;
|
197
|
+
} /* Literal.Number.Oct */
|
198
|
+
.highlight .sb {
|
199
|
+
color: #c30;
|
200
|
+
} /* Literal.String.Backtick */
|
201
|
+
.highlight .sc {
|
202
|
+
color: #c30;
|
203
|
+
} /* Literal.String.Char */
|
204
|
+
.highlight .sd {
|
205
|
+
color: #c30;
|
206
|
+
font-style: italic;
|
207
|
+
} /* Literal.String.Doc */
|
208
|
+
.highlight .s2 {
|
209
|
+
color: #c30;
|
210
|
+
} /* Literal.String.Double */
|
211
|
+
.highlight .se {
|
212
|
+
color: #c30;
|
213
|
+
} /* Literal.String.Escape */
|
214
|
+
.highlight .sh {
|
215
|
+
color: #c30;
|
216
|
+
} /* Literal.String.Heredoc */
|
217
|
+
.highlight .si {
|
218
|
+
color: #a00;
|
219
|
+
} /* Literal.String.Interpol */
|
220
|
+
.highlight .sx {
|
221
|
+
color: #c30;
|
222
|
+
} /* Literal.String.Other */
|
223
|
+
.highlight .sr {
|
224
|
+
color: #3aa;
|
225
|
+
} /* Literal.String.Regex */
|
226
|
+
.highlight .s1 {
|
227
|
+
color: #c30;
|
228
|
+
} /* Literal.String.Single */
|
229
|
+
.highlight .ss {
|
230
|
+
color: #fc3;
|
231
|
+
} /* Literal.String.Symbol */
|
232
|
+
.highlight .bp {
|
233
|
+
color: #366;
|
234
|
+
} /* Name.Builtin.Pseudo */
|
235
|
+
.highlight .vc {
|
236
|
+
color: #033;
|
237
|
+
} /* Name.Variable.Class */
|
238
|
+
.highlight .vg {
|
239
|
+
color: #033;
|
240
|
+
} /* Name.Variable.Global */
|
241
|
+
.highlight .vi {
|
242
|
+
color: #033;
|
243
|
+
} /* Name.Variable.Instance */
|
244
|
+
.highlight .il {
|
245
|
+
color: #f60;
|
246
|
+
} /* Literal.Number.Integer.Long */
|
247
|
+
|
248
|
+
.css .o,
|
249
|
+
.css .o + .nt,
|
250
|
+
.css .nt + .nt {
|
251
|
+
color: #999;
|
252
|
+
}
|
data/_sass/steve-for-jekyll.scss
CHANGED
@@ -1,51 +1,51 @@
|
|
1
|
-
/*
|
2
|
-
Color Scheme
|
3
|
-
*/
|
4
|
-
|
5
|
-
$color__background-content: #fff !default; // posts, pages and sidebar background color.
|
6
|
-
$color__background-body: #e4f0f6 !default; // body background color
|
7
|
-
$color__text: #000112 !default; // body text color
|
8
|
-
|
9
|
-
$color__link: #4e9dd8 !default; // color for links and accents
|
10
|
-
$color__link-hover: #2361a7 !default; // alternate color for active or focused links and accents
|
11
|
-
|
12
|
-
$color__details: #939496 !default; // color for details such as borders and shadows
|
13
|
-
$color__details-lighter: #f0f1f4 !default; // lighter alternative for details
|
14
|
-
$color__details-darker: #6d6e70 !default; // darker alternative for details
|
15
|
-
|
16
|
-
/*
|
17
|
-
Typography
|
18
|
-
*/
|
19
|
-
|
20
|
-
$font__body: "Avenir Next", Corbel, "Fira Sans", "Trebuchet MS", Ubuntu, sans-serif !default; // used for the main, body typography
|
21
|
-
$font__headings: $font__body !default; // used for headings and feature elements
|
22
|
-
$font__code: "Cascadia Code", SFMono-Regular, Menlo, Consolas, "Fira Mono", "DejaVu Sans Mono", monospace !default; // used for pre-formatted text and code.
|
23
|
-
|
24
|
-
|
25
|
-
/*
|
26
|
-
Layout
|
27
|
-
*/
|
28
|
-
$layout__container-width: 1180px !default; // the width of the main content (content + sidebar)
|
29
|
-
$layout__gutter: 2rem !default; // the spacing unit between elements.
|
30
|
-
|
31
|
-
:root {
|
32
|
-
--color-bg: #{$color__background-content};
|
33
|
-
--color-body: #{$color__background-body};
|
34
|
-
--color-text: #{$color__text};
|
35
|
-
|
36
|
-
--color-link: #{$color__link};
|
37
|
-
--color-link-hover: #{$color__link-hover};
|
38
|
-
|
39
|
-
--color-details: #{$color__details};
|
40
|
-
--color-details-lighter: #{$color__details-lighter};
|
41
|
-
--color-details-darker: #{$color__details-darker};
|
42
|
-
|
43
|
-
--font: #{$font__body};
|
44
|
-
--font-headings: #{$font__headings};
|
45
|
-
--font-code: #{$font__code};
|
46
|
-
|
47
|
-
--container: #{$layout__container-width};
|
48
|
-
--gap: #{$layout__gutter};
|
49
|
-
}
|
50
|
-
|
51
|
-
@import "steve/base", "steve/layout", "steve/syntax";
|
1
|
+
/*
|
2
|
+
Color Scheme
|
3
|
+
*/
|
4
|
+
|
5
|
+
$color__background-content: #fff !default; // posts, pages and sidebar background color.
|
6
|
+
$color__background-body: #e4f0f6 !default; // body background color
|
7
|
+
$color__text: #000112 !default; // body text color
|
8
|
+
|
9
|
+
$color__link: #4e9dd8 !default; // color for links and accents
|
10
|
+
$color__link-hover: #2361a7 !default; // alternate color for active or focused links and accents
|
11
|
+
|
12
|
+
$color__details: #939496 !default; // color for details such as borders and shadows
|
13
|
+
$color__details-lighter: #f0f1f4 !default; // lighter alternative for details
|
14
|
+
$color__details-darker: #6d6e70 !default; // darker alternative for details
|
15
|
+
|
16
|
+
/*
|
17
|
+
Typography
|
18
|
+
*/
|
19
|
+
|
20
|
+
$font__body: "Avenir Next", Corbel, "Fira Sans", "Trebuchet MS", Ubuntu, sans-serif !default; // used for the main, body typography
|
21
|
+
$font__headings: $font__body !default; // used for headings and feature elements
|
22
|
+
$font__code: "Cascadia Code", SFMono-Regular, Menlo, Consolas, "Fira Mono", "DejaVu Sans Mono", monospace !default; // used for pre-formatted text and code.
|
23
|
+
|
24
|
+
|
25
|
+
/*
|
26
|
+
Layout
|
27
|
+
*/
|
28
|
+
$layout__container-width: 1180px !default; // the width of the main content (content + sidebar)
|
29
|
+
$layout__gutter: 2rem !default; // the spacing unit between elements.
|
30
|
+
|
31
|
+
:root {
|
32
|
+
--color-bg: #{$color__background-content};
|
33
|
+
--color-body: #{$color__background-body};
|
34
|
+
--color-text: #{$color__text};
|
35
|
+
|
36
|
+
--color-link: #{$color__link};
|
37
|
+
--color-link-hover: #{$color__link-hover};
|
38
|
+
|
39
|
+
--color-details: #{$color__details};
|
40
|
+
--color-details-lighter: #{$color__details-lighter};
|
41
|
+
--color-details-darker: #{$color__details-darker};
|
42
|
+
|
43
|
+
--font: #{$font__body};
|
44
|
+
--font-headings: #{$font__headings};
|
45
|
+
--font-code: #{$font__code};
|
46
|
+
|
47
|
+
--container: #{$layout__container-width};
|
48
|
+
--gap: #{$layout__gutter};
|
49
|
+
}
|
50
|
+
|
51
|
+
@import "steve/base", "steve/layout", "steve/syntax";
|
data/assets/css/screen.scss
CHANGED
@@ -1,34 +1,34 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
|
4
|
-
/*
|
5
|
-
Color Scheme
|
6
|
-
/*
|
7
|
-
|
8
|
-
// $color__background-content: #fff; // posts, pages and sidebar background color.
|
9
|
-
// $color__background-body: #e4f0f6; // body background color
|
10
|
-
// $color__text: #000112; // body text color
|
11
|
-
//
|
12
|
-
// $color__link: #4e9dd8; // color for links and accents
|
13
|
-
// $color__link-hover: #2361a7; // alternate color for active or focused links and accents
|
14
|
-
//
|
15
|
-
// $color__details: #939496; // color for details such as borders and shadows
|
16
|
-
// $color__details-lighter: #f0f1f4; // lighter alternative for details
|
17
|
-
// $color__details-darker: #6d6e70; // darker alternative for details
|
18
|
-
|
19
|
-
/*
|
20
|
-
Typography
|
21
|
-
*/
|
22
|
-
|
23
|
-
// $font__body: "Avenir Next", Corbel, "Fira Sans", "Trebuchet MS", Ubuntu, sans-serif; // used for the main, body typography
|
24
|
-
// $font__headings: $font__body; // used for headings and feature elements
|
25
|
-
// $font__code: "Cascadia Code", SFMono-Regular, Menlo, Consolas, "Fira Mono", "DejaVu Sans Mono", monospace; // used for pre-formatted text and code.
|
26
|
-
|
27
|
-
/*
|
28
|
-
Layout
|
29
|
-
*/
|
30
|
-
|
31
|
-
// $layout__container-width: 1180px; // the width of the main content (content + sidebar)
|
32
|
-
// $layout__gutter: 2rem; // the spacing unit between elements.
|
33
|
-
|
34
|
-
@import "{{ site.theme }}";
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
/*
|
5
|
+
Color Scheme
|
6
|
+
/*
|
7
|
+
|
8
|
+
// $color__background-content: #fff; // posts, pages and sidebar background color.
|
9
|
+
// $color__background-body: #e4f0f6; // body background color
|
10
|
+
// $color__text: #000112; // body text color
|
11
|
+
//
|
12
|
+
// $color__link: #4e9dd8; // color for links and accents
|
13
|
+
// $color__link-hover: #2361a7; // alternate color for active or focused links and accents
|
14
|
+
//
|
15
|
+
// $color__details: #939496; // color for details such as borders and shadows
|
16
|
+
// $color__details-lighter: #f0f1f4; // lighter alternative for details
|
17
|
+
// $color__details-darker: #6d6e70; // darker alternative for details
|
18
|
+
|
19
|
+
/*
|
20
|
+
Typography
|
21
|
+
*/
|
22
|
+
|
23
|
+
// $font__body: "Avenir Next", Corbel, "Fira Sans", "Trebuchet MS", Ubuntu, sans-serif; // used for the main, body typography
|
24
|
+
// $font__headings: $font__body; // used for headings and feature elements
|
25
|
+
// $font__code: "Cascadia Code", SFMono-Regular, Menlo, Consolas, "Fira Mono", "DejaVu Sans Mono", monospace; // used for pre-formatted text and code.
|
26
|
+
|
27
|
+
/*
|
28
|
+
Layout
|
29
|
+
*/
|
30
|
+
|
31
|
+
// $layout__container-width: 1180px; // the width of the main content (content + sidebar)
|
32
|
+
// $layout__gutter: 2rem; // the spacing unit between elements.
|
33
|
+
|
34
|
+
@import "{{ site.theme }}";
|