lysande-jekyll-theme 0.0.1 → 1.0.0

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 (43) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +536 -0
  4. data/_data/theme.yml +5 -0
  5. data/_includes/footer.html +19 -0
  6. data/_includes/globalnav.html +12 -0
  7. data/_includes/head.html +17 -0
  8. data/_includes/header.html +69 -0
  9. data/_layouts/blog.html +30 -0
  10. data/_layouts/default.html +16 -0
  11. data/_layouts/post.html +40 -0
  12. data/_layouts/projects.html +49 -0
  13. data/_sass/_base.scss +153 -0
  14. data/_sass/_blog.scss +183 -0
  15. data/_sass/_headandfoot.scss +61 -0
  16. data/_sass/_menu.scss +31 -0
  17. data/_sass/_projects.scss +139 -0
  18. data/_sass/_reset.scss +21 -0
  19. data/_sass/_responsive.scss +267 -0
  20. data/assets/backgrounds/default_rustic.jpg +0 -0
  21. data/assets/fonts/aqua/aqua-demo.html +480 -0
  22. data/assets/fonts/aqua/aqua-webfont.woff +0 -0
  23. data/assets/fonts/aqua/aqua-webfont.woff2 +0 -0
  24. data/assets/fonts/aqua/generator_config.txt +5 -0
  25. data/assets/fonts/aqua/specimen_files/grid_12-825-55-15.css +129 -0
  26. data/assets/fonts/aqua/specimen_files/specimen_stylesheet.css +396 -0
  27. data/assets/fonts/aqua/stylesheet.css +12 -0
  28. data/assets/fonts/biko/biko_regular-webfont.woff +0 -0
  29. data/assets/fonts/biko/biko_regular-webfont.woff2 +0 -0
  30. data/assets/fonts/chase/chase-webfont.woff +0 -0
  31. data/assets/fonts/chase/chase-webfont.woff2 +0 -0
  32. data/assets/fonts/simplifica_typeface-webfont.woff +0 -0
  33. data/assets/fonts/simplifica_typeface-webfont.woff2 +0 -0
  34. data/assets/main.scss +91 -0
  35. data/assets/open-graph/default.png +0 -0
  36. data/assets/projects/images/jekylltheme.png +0 -0
  37. data/assets/projects/symbols/code.png +0 -0
  38. data/assets/projects/symbols/design.png +0 -0
  39. data/assets/projects/symbols/published.png +0 -0
  40. data/favicon.ico +0 -0
  41. data/feed.xml +20 -0
  42. metadata +41 -2
  43. data/example/index.md +0 -39
