jekyll-theme-katydecorah 0.1.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.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +42 -0
  4. data/_includes/end.html +15 -0
  5. data/_includes/footer.html +15 -0
  6. data/_includes/header.html +5 -0
  7. data/_includes/icons/angle-left.svg +1 -0
  8. data/_includes/icons/angle-right.svg +1 -0
  9. data/_includes/icons/blog.svg +1 -0
  10. data/_includes/icons/bookmark.svg +1 -0
  11. data/_includes/icons/code.svg +1 -0
  12. data/_includes/icons/codepen.svg +1 -0
  13. data/_includes/icons/github.svg +1 -0
  14. data/_includes/icons/instagram.svg +1 -0
  15. data/_includes/icons/link.svg +1 -0
  16. data/_includes/icons/mail.svg +1 -0
  17. data/_includes/icons/map-signs.svg +1 -0
  18. data/_includes/icons/map.svg +1 -0
  19. data/_includes/icons/marker.svg +1 -0
  20. data/_includes/icons/menu.svg +1 -0
  21. data/_includes/icons/music.svg +1 -0
  22. data/_includes/icons/pause.svg +1 -0
  23. data/_includes/icons/play.svg +1 -0
  24. data/_includes/icons/rss.svg +1 -0
  25. data/_includes/icons/selection.json +485 -0
  26. data/_includes/icons/tag.svg +1 -0
  27. data/_includes/icons/twitter.svg +1 -0
  28. data/_includes/img.html +5 -0
  29. data/_includes/locations.html +1 -0
  30. data/_includes/paginator.html +15 -0
  31. data/_includes/post-list.html +7 -0
  32. data/_includes/post-map-header.html +11 -0
  33. data/_includes/prev-next.html +3 -0
  34. data/_includes/single-playlist.html +16 -0
  35. data/_includes/skip.html +4 -0
  36. data/_includes/tags.html +1 -0
  37. data/_includes/top.html +35 -0
  38. data/_includes/twitter.html +1 -0
  39. data/_layouts/category.html +10 -0
  40. data/_layouts/default.html +13 -0
  41. data/_layouts/front-page.html +25 -0
  42. data/_layouts/hello.html +12 -0
  43. data/_layouts/post.html +30 -0
  44. data/_layouts/redirect.html +7 -0
  45. data/_layouts/review.html +175 -0
  46. data/_sass/_accessibility.scss +29 -0
  47. data/_sass/_adventure.scss +69 -0
  48. data/_sass/_archive.scss +71 -0
  49. data/_sass/_brags.scss +23 -0
  50. data/_sass/_buttons.scss +28 -0
  51. data/_sass/_code.scss +308 -0
  52. data/_sass/_footer.scss +61 -0
  53. data/_sass/_front-page.scss +180 -0
  54. data/_sass/_header.scss +21 -0
  55. data/_sass/_icons.scss +62 -0
  56. data/_sass/_layout.scss +59 -0
  57. data/_sass/_map.scss +93 -0
  58. data/_sass/_mixins.scss +28 -0
  59. data/_sass/_nav.scss +54 -0
  60. data/_sass/_playlists.scss +58 -0
  61. data/_sass/_posts.scss +347 -0
  62. data/_sass/_postsMap.scss +69 -0
  63. data/_sass/_print.scss +13 -0
  64. data/_sass/_review.scss +124 -0
  65. data/_sass/_scaffolding.scss +148 -0
  66. data/_sass/_search.scss +29 -0
  67. data/_sass/_shame.scss +0 -0
  68. data/_sass/_type.scss +184 -0
  69. data/_sass/_utilities.scss +82 -0
  70. data/_sass/_variables.scss +137 -0
  71. data/assets/lunr-feed.js +48 -0
  72. data/assets/lunr.min.js +7 -0
  73. data/assets/style.scss +29 -0
  74. metadata +158 -0
