jekyll-theme-fica 0.1.2 → 0.1.5
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/License.md +27 -0
- data/README.md +80 -27
- data/_includes/Header.html +1 -1
- data/_layouts/home.html +27 -1
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +34 -34
- data/_layouts/post_home.html +2 -5
- data/_sass/Base.scss +394 -281
- data/_sass/Custom-Styles.scss +2 -2
- data/_sass/Custom-Variables.scss +1 -1
- data/_sass/Initialize.scss +2 -2
- data/_sass/Layout.scss +34 -86
- data/_sass/themes/Dark_Theme.scss +269 -0
- data/_sass/themes/Light_Theme.scss +256 -0
- data/assets/css/Styles.scss +7 -12
- data/assets/fica-icons.svg +54 -54
- data/assets/img/fica_ad.png +0 -0
- data/logo.png +0 -0
- metadata +8 -4
- data/_sass/Color_scheme.scss +0 -117
data/_sass/Base.scss
CHANGED
|
@@ -1,288 +1,401 @@
|
|
|
1
1
|
html {
|
|
2
|
-
|
|
2
|
+
font-size: $base-font-size;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
* Reset some basic elements
|
|
7
|
+
*/
|
|
8
|
+
body,
|
|
9
|
+
h1,
|
|
10
|
+
h2,
|
|
11
|
+
h3,
|
|
12
|
+
h4,
|
|
13
|
+
h5,
|
|
14
|
+
h6,
|
|
15
|
+
p,
|
|
16
|
+
blockquote,
|
|
17
|
+
pre,
|
|
18
|
+
hr,
|
|
19
|
+
dl,
|
|
20
|
+
dd,
|
|
21
|
+
ol,
|
|
22
|
+
ul,
|
|
23
|
+
figure {
|
|
24
|
+
margin: 0;
|
|
25
|
+
padding: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
body {
|
|
29
|
+
font: $base-font-weight #{$base-font-size}/#{$base-line-height}
|
|
30
|
+
$base-font-family;
|
|
31
|
+
color: $text-color;
|
|
32
|
+
background-color: $background-color;
|
|
33
|
+
-webkit-text-size-adjust: 100%;
|
|
34
|
+
-webkit-font-feature-settings: "kern" 1;
|
|
35
|
+
-moz-font-feature-settings: "kern" 1;
|
|
36
|
+
-o-font-feature-settings: "kern" 1;
|
|
37
|
+
font-feature-settings: "kern" 1;
|
|
38
|
+
font-kerning: normal;
|
|
39
|
+
display: flex;
|
|
40
|
+
min-height: 100vh;
|
|
41
|
+
flex-direction: column;
|
|
42
|
+
overflow-wrap: break-word;
|
|
43
|
+
|
|
44
|
+
&::-webkit-scrollbar {
|
|
45
|
+
width: 7px;
|
|
46
|
+
height: 4px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&::-webkit-scrollbar-track {
|
|
19
50
|
background-color: $background-color;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&::-webkit-scrollbar-thumb {
|
|
54
|
+
background: $scroll_bar_bg_color;
|
|
55
|
+
border-radius: 4px;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Set `margin-bottom` to maintain vertical rhythm
|
|
61
|
+
*/
|
|
62
|
+
h1,
|
|
63
|
+
h2,
|
|
64
|
+
h3,
|
|
65
|
+
h4,
|
|
66
|
+
h5,
|
|
67
|
+
h6,
|
|
68
|
+
p,
|
|
69
|
+
blockquote,
|
|
70
|
+
pre,
|
|
71
|
+
ul,
|
|
72
|
+
ol,
|
|
73
|
+
dl,
|
|
74
|
+
figure,
|
|
75
|
+
%vertical-rhythm {
|
|
76
|
+
margin-bottom: $spacing-unit / 2;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
hr {
|
|
80
|
+
margin-top: $spacing-unit;
|
|
81
|
+
margin-bottom: $spacing-unit;
|
|
82
|
+
background: $text-color;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* `main` element
|
|
87
|
+
*/
|
|
88
|
+
main {
|
|
89
|
+
display: block;
|
|
90
|
+
/* Default value of `display` of `main` element is 'inline' in IE 11. */
|
|
91
|
+
animation-name: text_trans;
|
|
92
|
+
animation-duration: 1s;
|
|
93
|
+
-webkit-animation-timing-function: ease-in;
|
|
94
|
+
animation-timing-function: ease-in;
|
|
95
|
+
@keyframes text_trans {
|
|
96
|
+
0% {
|
|
97
|
+
opacity: 0%;
|
|
98
|
+
}
|
|
99
|
+
20% {
|
|
100
|
+
opacity: 20%;
|
|
101
|
+
}
|
|
102
|
+
50% {
|
|
103
|
+
opacity: 50%;
|
|
104
|
+
}
|
|
105
|
+
70% {
|
|
106
|
+
opacity: 70%;
|
|
107
|
+
}
|
|
108
|
+
90% {
|
|
109
|
+
opacity: 90%;
|
|
110
|
+
}
|
|
111
|
+
100% {
|
|
112
|
+
opacity: 100%;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Images
|
|
119
|
+
*/
|
|
120
|
+
img {
|
|
121
|
+
max-width: 100%;
|
|
122
|
+
vertical-align: middle;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Figures
|
|
127
|
+
*/
|
|
128
|
+
figure > img {
|
|
129
|
+
display: block;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
figcaption {
|
|
133
|
+
font-size: $small-font-size;
|
|
134
|
+
}
|
|
31
135
|
|
|
32
136
|
/**
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
137
|
+
* Lists
|
|
138
|
+
*/
|
|
139
|
+
ul,
|
|
140
|
+
ol {
|
|
141
|
+
margin-left: $spacing-unit;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
li {
|
|
145
|
+
> ul,
|
|
146
|
+
> ol {
|
|
147
|
+
margin-bottom: 0;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Headings
|
|
153
|
+
*/
|
|
154
|
+
h2,
|
|
155
|
+
h3,
|
|
156
|
+
h4,
|
|
157
|
+
h5,
|
|
158
|
+
h6 {
|
|
159
|
+
font-weight: 650;
|
|
160
|
+
font-family: $base-font-family;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
h1 {
|
|
164
|
+
font-weight: 700;
|
|
165
|
+
font-family: $base-font-family;
|
|
166
|
+
font-size: 35px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* Links
|
|
171
|
+
*/
|
|
172
|
+
a {
|
|
173
|
+
color: $link-base-color;
|
|
174
|
+
text-decoration: none;
|
|
175
|
+
transition: $transition-links;
|
|
176
|
+
|
|
177
|
+
&:visited {
|
|
178
|
+
color: $link-visited-color;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&:hover {
|
|
182
|
+
color: $link-hover-color;
|
|
183
|
+
text-decoration: none;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Blockquotes
|
|
189
|
+
*/
|
|
190
|
+
blockquote {
|
|
191
|
+
color: $blockquote-text-color;
|
|
192
|
+
border-left: 4px solid $code-background-color;
|
|
193
|
+
padding-left: $spacing-unit / 2;
|
|
194
|
+
@include relative-font-size(1.125);
|
|
195
|
+
font-style: italic;
|
|
196
|
+
|
|
197
|
+
> :last-child {
|
|
198
|
+
margin-bottom: 0;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
i,
|
|
202
|
+
em {
|
|
203
|
+
font-style: normal;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Code formatting
|
|
209
|
+
*/
|
|
210
|
+
pre,
|
|
211
|
+
code {
|
|
212
|
+
font-family: $code-font-family;
|
|
213
|
+
font-size: 0.9375em;
|
|
214
|
+
border: 1px solid $code-background-color;
|
|
215
|
+
border-radius: 4px;
|
|
216
|
+
font-weight: bold;
|
|
217
|
+
background-color: $code-background-color;
|
|
218
|
+
|
|
219
|
+
&::-webkit-scrollbar {
|
|
220
|
+
width: 7px;
|
|
221
|
+
height: 9px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
&::-webkit-scrollbar-track {
|
|
225
|
+
background-color: $code-background-color;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
&::-webkit-scrollbar-thumb {
|
|
229
|
+
background: $scroll_bar_bg_color;
|
|
230
|
+
border-radius: 4px;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
code {
|
|
235
|
+
padding: 1px 5px;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
pre {
|
|
239
|
+
padding: 8px 12px;
|
|
240
|
+
overflow-x: auto;
|
|
241
|
+
|
|
242
|
+
> code {
|
|
243
|
+
border: 0;
|
|
244
|
+
padding-right: 0;
|
|
245
|
+
padding-left: 0;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.highlight {
|
|
250
|
+
border-radius: 3px;
|
|
251
|
+
background: $code-background-color;
|
|
252
|
+
@extend %vertical-rhythm;
|
|
253
|
+
|
|
254
|
+
.highlighter-rouge & {
|
|
255
|
+
background: $code-background-color;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Wrapper
|
|
261
|
+
*/
|
|
262
|
+
.wrapper {
|
|
263
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
|
264
|
+
margin-right: auto;
|
|
265
|
+
margin-left: auto;
|
|
266
|
+
padding-right: $spacing-unit / 2;
|
|
267
|
+
padding-left: $spacing-unit / 2;
|
|
268
|
+
@extend %clearfix;
|
|
269
|
+
|
|
270
|
+
@media screen and (min-width: $on-large) {
|
|
271
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
|
272
|
+
padding-right: $spacing-unit;
|
|
273
|
+
padding-left: $spacing-unit;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.wrapper_header {
|
|
278
|
+
padding-left: 20px;
|
|
279
|
+
padding-right: auto;
|
|
280
|
+
@extend %clearfix;
|
|
281
|
+
@media screen and (min-width: $on-medium) {
|
|
282
|
+
padding-right: 70px;
|
|
283
|
+
padding-left: 70px;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.wrapper_footer {
|
|
288
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit}));
|
|
289
|
+
margin-right: auto;
|
|
290
|
+
margin-left: auto;
|
|
291
|
+
padding-right: $spacing-unit / 2;
|
|
292
|
+
padding-left: $spacing-unit / 2;
|
|
293
|
+
@extend %clearfix;
|
|
294
|
+
|
|
295
|
+
@media screen and (min-width: $on-large) {
|
|
296
|
+
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
|
|
297
|
+
padding-right: $spacing-unit;
|
|
298
|
+
padding-left: $spacing-unit;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Clearfix
|
|
304
|
+
*/
|
|
305
|
+
%clearfix:after {
|
|
306
|
+
content: "";
|
|
307
|
+
display: table;
|
|
308
|
+
clear: both;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Icons
|
|
313
|
+
*/
|
|
314
|
+
|
|
315
|
+
.stackoverflow {
|
|
316
|
+
color: #f66a0a;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.youtube {
|
|
320
|
+
color: #dd0505;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.github {
|
|
324
|
+
color: $Github;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.svg-icon {
|
|
328
|
+
width: 16px;
|
|
329
|
+
height: 16px;
|
|
330
|
+
display: inline-block;
|
|
331
|
+
fill: currentColor;
|
|
332
|
+
padding: 5px 3px 2px 5px;
|
|
333
|
+
vertical-align: text-bottom;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.gitlab {
|
|
337
|
+
color: $Github;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Tables
|
|
342
|
+
*/
|
|
343
|
+
table {
|
|
344
|
+
margin-bottom: $spacing-unit;
|
|
345
|
+
width: 100%;
|
|
346
|
+
text-align: $table-text-align;
|
|
347
|
+
color: $table-text-color;
|
|
348
|
+
border-collapse: collapse;
|
|
349
|
+
border: 1px solid $table-border-color;
|
|
350
|
+
|
|
351
|
+
&::-webkit-scrollbar {
|
|
352
|
+
width: 7px;
|
|
353
|
+
height: 9px;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
&::-webkit-scrollbar-track {
|
|
357
|
+
background-color: $background-color;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
&::-webkit-scrollbar-thumb {
|
|
361
|
+
background: $scroll_bar_bg_color;
|
|
362
|
+
border-radius: 4px;
|
|
363
|
+
}
|
|
364
|
+
tr {
|
|
365
|
+
&:nth-child(even) {
|
|
366
|
+
background-color: $table-zebra-color;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
th,
|
|
370
|
+
td {
|
|
371
|
+
padding: ($spacing-unit / 3) ($spacing-unit / 2);
|
|
372
|
+
}
|
|
373
|
+
th {
|
|
374
|
+
background-color: $table-header-bg-color;
|
|
375
|
+
border: 1px solid $table-header-border;
|
|
376
|
+
}
|
|
377
|
+
td {
|
|
378
|
+
border: 1px solid $table-border-color;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
@include media-query($on-laptop) {
|
|
382
|
+
display: block;
|
|
383
|
+
overflow-x: auto;
|
|
384
|
+
-webkit-overflow-scrolling: touch;
|
|
385
|
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
dl {
|
|
389
|
+
padding: 0;
|
|
390
|
+
|
|
391
|
+
dt {
|
|
392
|
+
padding: 0;
|
|
393
|
+
margin-top: 1rem;
|
|
394
|
+
font-size: $base-font-size;
|
|
395
|
+
font-weight: 690;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
dd {
|
|
399
|
+
margin-inline-start: 40px;
|
|
400
|
+
}
|
|
401
|
+
}
|
data/_sass/Custom-Styles.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
// Placeholder to allow defining custom styles that override everything else.
|
|
2
|
-
// (Use `_sass/minima/custom-variables.scss` to override variable defaults)
|
|
1
|
+
// Placeholder to allow defining custom styles that override everything else.
|
|
2
|
+
// (Use `_sass/minima/custom-variables.scss` to override variable defaults)
|
data/_sass/Custom-Variables.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
// Placeholder to allow overriding predefined variables smoothly.
|
|
1
|
+
// Placeholder to allow overriding predefined variables smoothly.
|