@@ -0,0 +1,61 @@
1
+
2
+ //header styles
3
+ header {
4
+ overflow: auto;
5
+ background-color: white;
6
+
7
+ .wrapper {
8
+ margin: $center;
9
+ padding: $base-spacing / 2 0;
10
+ max-width: $content-width;
11
+
12
+ }
13
+
14
+ h1 {
15
+ float: left;
16
+ }
17
+
18
+ a:active, a:hover {
19
+ border-style: none;
20
+ }
21
+
22
+ aside {
23
+ float: right;
24
+
25
+ li {
26
+ margin: 1.5em 0.2em 0;
27
+ }
28
+
29
+ img {
30
+ height: $big-font-size;
31
+ width: auto;
32
+ }
33
+
34
+ }
35
+ }
36
+
37
+ //footer styles
38
+ footer {
39
+ background-color: white;
40
+ width: 100%;
41
+ overflow: auto;
42
+ height: $base-sizing;
43
+ position:absolute;
44
+ bottom:0;
45
+ left:0;
46
+
47
+ a {
48
+ float: right;
49
+
50
+ img {
51
+ height: $base-sizing - 0.3em;
52
+ width: auto;
53
+ }
54
+ }
55
+
56
+ img {
57
+ height: $base-sizing / 2;
58
+ width: auto;
59
+ float: left;
60
+ }
61
+ }
@@ -0,0 +1,31 @@
1
+ nav {
2
+ ul {
3
+ a, li {
4
+ text-align: center;
5
+ font-family: $navigation;
6
+ }
7
+
8
+ a:focus, a:hover, a:active {
9
+ border-bottom-style: solid;
10
+ }
11
+ }
12
+ }
13
+
14
+ .globalnav {
15
+ margin: $base-spacing 0;
16
+ height: 3em;
17
+
18
+ ul {
19
+ float: right;
20
+
21
+ a {
22
+ text-align: center;
23
+ margin-left: $base-spacing;
24
+ font-size: $big-font-size;
25
+ }
26
+
27
+ a.active {
28
+ border-bottom-style: solid;
29
+ }
30
+ }
31
+ }
@@ -0,0 +1,139 @@
1
+ .projects-content {
2
+ section.many {
3
+ width: $content-width;
4
+ max-width: 75%;
5
+ float: none;
6
+ margin: $center;
7
+ margin-top: $base-sizing;
8
+ clear: both;
9
+
10
+ h2 {
11
+ font-size: $base-font-size * 2.2;
12
+ padding-left: $base-spacing / 2;
13
+ }
14
+
15
+ ul {
16
+
17
+ margin-top: $base-spacing * 2;
18
+ text-align: left;
19
+
20
+ li {
21
+ display: block;
22
+ text-align: justify;
23
+ margin: $base-spacing;
24
+ padding: $base-spacing / 2 0;
25
+ border-bottom-style: ridge;
26
+ border-width: $border-width;
27
+
28
+ h3 {
29
+ margin-bottom: $base-spacing / 2;
30
+ font-size: $base-font-size * 1.4;
31
+ }
32
+
33
+ a {
34
+ display: block;
35
+ font-weight: bold;
36
+ text-align: right;
37
+ padding-top: $base-spacing;
38
+ }
39
+
40
+ p:first-of-type {
41
+ text-align: right;
42
+ font-size: $small-font-size;
43
+ font-style: italic;
44
+ }
45
+
46
+ a:hover, a:active, a:focus {
47
+ border-bottom-style: none;
48
+ text-decoration: underline;
49
+ }
50
+
51
+ }
52
+
53
+ li:last-of-type {
54
+ border-bottom-style: none;
55
+
56
+ }
57
+
58
+ img {
59
+ display: block;
60
+ margin: $center;
61
+ max-width: 15em;
62
+ height: auto;
63
+ padding: $base-spacing;
64
+ }
65
+
66
+ }
67
+
68
+ }
69
+
70
+ section.three {
71
+ @extend section, .many;
72
+
73
+ width: $content-width / 3;
74
+ max-width: 30%;
75
+ float: left;
76
+ clear: none;
77
+
78
+ ul {
79
+ border-right-style: ridge;
80
+ border-width: $border-width;
81
+
82
+ a {
83
+ text-align: right;
84
+ }
85
+ }
86
+
87
+ }
88
+
89
+ section.three:last-of-type {
90
+ ul {
91
+ border-right-style: none;
92
+ }
93
+ }
94
+
95
+ section.two {
96
+ @extend section, .many;
97
+
98
+ width: $content-width / 2;
99
+ max-width: 45%;
100
+ float: left;
101
+ clear: none;
102
+
103
+ ul {
104
+ border-right-style: ridge;
105
+ border-width: $border-width;
106
+
107
+ a {
108
+ text-align: right;
109
+ }
110
+ }
111
+
112
+ }
113
+
114
+ section.two:last-of-type {
115
+ ul {
116
+ border-right-style: none;
117
+ }
118
+ }
119
+
120
+ section.one {
121
+ @extend section, .many;
122
+ }
123
+
124
+ }
125
+
126
+
127
+
128
+ nav.three, nav.many, nav.two {
129
+ width: $content-width;
130
+
131
+ li {
132
+ float: right;
133
+ padding: $base-spacing;
134
+ }
135
+ }
136
+
137
+ nav.three, nav.two, nav.one {
138
+ display: none;
139
+ }
@@ -0,0 +1,21 @@
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ html, body, div, span, h1, h2, p, a, em, img,
6
+ small, strike, strong, b, u, i, center, dl, dt, dd, ol, ul, li,
7
+ article, aside, figcaption, footer, header, hgroup, nav, section {
8
+ margin: 0;
9
+ padding: 0;
10
+ font-size: 100%;
11
+ text-decoration: none;
12
+ color: black;
13
+ }
14
+
15
+ article, aside, footer, header, hgroup, menu, nav, section {
16
+ display: block;
17
+ }
18
+
19
+ ol, ul {
20
+ list-style: none;
21
+ }
@@ -0,0 +1,267 @@
1
+ /*media queries*/
2
+
3
+
4
+ //style
5
+ @include laptop {
6
+ .content-wrapper {
7
+ max-width: 800px;
8
+ }
9
+
10
+ .header {
11
+ .wrapper {
12
+ overflow: auto;
13
+ max-width: 800px;
14
+ padding: $base-spacing;
15
+ }
16
+
17
+ h1 {
18
+ font-size: $big-font-size * 1.5;
19
+ }
20
+ }
21
+
22
+ nav.many {
23
+ max-width: 100%;
24
+ }
25
+
26
+ .blog {
27
+ .localnav {
28
+ width: 20%;
29
+ }
30
+ }
31
+
32
+ .post-wrapper {
33
+ .localnav {
34
+ width: 20%;
35
+ }
36
+ }
37
+ }
38
+
39
+
40
+ @include small-laptop {
41
+
42
+ .globalnav {
43
+
44
+ max-width: $small-laptop-width;
45
+ text-align: center;
46
+
47
+ ul {
48
+ display: block;
49
+ float: none;
50
+
51
+ a {
52
+ margin-left: 0;
53
+ margin-right: $base-spacing;
54
+ }
55
+
56
+ }
57
+ }
58
+
59
+ header {
60
+ .wrapper {
61
+ max-width: $small-laptop-width;
62
+ text-align: center;
63
+ }
64
+
65
+ h1, aside {
66
+ display: block;
67
+ float: none;
68
+ }
69
+ }
70
+
71
+ .projects-content {
72
+
73
+ section.three {
74
+ width: $content-width;
75
+ max-width: 75%;
76
+ float: none;
77
+ margin: $center;
78
+ margin-top: $base-spacing * 2;
79
+ clear: both;
80
+
81
+ ul {
82
+ border-right-style: none;
83
+
84
+ a {
85
+ text-align: left;
86
+ }
87
+
88
+ }
89
+ }
90
+
91
+ section.three:last-of-type {
92
+ border-bottom-style: none;
93
+ }
94
+ }
95
+
96
+ nav.three, nav.many {
97
+ width: $content-width;
98
+ max-width: 75%;
99
+ float: none;
100
+ margin: $center;
101
+ display: block;
102
+ }
103
+
104
+ .blog {
105
+ .localnav {
106
+
107
+ li, a, h3 {
108
+ text-align: left;
109
+ padding-right: $base-spacing;
110
+ }
111
+ }
112
+
113
+ #posts {
114
+ width: 75%;
115
+ }
116
+ }
117
+
118
+ .post-wrapper {
119
+ .localnav {
120
+
121
+ li, a, h3 {
122
+ text-align: left;
123
+ padding-right: $base-spacing;
124
+ }
125
+ }
126
+
127
+ .post {
128
+ width: 75%;
129
+ }
130
+ }
131
+ }
132
+
133
+ @include tablet {
134
+
135
+ .globalnav {
136
+ ul {
137
+ li {
138
+ a {
139
+ font-size: 1.5em;
140
+ }
141
+ }
142
+ }
143
+ }
144
+
145
+ .projects-content {
146
+ section.many, section.three, section.two {
147
+ max-width: 100%;
148
+ }
149
+
150
+ section.two {
151
+ width: $content-width;
152
+ max-width: 75%;
153
+ float: none;
154
+ margin: $center;
155
+ margin-top: $base-spacing * 2;
156
+ clear: both;
157
+
158
+ ul {
159
+ border-right-style: none;
160
+
161
+ a {
162
+ text-align: left;
163
+ }
164
+
165
+ }
166
+ }
167
+
168
+ section.three:last-of-type {
169
+ border-bottom-style: none;
170
+ }
171
+ }
172
+
173
+ .blog {
174
+ .localnav {
175
+ display: none;
176
+ width: 0;
177
+ }
178
+
179
+ #posts {
180
+ width: 100%;
181
+ }
182
+ }
183
+
184
+ .post-wrapper {
185
+ .localnav {
186
+ display: none;
187
+ width: 0;
188
+ }
189
+
190
+ .post {
191
+ width: 100%;
192
+ padding: 2em;
193
+
194
+ h2 {
195
+ font-size: $base-font-size * 1.6;
196
+ }
197
+
198
+ div {
199
+ h3, h4, h5 {
200
+ margin-left: 0;
201
+ font-size: $base-font-size;
202
+ }
203
+
204
+ p {
205
+ padding-left: 0;
206
+ }
207
+ }
208
+ }
209
+ }
210
+
211
+ nav.two {
212
+ width: $content-width;
213
+ max-width: 75%;
214
+ float: none;
215
+ margin: $center;
216
+ display: block;
217
+ }
218
+
219
+ nav.many {
220
+ ul {
221
+ li {
222
+ display: block;
223
+ float: none;
224
+ margin: $base-spacing * 0.5;
225
+ padding: 0;
226
+ }
227
+ }
228
+
229
+ }
230
+ }
231
+
232
+ @include phone {
233
+
234
+ .globalnav {
235
+ ul {
236
+ li {
237
+ a {
238
+ font-size: 1em;
239
+ }
240
+ }
241
+ }
242
+ }
243
+
244
+ header {
245
+ font-size: 1em;
246
+
247
+ aside {
248
+
249
+ img {
250
+ height: 1.5em;
251
+ width: auto;
252
+ }
253
+ }
254
+ }
255
+
256
+ nav.many, nav.three, nav.two {
257
+ ul {
258
+ li {
259
+ display: block;
260
+ float: none;
261
+ margin: $base-spacing * 0.5;
262
+ padding: 0;
263
+ }
264
+ }
265
+
266
+ }
267
+ }