data/_sass/_code.scss ADDED
@@ -0,0 +1,308 @@
1
+ pre.highlight {
2
+ max-height: 400px;
3
+ overflow: auto;
4
+ }
5
+
6
+ code,
7
+ pre {
8
+ @extend %code-type;
9
+
10
+ background: $white;
11
+ border-radius: 0.2em;
12
+ hyphens: none;
13
+ tab-size: 4;
14
+ white-space: pre-wrap;
15
+ word-break: break-word;
16
+ word-spacing: normal;
17
+ }
18
+
19
+ pre {
20
+ margin: 1em 0;
21
+ padding: 1em;
22
+
23
+ code {
24
+ background: none;
25
+ padding: 0;
26
+ }
27
+ }
28
+
29
+ code {
30
+ padding: 0 0.25em;
31
+ }
32
+
33
+ // Adapted from https://gist.github.com/edwardhotchkiss/2005058
34
+ .highlight {
35
+ .c {
36
+ color: $highlightcomment;
37
+ }
38
+
39
+ .err {
40
+ color: $highlighterror;
41
+ }
42
+
43
+ .g {
44
+ color: $highlightgeneric;
45
+ }
46
+
47
+ .k {
48
+ color: $highlightkeyword;
49
+ }
50
+
51
+ .l {
52
+ color: $highlightliteral;
53
+ }
54
+
55
+ .n {
56
+ color: $highlightname;
57
+ }
58
+
59
+ .o {
60
+ color: $highlightoperator;
61
+ }
62
+
63
+ .x {
64
+ color: $highlightother;
65
+ }
66
+
67
+ .p {
68
+ color: $highlightpunctuation;
69
+ }
70
+
71
+ .cm {
72
+ color: $highlightcommentmultiline;
73
+ }
74
+
75
+ .cp {
76
+ color: $highlightcommentpreproc;
77
+ }
78
+
79
+ .c1 {
80
+ color: $highlightcommentsingle;
81
+ }
82
+
83
+ .cs {
84
+ color: $highlightcommentspecial;
85
+ }
86
+
87
+ .gd {
88
+ color: $highlightgenericdeleted;
89
+ }
90
+
91
+ .ge {
92
+ color: $highlightgenericemph;
93
+ font-style: italic;
94
+ }
95
+
96
+ .gr {
97
+ color: $highlightgenericerror;
98
+ }
99
+
100
+ .gh {
101
+ color: $highlightgenericheading;
102
+ }
103
+
104
+ .gi {
105
+ color: $highlightgenericinserted;
106
+ }
107
+
108
+ .go {
109
+ color: $highlightgenericoutput;
110
+ }
111
+
112
+ .gp {
113
+ color: $highlightgenericprompt;
114
+ }
115
+
116
+ .gs {
117
+ color: $highlightgenericstrong;
118
+ font-weight: bold;
119
+ }
120
+
121
+ .gu {
122
+ color: $highlightgenericsubheading;
123
+ }
124
+
125
+ .gt {
126
+ color: $highlightgenerictraceback;
127
+ }
128
+
129
+ .kc {
130
+ color: $highlightkeywordconstant;
131
+ }
132
+
133
+ .kd {
134
+ color: $highlightkeyworddeclaration;
135
+ }
136
+
137
+ .kn {
138
+ color: $highlightkeywordnamespace;
139
+ }
140
+
141
+ .kp {
142
+ color: $highlightkeywordpseudo;
143
+ }
144
+
145
+ .kr {
146
+ color: $highlightkeywordreserved;
147
+ }
148
+
149
+ .kt {
150
+ color: $highlightkeywordtype;
151
+ }
152
+
153
+ .ld {
154
+ color: $highlightliteraldate;
155
+ }
156
+
157
+ .m {
158
+ color: $highlightliteralnumber;
159
+ }
160
+
161
+ .s {
162
+ color: $highlightliteralstring;
163
+ }
164
+
165
+ .na {
166
+ color: $highlightnameattribute;
167
+ }
168
+
169
+ .nb {
170
+ color: $highlightnamebuiltin;
171
+ }
172
+
173
+ .nc {
174
+ color: $highlightnameclass;
175
+ }
176
+
177
+ .no {
178
+ color: $highlightnameconstant;
179
+ }
180
+
181
+ .nd {
182
+ color: $highlightnamedecorator;
183
+ }
184
+
185
+ .ni {
186
+ color: $highlightnameentity;
187
+ }
188
+
189
+ .ne {
190
+ color: $highlightnameexception;
191
+ }
192
+
193
+ .nf {
194
+ color: $highlightnamefunction;
195
+ }
196
+
197
+ .nl {
198
+ color: $highlightnamelabel;
199
+ }
200
+
201
+ .nn {
202
+ color: $highlightnamenamespace;
203
+ }
204
+
205
+ .nx {
206
+ color: $highlightnameother;
207
+ }
208
+
209
+ .py {
210
+ color: $highlightnameproperty;
211
+ }
212
+
213
+ .nt {
214
+ color: $highlightnametag;
215
+ }
216
+
217
+ .nv {
218
+ color: $highlightnamevariable;
219
+ }
220
+
221
+ .ow {
222
+ color: $highlightoperatorword;
223
+ }
224
+
225
+ .w {
226
+ color: $highlighttextwhitespace;
227
+ }
228
+
229
+ .mf {
230
+ color: $highlightliteralnumberfloat;
231
+ }
232
+
233
+ .mh {
234
+ color: $highlightliteralnumberhex;
235
+ }
236
+
237
+ .mi {
238
+ color: $highlightliteralnumberinteger;
239
+ }
240
+
241
+ .mo {
242
+ color: $highlightliteralnumberoct;
243
+ }
244
+
245
+ .sb {
246
+ color: $highlightliteralstringbacktick;
247
+ }
248
+
249
+ .sc {
250
+ color: $highlightliteralstringchar;
251
+ }
252
+
253
+ .sd {
254
+ color: $highlightliteralstringdoc;
255
+ }
256
+
257
+ .s2 {
258
+ color: $highlightliteralstringdouble;
259
+ }
260
+
261
+ .se {
262
+ color: $highlightliteralstringescape;
263
+ }
264
+
265
+ .sh {
266
+ color: $highlightliteralstringheredoc;
267
+ }
268
+
269
+ .si {
270
+ color: $highlightliteralstringinterpol;
271
+ }
272
+
273
+ .sx {
274
+ color: $highlightliteralstringother;
275
+ }
276
+
277
+ .sr {
278
+ color: $highlightliteralstringregex;
279
+ }
280
+
281
+ .s1 {
282
+ color: $highlightliteralstringsingle;
283
+ }
284
+
285
+ .ss {
286
+ color: $highlightliteralstringsymbol;
287
+ }
288
+
289
+ .bp {
290
+ color: $highlightnamebuiltinpseudo;
291
+ }
292
+
293
+ .vc {
294
+ color: $highlightnamevariableclass;
295
+ }
296
+
297
+ .vg {
298
+ color: $highlightnamevariableglobal;
299
+ }
300
+
301
+ .vi {
302
+ color: $highlightnamevariableinstance;
303
+ }
304
+
305
+ .il {
306
+ color: $highlightliteralnumberintegerlong;
307
+ }
308
+ }
@@ -0,0 +1,61 @@
1
+ .footer {
2
+ background: $header-bg;
3
+ margin-top: 2em;
4
+ z-index: 100;
5
+ position: relative;
6
+
7
+ .container {
8
+ padding-bottom: 2em;
9
+ padding-top: 3em;
10
+ }
11
+
12
+ .nav-link {
13
+ padding-right: 1em;
14
+
15
+ &.nav-link:hover {
16
+ color: $link-hover;
17
+ text-decoration: none;
18
+ }
19
+ }
20
+
21
+ .nav {
22
+ margin-bottom: 1em;
23
+ }
24
+
25
+ .navbar {
26
+ margin-bottom: 2em;
27
+ }
28
+ }
29
+
30
+ .bio {
31
+ @extend %flex;
32
+ @extend %flex-space-between;
33
+
34
+ margin-bottom: 3em;
35
+
36
+ .bio-img,
37
+ .bio-details {
38
+ @extend %flex-child;
39
+ }
40
+
41
+ .bio-img.bio-img {
42
+ @extend %flex-child-no-shrink;
43
+
44
+ display: none;
45
+
46
+ @include breakpoint(medium) {
47
+ display: block;
48
+ margin-right: 2em;
49
+ }
50
+ }
51
+
52
+ .bio-img-container {
53
+ width: 8em;
54
+ margin: 0;
55
+
56
+ img {
57
+ margin: 0;
58
+ border-radius: 100%;
59
+ }
60
+ }
61
+ }
@@ -0,0 +1,180 @@
1
+ .all-posts {
2
+ .front-page & {
3
+ padding-left: 1.5em;
4
+ }
5
+
6
+ @include breakpoint(medium) {
7
+ .front-page & {
8
+ padding-left: 2em;
9
+ }
10
+ }
11
+
12
+ .post-meta {
13
+ .no-flexbox & {
14
+ padding-top: 2em;
15
+ }
16
+ }
17
+
18
+ .post-emoji {
19
+ display: inline-block;
20
+ position: relative;
21
+ text-indent: -1.5em;
22
+ top: 2px;
23
+
24
+ @include breakpoint(medium) {
25
+ text-indent: -2em;
26
+ }
27
+ }
28
+
29
+ .post-date {
30
+ color: $text-color-light;
31
+ }
32
+ }
33
+
34
+ .post-link {
35
+ @extend %flex;
36
+
37
+ color: $text-color;
38
+ display: block;
39
+ padding-bottom: 0.5em;
40
+ padding-top: 0.5em;
41
+
42
+ &:hover {
43
+ text-decoration: none;
44
+
45
+ .post-img {
46
+ background-color: transparent;
47
+ transition: $link-transition;
48
+ }
49
+ }
50
+ }
51
+
52
+ .project-image,
53
+ .post-img-container {
54
+ display: none;
55
+
56
+ @include breakpoint(medium) {
57
+ align-items: center;
58
+ border-radius: $border-radius-img;
59
+ display: flex;
60
+ height: 7.5em;
61
+ justify-content: left;
62
+ margin-right: 2em;
63
+ overflow: hidden;
64
+ width: 10em;
65
+
66
+ .post-img {
67
+ //background-blend-mode: overlay;
68
+ //background-color: rgba($body-bg, .3);
69
+ background-position: center;
70
+ background-size: cover;
71
+ height: 100%;
72
+ margin: 0;
73
+ transition: $link-transition;
74
+ width: 100%;
75
+ }
76
+ }
77
+ }
78
+
79
+ .post-title {
80
+ @extend %fancy-type;
81
+
82
+ font-size: 1em;
83
+ }
84
+
85
+ .paginator {
86
+ margin-top: 1em;
87
+ }
88
+
89
+ .post-elsewhere-label .icon {
90
+ color: $link-color;
91
+ font-size: 0.8em;
92
+ }
93
+
94
+ .categories {
95
+ @extend %xxs;
96
+
97
+ display: none;
98
+ margin-bottom: 2em;
99
+
100
+ @include breakpoint(medium) {
101
+ display: block;
102
+ }
103
+
104
+ /*
105
+
106
+ @include breakpoint(big) {
107
+ position: fixed;
108
+ left: 2em;
109
+ margin-top: 1.5em;
110
+ width: 12em;
111
+ }
112
+
113
+ */
114
+
115
+ .category {
116
+ @extend %btn;
117
+
118
+ margin-bottom: 0.5em;
119
+
120
+ @include breakpoint(medium) {
121
+ display: inline-block;
122
+ margin-bottom: 0;
123
+ }
124
+
125
+ @include breakpoint(big) {
126
+ margin-bottom: 0.25em;
127
+ }
128
+
129
+ &.active,
130
+ &:hover {
131
+ background: $white;
132
+ color: $link-hover;
133
+ text-decoration: none;
134
+ }
135
+ }
136
+
137
+ .emoji {
138
+ left: -4px;
139
+ position: relative;
140
+ vertical-align: middle;
141
+ }
142
+ }
143
+
144
+ .post-tags {
145
+ display: none;
146
+
147
+ .post-page & {
148
+ margin-top: 1em;
149
+ }
150
+
151
+ @include breakpoint(medium) {
152
+ display: block;
153
+ .front-page & {
154
+ display: inline-block;
155
+ margin-left: 0.5em;
156
+ }
157
+ }
158
+
159
+ .post-tag {
160
+ .front-page & {
161
+ @extend %xs;
162
+ }
163
+
164
+ background: $light-accent;
165
+ border-radius: 1em;
166
+ display: inline-block;
167
+ margin-right: 0.5em;
168
+ padding: 0 0.75em;
169
+ }
170
+
171
+ a {
172
+ color: darken($link-color, 15%);
173
+
174
+ &:hover {
175
+ background-color: darken($link-color, 15%);
176
+ color: $white;
177
+ text-decoration: none;
178
+ }
179
+ }
180
+ }
@@ -0,0 +1,21 @@
1
+ .header {
2
+ @extend %clearfix;
3
+
4
+ background-color: rgba($header-bg, 0.85);
5
+ margin-bottom: 2em;
6
+ position: relative;
7
+
8
+ .logo {
9
+ @extend %small;
10
+ @extend %fancy-type;
11
+
12
+ color: $dark-accent;
13
+ display: block;
14
+ padding-bottom: 0.5em;
15
+ padding-top: 0.5em;
16
+
17
+ &:hover {
18
+ text-decoration: none;
19
+ }
20
+ }
21
+ }
data/_sass/_icons.scss ADDED
@@ -0,0 +1,62 @@
1
+ .icon-ul {
2
+ list-style-type: none;
3
+ margin-left: 2.14285714em;
4
+ padding-left: 0;
5
+ }
6
+
7
+ .icon-ul > li {
8
+ position: relative;
9
+ }
10
+
11
+ .icon-li {
12
+ left: -2.14285714em;
13
+ position: absolute;
14
+ text-align: center;
15
+ top: 0.25em;
16
+ width: 2.14285714em;
17
+ }
18
+
19
+ .icon {
20
+ display: inline-block;
21
+ fill: currentColor;
22
+ height: 1em;
23
+ stroke: currentColor;
24
+ stroke-width: 0;
25
+ width: 1em;
26
+ }
27
+
28
+ .icon-music {
29
+ width: 0.8571395426988602em;
30
+ }
31
+
32
+ .icon-tag {
33
+ width: 0.8454238213598728em;
34
+ }
35
+
36
+ .icon-play {
37
+ width: 0.7851562518626451em;
38
+ }
39
+
40
+ .icon-pause {
41
+ width: 0.8571436069905758em;
42
+ }
43
+
44
+ .icon-bookmark {
45
+ width: 0.7142851911485195em;
46
+ }
47
+
48
+ .icon-angle-left {
49
+ width: 0.3750009909272194em;
50
+ }
51
+
52
+ .icon-angle-right {
53
+ width: 0.3392861280590296em;
54
+ }
55
+
56
+ .icon-map-signs {
57
+ width: 1.000000961124897em;
58
+ }
59
+
60
+ .icon-map {
61
+ width: 0.9999999906867743em;
62
+ }
@@ -0,0 +1,59 @@
1
+ .container {
2
+ @extend %clearfix;
3
+
4
+ margin-left: auto;
5
+ margin-right: auto;
6
+ max-width: $container-width;
7
+ min-height: 1em;
8
+ padding-left: 1em;
9
+ padding-right: 1em;
10
+ position: relative;
11
+ }
12
+
13
+ .container-large {
14
+ max-width: $media-max;
15
+ }
16
+
17
+ .half-left,
18
+ .half-right {
19
+ @include breakpoint(medium) {
20
+ float: left;
21
+ width: 48%;
22
+ }
23
+ }
24
+
25
+ .half-left {
26
+ @include breakpoint(medium) {
27
+ margin-right: 4%;
28
+ }
29
+ }
30
+
31
+ // scss-lint:disable VendorPrefixes
32
+ .columns {
33
+ -moz-column-gap: 3em;
34
+ -webkit-column-gap: 3em;
35
+ column-gap: 3em;
36
+ -moz-columns: 2 290px;
37
+ -webkit-columns: 2 290px;
38
+ columns: 2 290px;
39
+
40
+ @include breakpoint(medium) {
41
+ font-size: $font-xs;
42
+ }
43
+
44
+ .icon-ul {
45
+ margin-top: 0;
46
+ }
47
+
48
+ li {
49
+ -webkit-column-break-inside: avoid;
50
+ display: block;
51
+ padding: 0.2em 0;
52
+ }
53
+ }
54
+
55
+ .emoji {
56
+ display: inline-block;
57
+ margin: 0;
58
+ max-width: none;
59
+ }