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
@@ -0,0 +1,124 @@
1
+ .page-review {
2
+ input {
3
+ display: none;
4
+ }
5
+
6
+ .review-hover {
7
+ background: rgba($link-color, 0.05);
8
+ border: 0.1em solid transparent;
9
+ cursor: pointer;
10
+ display: inline-block;
11
+ margin-bottom: 0.2em;
12
+ padding: 0 0.2em;
13
+ }
14
+
15
+ input:checked + .review-hover,
16
+ .review-hover:hover {
17
+ background: none;
18
+ border: 0.1em solid;
19
+ }
20
+ }
21
+
22
+ .review-thumbs,
23
+ .everything-thumbs,
24
+ .topnine-thumbs {
25
+ @extend %clearfix;
26
+
27
+ height: 100%;
28
+ width: 100%;
29
+ }
30
+
31
+ .review-thumb,
32
+ .everything-thumb,
33
+ .topnine-thumb {
34
+ background-position: center;
35
+ background-size: cover;
36
+ display: block;
37
+ padding-bottom: (100 / 6) * 1%;
38
+ position: relative;
39
+ width: (100 / 6) * 1%;
40
+
41
+ &::before,
42
+ &::after {
43
+ content: "";
44
+ position: absolute;
45
+ }
46
+
47
+ &::before {
48
+ background: transparent;
49
+ transition: background 0.2s;
50
+ }
51
+
52
+ &:hover {
53
+ &::before {
54
+ background: rgba($black, 0.75);
55
+ bottom: 0;
56
+ height: 100%;
57
+ left: 0;
58
+ right: 0;
59
+ top: 0;
60
+ transition: background 0.2s;
61
+ width: 100%;
62
+ }
63
+
64
+ &::after {
65
+ @extend %fancy-type;
66
+
67
+ align-items: center;
68
+ box-sizing: border-box;
69
+ color: $white;
70
+ content: attr(title);
71
+ display: flex;
72
+ font-size: 0.6em;
73
+ height: 100%;
74
+ justify-content: center;
75
+ padding: 0 0.2em;
76
+ text-align: center;
77
+ text-transform: uppercase;
78
+ width: 100%;
79
+ word-wrap: break-word;
80
+ }
81
+ }
82
+
83
+ .icon {
84
+ bottom: 3px;
85
+ color: rgba($white, 0.7);
86
+ position: absolute;
87
+ right: 3px;
88
+ }
89
+ }
90
+
91
+ .topnine-thumb {
92
+ padding-bottom: (100 / 3) * 1%;
93
+ width: (100 / 3) * 1%;
94
+ }
95
+
96
+ // scss-lint:disable PropertySortOrder, DeclarationOrder
97
+ .review-container,
98
+ .review-thumbs,
99
+ .everything-thumbs,
100
+ .topnine-thumbs {
101
+ -webkit-box-align: top;
102
+ -webkit-align-items: top;
103
+ -ms-flex-align: top;
104
+ align-items: top;
105
+ display: -webkit-box;
106
+ display: -webkit-flex;
107
+ display: -ms-flexbox;
108
+ display: flex;
109
+ -webkit-flex-wrap: wrap;
110
+ -ms-flex-wrap: wrap;
111
+ flex-wrap: wrap;
112
+ -webkit-box-pack: left;
113
+ -webkit-justify-content: left;
114
+ -ms-flex-pack: left;
115
+ justify-content: left;
116
+ }
117
+
118
+ .review-container + .container {
119
+ margin-top: 1em;
120
+ }
121
+
122
+ .page-playlists .everything-thumb:hover::after {
123
+ font-size: 1em;
124
+ }
@@ -0,0 +1,148 @@
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ html,
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ }
10
+
11
+ html {
12
+ background: $header-bg;
13
+ }
14
+
15
+ body {
16
+ @extend %body-type;
17
+ background-color: $body-bg;
18
+ color: $text-color;
19
+ font-size: $body-font-size;
20
+ line-height: 1.5;
21
+ text-rendering: optimizeLegibility;
22
+ }
23
+
24
+ a {
25
+ color: $link-color;
26
+ text-decoration: none;
27
+ transition: $link-transition;
28
+
29
+ &:hover {
30
+ color: $link-hover;
31
+ text-decoration: underline;
32
+ transition: $link-transition;
33
+ }
34
+ }
35
+
36
+ .img-center {
37
+ display: block;
38
+ margin: 0 auto;
39
+ }
40
+
41
+ %text-left {
42
+ text-align: left;
43
+ }
44
+
45
+ .text-right {
46
+ text-align: right;
47
+ }
48
+
49
+ .pull-right {
50
+ float: right;
51
+ }
52
+
53
+ .pull-left {
54
+ float: left;
55
+ }
56
+
57
+ video {
58
+ max-width: 100%;
59
+ }
60
+
61
+ picture,
62
+ img {
63
+ display: block;
64
+ margin: 2em auto;
65
+ }
66
+
67
+ .img-polaroid {
68
+ background-color: $white;
69
+ border: 1px solid $dark-transparent02;
70
+ box-shadow: 0 1px 3px $dark-transparent01;
71
+ margin: 1em 0.25em 2em;
72
+ padding: 0.25em;
73
+ }
74
+
75
+ .img-full {
76
+ margin-left: auto;
77
+ margin-right: auto;
78
+ max-width: $container-width;
79
+ }
80
+
81
+ .img-half {
82
+ .post & {
83
+ max-width: 500px;
84
+ }
85
+
86
+ @include breakpoint(medium) {
87
+ width: 49.6%;
88
+ }
89
+ }
90
+
91
+ .img-thirds {
92
+ @include breakpoint(medium) {
93
+ width: 32.89%;
94
+ }
95
+ }
96
+
97
+ .thirds {
98
+ float: left;
99
+ margin-bottom: 1em;
100
+
101
+ @include breakpoint(medium) {
102
+ width: 31.8%;
103
+ }
104
+ }
105
+
106
+ .img-fourths {
107
+ @include breakpoint(medium) {
108
+ width: 24.5%;
109
+ }
110
+ }
111
+
112
+ .post {
113
+ video + video {
114
+ @include breakpoint(medium) {
115
+ margin-left: 0.65%;
116
+ }
117
+ }
118
+ }
119
+
120
+ .img-split-wide,
121
+ .img-wide {
122
+ @include breakpoint(medium) {
123
+ width: 62.7%;
124
+ }
125
+ }
126
+
127
+ .img-split-tall,
128
+ .img-tall {
129
+ @include breakpoint(medium) {
130
+ width: 35.25%;
131
+ }
132
+ }
133
+
134
+ .rotate-left {
135
+ transform: rotate(-90deg);
136
+ }
137
+
138
+ .img-half,
139
+ .img-thirds,
140
+ .img-fourths,
141
+ .img-split-wide,
142
+ .img-wide,
143
+ .img-split-tall,
144
+ .img-tall {
145
+ @include breakpoint(medium) {
146
+ //display: inline-block;
147
+ }
148
+ }
@@ -0,0 +1,29 @@
1
+ .search-input {
2
+ -webkit-appearance: none;
3
+ border: 0;
4
+ border-radius: 0.25em;
5
+ font-family: inherit;
6
+ font-size: 1.25em;
7
+ margin: 2em auto 1em;
8
+ padding: 0.5em;
9
+ width: 100%;
10
+ }
11
+
12
+ .result {
13
+ margin-bottom: 2em;
14
+
15
+ @include breakpoint(medium) {
16
+ align-items: center;
17
+ display: flex;
18
+ justify-content: left;
19
+ }
20
+
21
+ p {
22
+ margin-bottom: 0;
23
+ }
24
+ }
25
+
26
+ .result-emoji {
27
+ width: 3em;
28
+ align-self: baseline;
29
+ }
data/_sass/_shame.scss ADDED
File without changes
data/_sass/_type.scss ADDED
@@ -0,0 +1,184 @@
1
+ %body-type {
2
+ font-family: $body-font-family;
3
+ font-weight: $body-font-weight;
4
+ }
5
+
6
+ %fancy-type {
7
+ font-family: $fancy-font-family;
8
+ font-weight: $fancy-font-weight;
9
+ }
10
+
11
+ %headings-type {
12
+ font-weight: $body-font-weight;
13
+ }
14
+
15
+ %code-type {
16
+ font-family: $code-font-family;
17
+ }
18
+
19
+ strong {
20
+ font-weight: $body-font-bold;
21
+ }
22
+
23
+ em {
24
+ font-style: italic;
25
+ }
26
+
27
+ .lead {
28
+ font-size: 1.5em;
29
+ text-align: justify;
30
+ }
31
+
32
+ p {
33
+ margin-bottom: 1.3em;
34
+ margin-top: 0;
35
+ }
36
+
37
+ h1,
38
+ h2,
39
+ h3,
40
+ h4 {
41
+ line-height: 1.2;
42
+ margin: 1.414em 0 0.5em;
43
+ }
44
+
45
+ h1,
46
+ .h1 {
47
+ @extend %fancy-type;
48
+
49
+ font-size: $h1-size;
50
+ margin-top: 0;
51
+ }
52
+
53
+ h2,
54
+ .h2,
55
+ h3,
56
+ .h3,
57
+ h4,
58
+ .h4 {
59
+ font-weight: 700;
60
+ }
61
+
62
+ h2,
63
+ .h2,
64
+ h3,
65
+ .h3 {
66
+ @extend %headings-type;
67
+ }
68
+
69
+ h2,
70
+ .h2 {
71
+ font-size: $h2-size;
72
+ }
73
+
74
+ h3,
75
+ .h3 {
76
+ font-size: $h3-size;
77
+ }
78
+
79
+ h4,
80
+ .h4 {
81
+ font-size: $h4-size;
82
+ }
83
+
84
+ .xl {
85
+ font-size: 1.5em;
86
+ }
87
+
88
+ %large,
89
+ .large {
90
+ font-size: 1.25em;
91
+ }
92
+
93
+ %small,
94
+ small,
95
+ .small {
96
+ font-size: $font-small;
97
+
98
+ @include breakpoint(small) {
99
+ font-size: 1em;
100
+ }
101
+ }
102
+
103
+ %xs,
104
+ .xs {
105
+ font-size: $font-xs;
106
+
107
+ @include breakpoint(small) {
108
+ font-size: 1em;
109
+ }
110
+ }
111
+
112
+ %xxs,
113
+ .xxs {
114
+ font-size: 0.6em;
115
+
116
+ @include breakpoint(small) {
117
+ font-size: 1em;
118
+ }
119
+ }
120
+
121
+ ul,
122
+ ol {
123
+ margin-bottom: 1em;
124
+ }
125
+
126
+ ol {
127
+ list-style: decimal;
128
+ }
129
+
130
+ .unstyled {
131
+ list-style: none;
132
+ margin: 0;
133
+ padding: 0;
134
+ }
135
+
136
+ hr {
137
+ border: 1px solid $white;
138
+ margin: 2em auto;
139
+ max-width: 70%;
140
+ }
141
+
142
+ blockquote {
143
+ margin: 2em auto;
144
+ position: relative;
145
+
146
+ p {
147
+ @extend %fancy-type;
148
+
149
+ font-size: 1.25em;
150
+ }
151
+
152
+ cite {
153
+ @extend %code-type;
154
+
155
+ display: block;
156
+ font-size: 0.5em;
157
+ font-style: normal;
158
+ }
159
+
160
+ &::before {
161
+ color: darken($accent, 10%);
162
+ content: "\201C";
163
+ display: block;
164
+ font-size: 8em;
165
+ height: 1em;
166
+ left: -0.1em;
167
+ line-height: 1;
168
+ position: absolute;
169
+ top: -0.2em;
170
+ width: 1em;
171
+ z-index: -1;
172
+ }
173
+ }
174
+
175
+ .big {
176
+ font-size: 7em;
177
+ line-height: 1;
178
+ margin-bottom: 0.25em;
179
+ }
180
+
181
+ ::selection {
182
+ background: $fancy-accent;
183
+ color: $white;
184
+ }
@@ -0,0 +1,82 @@
1
+ %clearfix {
2
+ zoom: 1;
3
+
4
+ &::before,
5
+ &::after {
6
+ content: "\0020";
7
+ display: block;
8
+ height: 0;
9
+ overflow: hidden;
10
+ }
11
+
12
+ &::after {
13
+ clear: both;
14
+ }
15
+ }
16
+
17
+ img {
18
+ max-width: 100%;
19
+ }
20
+
21
+ .hide {
22
+ display: none;
23
+ }
24
+
25
+ .hide-small {
26
+ @include breakpoint(small) {
27
+ display: none;
28
+ }
29
+ }
30
+
31
+ %flex {
32
+ align-items: center;
33
+ display: flex;
34
+ justify-content: left;
35
+ }
36
+
37
+ // scss-lint:disable VendorPrefixes, PropertySortOrder
38
+ %flex-center {
39
+ -webkit-box-align: center;
40
+ -webkit-align-items: center;
41
+ -ms-flex-align: center;
42
+ align-items: center;
43
+ display: -webkit-box;
44
+ display: -webkit-flex;
45
+ display: -ms-flexbox;
46
+ display: flex;
47
+ }
48
+
49
+ %flex-container {
50
+ display: -webkit-box;
51
+ display: -ms-flexbox;
52
+ display: flex;
53
+ }
54
+
55
+ %flex-child {
56
+ display: block;
57
+ max-width: 100%;
58
+ }
59
+
60
+ %flex-child-no-shrink {
61
+ -ms-flex-negative: 0;
62
+ flex-shrink: 0;
63
+ }
64
+
65
+ %flex-space-between {
66
+ -webkit-box-pack: justify;
67
+ -ms-flex-pack: justify;
68
+ justify-content: space-between;
69
+ }
70
+
71
+ %text-right,
72
+ .text-right {
73
+ text-align: right;
74
+ }
75
+
76
+ %text-left {
77
+ text-align: left;
78
+ }
79
+
80
+ .text-center {
81
+ text-align: center;
82
+ }
@@ -0,0 +1,137 @@
1
+ //////////////// primary
2
+
3
+ // flatuicolors.com inspo
4
+
5
+ $body-bg: #f6f6f6;
6
+ $dark-accent: #2c3e50;
7
+ $light-accent: #ecf0f1;
8
+ $fancy-accent: #e74c3c;
9
+ $fancy-accent-aa: darken($fancy-accent, 7%);
10
+ $white: #fff;
11
+ $black: #000;
12
+
13
+ $dark-transparent01: rgba(0, 0, 0, 0.1);
14
+ $dark-transparent02: rgba(0, 0, 0, 0.2);
15
+
16
+ $link: #2980b9;
17
+
18
+ $link-color: darken($link, 4%);
19
+ $link-hover: darken($link, 15%);
20
+ $link-transition: 0.1s;
21
+
22
+ $body-font-size: 24px;
23
+ $font-small: 0.889em;
24
+ $font-xs: 0.7em;
25
+
26
+ $text-color: #333;
27
+ $text-color-light: lighten($text-color, 20%);
28
+
29
+ $code-font-family: "IBM Plex Mono", "Courier New", monospace;
30
+ $fancy-font-family: "IBM Plex Serif", Georgia, serif;
31
+ $body-font-family: "IBM Plex Sans", Arial, sans-serif;
32
+
33
+ $body-font-weight: 300;
34
+ $body-font-bold: 700;
35
+ $fancy-font-weight: 400;
36
+
37
+ $container-width: 800px;
38
+ $media-max: 1000px;
39
+
40
+ $border-radius-img: 0.15em;
41
+
42
+ $h1-size: 1.602em;
43
+ $h1-size-map: $h1-size;
44
+ $h2-size: 1.266em;
45
+ $h3-size: 1.125em;
46
+ $h4-size: 1em;
47
+
48
+ $border-radius: 0.2em;
49
+
50
+ $body-padding-top: 4em;
51
+
52
+ $header-bg: $white;
53
+ $accent: rgba(241, 247, 248, 1);
54
+
55
+ /////////////// Code Highlighter
56
+ // Adapted from https://gist.github.com/edwardhotchkiss/2005058
57
+
58
+ $highlightone: #586e75;
59
+ $highlighttwo: #93a1a1;
60
+ $highlightthree: #859900;
61
+ $highlightfour: #cb4b16;
62
+ $highlightfive: #2aa198;
63
+ $highlightsix: #dc322f;
64
+ $highlightseven: #268bd2;
65
+ $highlighteight: #b58900;
66
+ $highlightnine: #555;
67
+
68
+ $highlightcomment: $highlightone;
69
+ $highlighterror: $highlighttwo;
70
+ $highlightgeneric: $highlighttwo;
71
+ $highlightkeyword: $highlightthree;
72
+ $highlightliteral: $highlighttwo;
73
+ $highlightname: $highlighttwo;
74
+ $highlightoperator: $highlightthree;
75
+ $highlightother: $highlightfour;
76
+ $highlightpunctuation: $highlighttwo;
77
+ $highlightcommentmultiline: $highlightone;
78
+ $highlightcommentpreproc: $highlightthree;
79
+ $highlightcommentsingle: $highlightone;
80
+ $highlightcommentspecial: $highlightthree;
81
+ $highlightgenericdeleted: $highlightfive;
82
+ $highlightgenericemph: $highlighttwo;
83
+ $highlightgenericemph: $highlighttwo;
84
+ $highlightgenericerror: $highlightsix;
85
+ $highlightgenericheading: $highlightfour;
86
+ $highlightgenericinserted: $highlightthree;
87
+ $highlightgenericoutput: $highlighttwo;
88
+ $highlightgenericprompt: $highlighttwo;
89
+ $highlightgenericstrong: $highlighttwo;
90
+ $highlightgenericsubheading: $highlightfour;
91
+ $highlightgenerictraceback: $highlighttwo;
92
+ $highlightkeywordconstant: $highlightfour;
93
+ $highlightkeyworddeclaration: $highlightseven;
94
+ $highlightkeywordnamespace: $highlightthree;
95
+ $highlightkeywordpseudo: $highlightthree;
96
+ $highlightkeywordreserved: $highlightseven;
97
+ $highlightkeywordtype: $highlightsix;
98
+ $highlightliteraldate: $highlighttwo;
99
+ $highlightliteralnumber: $highlightfive;
100
+ $highlightliteralstring: $highlightfive;
101
+ $highlightnameattribute: $highlighttwo;
102
+ $highlightnamebuiltin: $highlighteight;
103
+ $highlightnameclass: $highlightseven;
104
+ $highlightnameconstant: $highlightfour;
105
+ $highlightnamedecorator: $highlightseven;
106
+ $highlightnameentity: $highlightfour;
107
+ $highlightnameexception: $highlightfour;
108
+ $highlightnamefunction: $highlightseven;
109
+ $highlightnamelabel: $highlighttwo;
110
+ $highlightnamelabel: $highlighttwo;
111
+ $highlightnamenamespace: $highlighttwo;
112
+ $highlightnameother: $highlightnine;
113
+ $highlightnameproperty: $highlighttwo;
114
+ $highlightnametag: $highlightseven;
115
+ $highlightnamevariable: $highlightseven;
116
+ $highlightoperatorword: $highlightthree;
117
+ $highlighttextwhitespace: $highlighttwo;
118
+ $highlightliteralnumberfloat: $highlightfive;
119
+ $highlightliteralnumberhex: $highlightfive;
120
+ $highlightliteralnumberinteger: $highlightfive;
121
+ $highlightliteralnumberoct: $highlightfive;
122
+ $highlightliteralstringbacktick: $highlightone;
123
+ $highlightliteralstringchar: $highlightfive;
124
+ $highlightliteralstringdoc: $highlighttwo;
125
+ $highlightliteralstringdouble: $highlightfive;
126
+ $highlightliteralstringescape: $highlightfour;
127
+ $highlightliteralstringheredoc: $highlighttwo;
128
+ $highlightliteralstringinterpol: $highlightfive;
129
+ $highlightliteralstringother: $highlightfive;
130
+ $highlightliteralstringregex: $highlightsix;
131
+ $highlightliteralstringsingle: $highlightfive;
132
+ $highlightliteralstringsymbol: $highlightfive;
133
+ $highlightnamebuiltinpseudo: $highlightseven;
134
+ $highlightnamevariableclass: $highlightseven;
135
+ $highlightnamevariableglobal: $highlightseven;
136
+ $highlightnamevariableinstance: $highlightseven;
137
+ $highlightliteralnumberintegerlong: $highlightfive;