respectre-jekyll-theme 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/footer.html +17 -0
- data/_includes/head.html +11 -0
- data/_includes/header.html +14 -0
- data/_layouts/default.html +13 -0
- data/_layouts/home.html +26 -0
- data/_layouts/page.html +14 -0
- data/_layouts/post.html +21 -0
- data/_sass/spectre.scss +49 -0
- data/_sass/spectre/.csscomb.json +30 -0
- data/_sass/spectre/.gitattributes +1 -0
- data/_sass/spectre/.gitignore +9 -0
- data/_sass/spectre/.hound.yml +2 -0
- data/_sass/spectre/.scss-lint.yml +253 -0
- data/_sass/spectre/_accordions.scss +38 -0
- data/_sass/spectre/_animations.scss +20 -0
- data/_sass/spectre/_asian.scss +33 -0
- data/_sass/spectre/_autocomplete.scss +36 -0
- data/_sass/spectre/_avatars.scss +77 -0
- data/_sass/spectre/_badges.scss +70 -0
- data/_sass/spectre/_bars.scss +71 -0
- data/_sass/spectre/_base.scss +40 -0
- data/_sass/spectre/_breadcrumbs.scss +29 -0
- data/_sass/spectre/_buttons.scss +182 -0
- data/_sass/spectre/_calendars.scss +206 -0
- data/_sass/spectre/_cards.scss +39 -0
- data/_sass/spectre/_carousels.scss +124 -0
- data/_sass/spectre/_chips.scss +26 -0
- data/_sass/spectre/_codes.scss +31 -0
- data/_sass/spectre/_comparison-sliders.scss +114 -0
- data/_sass/spectre/_dropdowns.scss +36 -0
- data/_sass/spectre/_empty.scss +21 -0
- data/_sass/spectre/_filters.scss +37 -0
- data/_sass/spectre/_forms.scss +514 -0
- data/_sass/spectre/_icons.scss +5 -0
- data/_sass/spectre/_labels.scss +34 -0
- data/_sass/spectre/_layout.scss +424 -0
- data/_sass/spectre/_media.scss +75 -0
- data/_sass/spectre/_menus.scss +56 -0
- data/_sass/spectre/_meters.scss +57 -0
- data/_sass/spectre/_mixins.scss +186 -0
- data/_sass/spectre/_modals.scss +82 -0
- data/_sass/spectre/_navbar.scss +29 -0
- data/_sass/spectre/_navs.scss +34 -0
- data/_sass/spectre/_normalize.scss +446 -0
- data/_sass/spectre/_off-canvas.scss +82 -0
- data/_sass/spectre/_pagination.scss +61 -0
- data/_sass/spectre/_panels.scss +23 -0
- data/_sass/spectre/_parallax.scss +129 -0
- data/_sass/spectre/_popovers.scss +70 -0
- data/_sass/spectre/_progress.scss +45 -0
- data/_sass/spectre/_sliders.scss +93 -0
- data/_sass/spectre/_steps.scss +70 -0
- data/_sass/spectre/_tables.scss +45 -0
- data/_sass/spectre/_tabs.scss +66 -0
- data/_sass/spectre/_tiles.scss +38 -0
- data/_sass/spectre/_timelines.scss +54 -0
- data/_sass/spectre/_toasts.scss +42 -0
- data/_sass/spectre/_tooltips.scss +79 -0
- data/_sass/spectre/_typography.scss +128 -0
- data/_sass/spectre/_utilities.scss +8 -0
- data/_sass/spectre/_variables.scss +105 -0
- data/_sass/spectre/icons/_icons-action.scss +316 -0
- data/_sass/spectre/icons/_icons-core.scss +53 -0
- data/_sass/spectre/icons/_icons-navigation.scss +133 -0
- data/_sass/spectre/icons/_icons-object.scss +176 -0
- data/_sass/spectre/spectre-exp.scss +16 -0
- data/_sass/spectre/spectre-icons.scss +10 -0
- data/_sass/spectre/utilities/_colors.scss +29 -0
- data/_sass/spectre/utilities/_cursors.scss +24 -0
- data/_sass/spectre/utilities/_display.scss +44 -0
- data/_sass/spectre/utilities/_divider.scss +50 -0
- data/_sass/spectre/utilities/_loading.scss +34 -0
- data/_sass/spectre/utilities/_position.scss +50 -0
- data/_sass/spectre/utilities/_shapes.scss +8 -0
- data/_sass/spectre/utilities/_text.scss +64 -0
- data/assets/css/main.scss +18 -0
- metadata +212 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
// Navbar
|
2
|
+
.navbar {
|
3
|
+
align-items: stretch;
|
4
|
+
display: flex;
|
5
|
+
flex-wrap: wrap;
|
6
|
+
justify-content: space-between;
|
7
|
+
|
8
|
+
.navbar-section {
|
9
|
+
align-items: center;
|
10
|
+
display: flex;
|
11
|
+
flex: 1 0 0;
|
12
|
+
|
13
|
+
&:last-child {
|
14
|
+
justify-content: flex-end;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
.navbar-center {
|
19
|
+
align-items: center;
|
20
|
+
display: flex;
|
21
|
+
flex: 0 0 auto;
|
22
|
+
}
|
23
|
+
|
24
|
+
.navbar-brand {
|
25
|
+
font-size: $font-size-lg;
|
26
|
+
font-weight: 500;
|
27
|
+
text-decoration: none;
|
28
|
+
}
|
29
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
// Navs
|
2
|
+
.nav {
|
3
|
+
display: flex;
|
4
|
+
flex-direction: column;
|
5
|
+
list-style: none;
|
6
|
+
margin: $unit-1 0;
|
7
|
+
|
8
|
+
.nav-item {
|
9
|
+
a {
|
10
|
+
color: $gray-color-dark;
|
11
|
+
padding: $unit-1 $unit-2;
|
12
|
+
text-decoration: none;
|
13
|
+
&:focus,
|
14
|
+
&:hover {
|
15
|
+
color: $primary-color;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
&.active {
|
19
|
+
& > a {
|
20
|
+
color: darken($gray-color-dark, 10%);
|
21
|
+
font-weight: bold;
|
22
|
+
&:focus,
|
23
|
+
&:hover {
|
24
|
+
color: $primary-color;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
& .nav {
|
31
|
+
margin-bottom: $unit-2;
|
32
|
+
margin-left: $unit-4;
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,446 @@
|
|
1
|
+
/* Manually forked from Normalize.css */
|
2
|
+
/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
|
3
|
+
|
4
|
+
/**
|
5
|
+
* 1. Change the default font family in all browsers (opinionated).
|
6
|
+
* 2. Correct the line height in all browsers.
|
7
|
+
* 3. Prevent adjustments of font size after orientation changes in
|
8
|
+
* IE on Windows Phone and in iOS.
|
9
|
+
*/
|
10
|
+
|
11
|
+
/* Document
|
12
|
+
========================================================================== */
|
13
|
+
|
14
|
+
html {
|
15
|
+
font-family: sans-serif; /* 1 */
|
16
|
+
-ms-text-size-adjust: 100%; /* 3 */
|
17
|
+
-webkit-text-size-adjust: 100%; /* 3 */
|
18
|
+
}
|
19
|
+
|
20
|
+
/* Sections
|
21
|
+
========================================================================== */
|
22
|
+
|
23
|
+
/**
|
24
|
+
* Remove the margin in all browsers (opinionated).
|
25
|
+
*/
|
26
|
+
|
27
|
+
body {
|
28
|
+
margin: 0;
|
29
|
+
}
|
30
|
+
|
31
|
+
/**
|
32
|
+
* Add the correct display in IE 9-.
|
33
|
+
*/
|
34
|
+
|
35
|
+
article,
|
36
|
+
aside,
|
37
|
+
footer,
|
38
|
+
header,
|
39
|
+
nav,
|
40
|
+
section {
|
41
|
+
display: block;
|
42
|
+
}
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
46
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
47
|
+
*/
|
48
|
+
|
49
|
+
h1 {
|
50
|
+
font-size: 2em;
|
51
|
+
margin: 0.67em 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
/* Grouping content
|
55
|
+
========================================================================== */
|
56
|
+
|
57
|
+
/**
|
58
|
+
* Add the correct display in IE 9-.
|
59
|
+
* 1. Add the correct display in IE.
|
60
|
+
*/
|
61
|
+
|
62
|
+
figcaption,
|
63
|
+
figure,
|
64
|
+
main { /* 1 */
|
65
|
+
display: block;
|
66
|
+
}
|
67
|
+
|
68
|
+
/**
|
69
|
+
* Add the correct margin in IE 8 (removed).
|
70
|
+
*/
|
71
|
+
|
72
|
+
/**
|
73
|
+
* 1. Add the correct box sizing in Firefox.
|
74
|
+
* 2. Show the overflow in Edge and IE.
|
75
|
+
*/
|
76
|
+
|
77
|
+
hr {
|
78
|
+
box-sizing: content-box; /* 1 */
|
79
|
+
height: 0; /* 1 */
|
80
|
+
overflow: visible; /* 2 */
|
81
|
+
}
|
82
|
+
|
83
|
+
/**
|
84
|
+
* 1. Correct the inheritance and scaling of font size in all browsers. (removed)
|
85
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
86
|
+
*/
|
87
|
+
|
88
|
+
/* Text-level semantics
|
89
|
+
========================================================================== */
|
90
|
+
|
91
|
+
/**
|
92
|
+
* 1. Remove the gray background on active links in IE 10.
|
93
|
+
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
94
|
+
*/
|
95
|
+
|
96
|
+
a {
|
97
|
+
background-color: transparent; /* 1 */
|
98
|
+
-webkit-text-decoration-skip: objects; /* 2 */
|
99
|
+
}
|
100
|
+
|
101
|
+
/**
|
102
|
+
* Remove the outline on focused links when they are also active or hovered
|
103
|
+
* in all browsers (opinionated).
|
104
|
+
*/
|
105
|
+
|
106
|
+
a:active,
|
107
|
+
a:hover {
|
108
|
+
outline-width: 0;
|
109
|
+
}
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Modify default styling of address.
|
113
|
+
*/
|
114
|
+
|
115
|
+
address {
|
116
|
+
font-style: normal;
|
117
|
+
}
|
118
|
+
|
119
|
+
/**
|
120
|
+
* 1. Remove the bottom border in Firefox 39-.
|
121
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. (removed)
|
122
|
+
*/
|
123
|
+
|
124
|
+
/**
|
125
|
+
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
126
|
+
*/
|
127
|
+
|
128
|
+
b,
|
129
|
+
strong {
|
130
|
+
font-weight: inherit;
|
131
|
+
}
|
132
|
+
|
133
|
+
/**
|
134
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
135
|
+
*/
|
136
|
+
|
137
|
+
b,
|
138
|
+
strong {
|
139
|
+
font-weight: bolder;
|
140
|
+
}
|
141
|
+
|
142
|
+
/**
|
143
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
144
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
145
|
+
*/
|
146
|
+
|
147
|
+
code,
|
148
|
+
kbd,
|
149
|
+
pre,
|
150
|
+
samp {
|
151
|
+
font-family: $mono-font-family; /* 1 (changed) */
|
152
|
+
font-size: 1em; /* 2 */
|
153
|
+
}
|
154
|
+
|
155
|
+
/**
|
156
|
+
* Add the correct font style in Android 4.3-.
|
157
|
+
*/
|
158
|
+
|
159
|
+
dfn {
|
160
|
+
font-style: italic;
|
161
|
+
}
|
162
|
+
|
163
|
+
/**
|
164
|
+
* Add the correct background and color in IE 9-. (Removed)
|
165
|
+
*/
|
166
|
+
|
167
|
+
/**
|
168
|
+
* Add the correct font size in all browsers.
|
169
|
+
*/
|
170
|
+
|
171
|
+
small {
|
172
|
+
font-size: 80%;
|
173
|
+
font-weight: 400; /* (added) */
|
174
|
+
}
|
175
|
+
|
176
|
+
/**
|
177
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
178
|
+
* all browsers.
|
179
|
+
*/
|
180
|
+
|
181
|
+
sub,
|
182
|
+
sup {
|
183
|
+
font-size: 75%;
|
184
|
+
line-height: 0;
|
185
|
+
position: relative;
|
186
|
+
vertical-align: baseline;
|
187
|
+
}
|
188
|
+
|
189
|
+
sub {
|
190
|
+
bottom: -0.25em;
|
191
|
+
}
|
192
|
+
|
193
|
+
sup {
|
194
|
+
top: -0.5em;
|
195
|
+
}
|
196
|
+
|
197
|
+
/* Embedded content
|
198
|
+
========================================================================== */
|
199
|
+
|
200
|
+
/**
|
201
|
+
* Add the correct display in IE 9-.
|
202
|
+
*/
|
203
|
+
|
204
|
+
audio,
|
205
|
+
video {
|
206
|
+
display: inline-block;
|
207
|
+
}
|
208
|
+
|
209
|
+
/**
|
210
|
+
* Add the correct display in iOS 4-7.
|
211
|
+
*/
|
212
|
+
|
213
|
+
audio:not([controls]) {
|
214
|
+
display: none;
|
215
|
+
height: 0;
|
216
|
+
}
|
217
|
+
|
218
|
+
/**
|
219
|
+
* Remove the border on images inside links in IE 10-.
|
220
|
+
*/
|
221
|
+
|
222
|
+
img {
|
223
|
+
border-style: none;
|
224
|
+
}
|
225
|
+
|
226
|
+
/**
|
227
|
+
* Hide the overflow in IE.
|
228
|
+
*/
|
229
|
+
|
230
|
+
svg:not(:root) {
|
231
|
+
overflow: hidden;
|
232
|
+
}
|
233
|
+
|
234
|
+
/* Forms
|
235
|
+
========================================================================== */
|
236
|
+
|
237
|
+
/**
|
238
|
+
* 1. Change the font styles in all browsers (opinionated).
|
239
|
+
* 2. Remove the margin in Firefox and Safari.
|
240
|
+
*/
|
241
|
+
|
242
|
+
button,
|
243
|
+
input,
|
244
|
+
optgroup,
|
245
|
+
select,
|
246
|
+
textarea {
|
247
|
+
font-family: inherit; /* 1 (changed) */
|
248
|
+
font-size: inherit; /* 1 (changed) */
|
249
|
+
line-height: inherit; /* 1 (changed) */
|
250
|
+
margin: 0; /* 2 */
|
251
|
+
}
|
252
|
+
|
253
|
+
/**
|
254
|
+
* Show the overflow in IE.
|
255
|
+
* 1. Show the overflow in Edge.
|
256
|
+
*/
|
257
|
+
|
258
|
+
button,
|
259
|
+
input { /* 1 */
|
260
|
+
overflow: visible;
|
261
|
+
}
|
262
|
+
|
263
|
+
/**
|
264
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
265
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
266
|
+
*/
|
267
|
+
|
268
|
+
button,
|
269
|
+
select { /* 1 */
|
270
|
+
text-transform: none;
|
271
|
+
}
|
272
|
+
|
273
|
+
/**
|
274
|
+
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
275
|
+
* controls in Android 4.
|
276
|
+
* 2. Correct the inability to style clickable types in iOS and Safari.
|
277
|
+
*/
|
278
|
+
|
279
|
+
button,
|
280
|
+
html [type="button"], /* 1 */
|
281
|
+
[type="reset"],
|
282
|
+
[type="submit"] {
|
283
|
+
-webkit-appearance: button; /* 2 */
|
284
|
+
}
|
285
|
+
|
286
|
+
/**
|
287
|
+
* Remove the inner border and padding in Firefox.
|
288
|
+
*/
|
289
|
+
|
290
|
+
button::-moz-focus-inner,
|
291
|
+
[type="button"]::-moz-focus-inner,
|
292
|
+
[type="reset"]::-moz-focus-inner,
|
293
|
+
[type="submit"]::-moz-focus-inner {
|
294
|
+
border-style: none;
|
295
|
+
padding: 0;
|
296
|
+
}
|
297
|
+
|
298
|
+
/**
|
299
|
+
* Restore the focus styles unset by the previous rule (removed).
|
300
|
+
*/
|
301
|
+
|
302
|
+
|
303
|
+
/**
|
304
|
+
* Change the border, margin, and padding in all browsers (opinionated) (changed).
|
305
|
+
*/
|
306
|
+
|
307
|
+
fieldset {
|
308
|
+
border: 0;
|
309
|
+
margin: 0;
|
310
|
+
padding: 0;
|
311
|
+
}
|
312
|
+
|
313
|
+
/**
|
314
|
+
* 1. Correct the text wrapping in Edge and IE.
|
315
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
316
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
317
|
+
* `fieldset` elements in all browsers.
|
318
|
+
*/
|
319
|
+
|
320
|
+
legend {
|
321
|
+
box-sizing: border-box; /* 1 */
|
322
|
+
color: inherit; /* 2 */
|
323
|
+
display: table; /* 1 */
|
324
|
+
max-width: 100%; /* 1 */
|
325
|
+
padding: 0; /* 3 */
|
326
|
+
white-space: normal; /* 1 */
|
327
|
+
}
|
328
|
+
|
329
|
+
/**
|
330
|
+
* 1. Add the correct display in IE 9-.
|
331
|
+
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
332
|
+
*/
|
333
|
+
|
334
|
+
progress {
|
335
|
+
display: inline-block; /* 1 */
|
336
|
+
vertical-align: baseline; /* 2 */
|
337
|
+
}
|
338
|
+
|
339
|
+
/**
|
340
|
+
* Remove the default vertical scrollbar in IE.
|
341
|
+
*/
|
342
|
+
|
343
|
+
textarea {
|
344
|
+
overflow: auto;
|
345
|
+
}
|
346
|
+
|
347
|
+
/**
|
348
|
+
* 1. Add the correct box sizing in IE 10-.
|
349
|
+
* 2. Remove the padding in IE 10-.
|
350
|
+
*/
|
351
|
+
|
352
|
+
[type="checkbox"],
|
353
|
+
[type="radio"] {
|
354
|
+
box-sizing: border-box; /* 1 */
|
355
|
+
padding: 0; /* 2 */
|
356
|
+
}
|
357
|
+
|
358
|
+
/**
|
359
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
360
|
+
*/
|
361
|
+
|
362
|
+
[type="number"]::-webkit-inner-spin-button,
|
363
|
+
[type="number"]::-webkit-outer-spin-button {
|
364
|
+
height: auto;
|
365
|
+
}
|
366
|
+
|
367
|
+
/**
|
368
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
369
|
+
* 2. Correct the outline style in Safari.
|
370
|
+
*/
|
371
|
+
|
372
|
+
[type="search"] {
|
373
|
+
-webkit-appearance: textfield; /* 1 */
|
374
|
+
outline-offset: -2px; /* 2 */
|
375
|
+
}
|
376
|
+
|
377
|
+
/**
|
378
|
+
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
379
|
+
*/
|
380
|
+
|
381
|
+
[type="search"]::-webkit-search-cancel-button,
|
382
|
+
[type="search"]::-webkit-search-decoration {
|
383
|
+
-webkit-appearance: none;
|
384
|
+
}
|
385
|
+
|
386
|
+
/**
|
387
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
388
|
+
* 2. Change font properties to `inherit` in Safari.
|
389
|
+
*/
|
390
|
+
|
391
|
+
::-webkit-file-upload-button {
|
392
|
+
-webkit-appearance: button; /* 1 */
|
393
|
+
font: inherit; /* 2 */
|
394
|
+
}
|
395
|
+
|
396
|
+
/* Interactive
|
397
|
+
========================================================================== */
|
398
|
+
|
399
|
+
/*
|
400
|
+
* Add the correct display in IE 9-.
|
401
|
+
* 1. Add the correct display in Edge, IE, and Firefox.
|
402
|
+
*/
|
403
|
+
|
404
|
+
details, /* 1 */
|
405
|
+
menu {
|
406
|
+
display: block;
|
407
|
+
}
|
408
|
+
|
409
|
+
/*
|
410
|
+
* Add the correct display in all browsers.
|
411
|
+
*/
|
412
|
+
|
413
|
+
summary {
|
414
|
+
display: list-item;
|
415
|
+
outline: none;
|
416
|
+
}
|
417
|
+
|
418
|
+
/* Scripting
|
419
|
+
========================================================================== */
|
420
|
+
|
421
|
+
/**
|
422
|
+
* Add the correct display in IE 9-.
|
423
|
+
*/
|
424
|
+
|
425
|
+
canvas {
|
426
|
+
display: inline-block;
|
427
|
+
}
|
428
|
+
|
429
|
+
/**
|
430
|
+
* Add the correct display in IE.
|
431
|
+
*/
|
432
|
+
|
433
|
+
template {
|
434
|
+
display: none;
|
435
|
+
}
|
436
|
+
|
437
|
+
/* Hidden
|
438
|
+
========================================================================== */
|
439
|
+
|
440
|
+
/**
|
441
|
+
* Add the correct display in IE 10-.
|
442
|
+
*/
|
443
|
+
|
444
|
+
[hidden] {
|
445
|
+
display: none;
|
446
|
+
}
|