zaunkoenig 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 687ad77273969e285193c8abe527c6e6712e475c648872ac23e0c551b03709e5
4
- data.tar.gz: 229455f70de5c0167da30cf780b627fbc76d40af04db61905d8e245e8d9198da
3
+ metadata.gz: ece5972d446c35b9dd3323db50be18360b7f18fe742566ad87ca96a402527679
4
+ data.tar.gz: 077eb40ba39705742208ed9c83ccd66abd2a9bfbc193901a55a0f8a53a3f6f09
5
5
  SHA512:
6
- metadata.gz: ff3c13dc84e4865a44bbcb80a6831618228b10658165436ccab0afd69ac0d794bcbd1a9982b238472262dc6a910d41078aacf2366b1ca2bd1eb5319fb3bd1952
7
- data.tar.gz: 97209995056bdd4ac787298e48234e8788419d98a49b40d5888d52d1a9c6718483c59e64f9a8d616867f217439bd7af9e09b28f588006536544f02e9967d7462
6
+ metadata.gz: fff4892caeebe6282356a69d6691808fad5c1e5d4085c1138b55e0457b6c5c3d355c25df8727f239addd09320bd2fd232a6f85d6e22a4a17c1a355382478477d
7
+ data.tar.gz: 292a756089456bddb8b6844bb1b2a57c583609908eabc9dbb018338210c0f3569c58b5d0d4d2aa90a6b4a0d7b6d1435273b210f9746b0bc264ba67b60ee301d2
File without changes
@@ -0,0 +1 @@
1
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
@@ -0,0 +1,7 @@
1
+ @import "zaunkoenig/normalize";
2
+ @import "zaunkoenig/skeleton";
3
+
4
+ @import "zaunkoenig/base";
5
+ @import "zaunkoenig/header";
6
+ @import "zaunkoenig/image";
7
+ @import "zaunkoenig/customn_styles";
@@ -0,0 +1,192 @@
1
+ $color_primary: #F50202;
2
+ $color_primary_hover: #F50202;
3
+ $color_font: #444444;
4
+ $color_font_dark: #222222;
5
+ $color_font_inverse: #cccccc;
6
+ $color_font_inverse_light: #ffffff;
7
+ $color_background: #ffffff;
8
+ $color_background_inverse: #000000;
9
+ $color_border: #efefef;
10
+ $font_text: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
11
+ $font_decoration: "Century Gothic", CenturyGothic, Futura, sans-serif;
12
+
13
+
14
+ @mixin hyphens(){
15
+ word-wrap: break-word;
16
+ overflow-wrap: break-word;
17
+ -webkit-hyphens: auto;
18
+ -moz-hyphens: auto;
19
+ hyphens: auto;
20
+ }
21
+
22
+ @mixin body-font(){
23
+
24
+ font-size: 1.4rem;
25
+ @media (min-width: 400px) {
26
+ font-size: 1.5rem;
27
+ }
28
+ /* Larger than phablet (also point when grid becomes active) */
29
+ @media (min-width: 550px) {
30
+ font-size: 1.6rem;
31
+ }
32
+ /* Larger than tablet */
33
+ @media (min-width: 750px) {
34
+ font-size: 1.7rem;
35
+ }
36
+ }
37
+
38
+ body {
39
+ font-family: $font_text;
40
+ font-size: 1.5em;
41
+ @include body-font();
42
+ color: $color_font;
43
+ font-weight:400;
44
+ color: $color_font;
45
+ }
46
+ h1, h2, h3 {
47
+ font-family: $font_decoration;
48
+ @include hyphens();
49
+ }
50
+
51
+ .header {
52
+ color: $color_font_inverse_light;
53
+ background-color: $color_background_inverse;
54
+ }
55
+
56
+ #content {
57
+ margin-bottom: 5em;
58
+ }
59
+
60
+ .container {
61
+ max-width: 960px;
62
+
63
+ &.start {
64
+ margin-top: 2em;
65
+ }
66
+
67
+ img, picture {
68
+ max-width: 100%;
69
+ }
70
+ }
71
+ svg.logo-icon {
72
+ fill:$color_primary;
73
+ }
74
+
75
+ a {
76
+ color: $color_primary;
77
+ text-decoration: none;
78
+
79
+ &:hover {
80
+ color: $color_primary_hover;
81
+ text-decoration: underline;
82
+ }
83
+ }
84
+
85
+ hr {
86
+ clear: both;
87
+ }
88
+
89
+ img {
90
+ height: auto;
91
+ }
92
+
93
+ h1 {
94
+ font-size: 2.5em;
95
+ font-weight: 800;
96
+ line-height: 1.1em;
97
+ letter-spacing: -0.05em;
98
+ color: $color_font_dark;
99
+ /* Larger than mobile */
100
+ @media (min-width: 400px) {
101
+ font-size: 3em;
102
+ }
103
+ /* Larger than phablet (also point when grid becomes active) */
104
+ @media (min-width: 550px) {
105
+ font-size: 4em;
106
+ }
107
+ /* Larger than tablet */
108
+ @media (min-width: 750px) {
109
+ font-size: 5em;
110
+ }
111
+ }
112
+
113
+ table, pre {
114
+ display: block;
115
+ overflow-x: auto;
116
+ }
117
+
118
+ h2 {
119
+ font-size: 2.25em;
120
+ font-weight: 600;
121
+ padding:1.2em 0 0.3em;
122
+ }
123
+ h3 {
124
+ font-size: 1.5em;
125
+ font-weight: 600;
126
+ }
127
+
128
+ p {
129
+ font-size: 1.1em;
130
+ line-height: 1.8em;
131
+ }
132
+
133
+ blockquote {
134
+ background: #f9f9f9;
135
+ border-left: 10px solid #ccc;
136
+ margin: 1.5em 10px;
137
+ padding: 0.5em 10px;
138
+ quotes: "\201C""\201D""\2018""\2019";
139
+ }
140
+ blockquote:before {
141
+ color: #ccc;
142
+ content: open-quote;
143
+ font-size: 4em;
144
+ line-height: 0.1em;
145
+ vertical-align: -0.4em;
146
+ }
147
+ blockquote p {
148
+ display: inline;
149
+ }
150
+
151
+ button, .button {
152
+ text-transform: uppercase;
153
+ border:2px solid $color_primary;
154
+ color:$color_primary;
155
+ font-family: $font_decoration;
156
+ font-weight:normal;
157
+ @include body-font();
158
+ padding: 8px 22px;
159
+ letter-spacing: 0.02rem;
160
+ height:auto;
161
+ border-radius: 50px;
162
+ white-space: normal;
163
+ }
164
+ button:hover, .button:hover {
165
+ text-decoration: none;
166
+ color:#fff;
167
+ background-color: $color_primary;
168
+ border-color: $color_primary;
169
+ }
170
+
171
+ .footer {
172
+ text-align: center;
173
+ border-top: 5px solid $color_primary;
174
+ padding: 1em 0 3em;
175
+ }
176
+
177
+ .footer-logo {
178
+ display: inline-block;
179
+ font-size: 1.8em;
180
+ color: $color_font;
181
+ }
182
+
183
+ .footer-nav, .footer-logo, .footer-copyright {
184
+ margin-bottom: 1em;
185
+ }
186
+
187
+ .footer-nav {
188
+ a {
189
+ padding-right: 5px;
190
+ text-decoration: none;
191
+ }
192
+ }
File without changes
@@ -0,0 +1,87 @@
1
+ .header-logo {
2
+ display: inline-block;
3
+ padding: 1em 0 0.7em;
4
+ font-size: 1.8em;
5
+ color: $color_font_inverse_light;
6
+ }
7
+
8
+ .header-nav {
9
+ float: right;
10
+
11
+ label, #hamburger { display: none; }
12
+ }
13
+
14
+ .header-navItems {
15
+ display: flex;
16
+ justify-content: flex-end;
17
+
18
+ a {
19
+ box-sizing: border-box;
20
+ margin: 0;
21
+ font-size: 1.5rem;
22
+ padding:0.6rem 1rem;
23
+ font-family: $font_decoration;
24
+ color: $color_font_inverse;
25
+ text-transform: uppercase;
26
+ font-weight:400;
27
+ text-align: center;
28
+ text-decoration: none;
29
+ border-radius: 50px;
30
+ margin: 3.6rem 0.2rem 0;
31
+ &:hover {
32
+ background-color: $color_primary;
33
+ color: $color_font_inverse_light;
34
+ }
35
+ &.active {
36
+ color: $color_font_inverse_light; cursor: default;
37
+ }
38
+ }
39
+ }
40
+
41
+ @media screen and (max-width: 1024px){
42
+ .header-nav {
43
+ width: auto;
44
+ height: 1.4em;
45
+ margin: 15px 0 0 0;
46
+
47
+ label {
48
+ display: inline-block;
49
+ font-style: normal;
50
+ font-size: 2.3em;
51
+ line-height: 1em;
52
+ padding: 10px;
53
+ }
54
+ }
55
+
56
+ .header-navItems {
57
+ display: none;
58
+ position: fixed;
59
+ width: 100%;
60
+ left: 0;
61
+ top: 89px;
62
+ z-index: 1;
63
+
64
+ a {
65
+ display: block;
66
+ box-sizing: border-box;
67
+ background: $color_background_inverse;
68
+ width: 100%;
69
+ padding: 20px 0;
70
+ border-top: 1px solid $color_font_dark;
71
+ color: $color_font_inverse_light;
72
+ font-size: 1.1em;
73
+ font-weight: 400;
74
+ border-radius: 0;
75
+ margin: 0;
76
+ &:hover,
77
+ &:active {
78
+ color: $color_font_inverse_light;
79
+ background-color: $color_primary;
80
+ }
81
+ }
82
+ }
83
+
84
+ .header-nav input:checked ~ .header-navItems {
85
+ display: block;
86
+ }
87
+ }
@@ -0,0 +1,20 @@
1
+ .image-left, .image-right {
2
+ box-sizing: border-box;
3
+ width: 100%;
4
+ }
5
+
6
+ @media (min-width: 750px) {
7
+ .image-left, .image-right {
8
+ width: 50%;
9
+ }
10
+
11
+ .image-right {
12
+ padding: 0 0 1em 1em;
13
+ float: right;
14
+ }
15
+
16
+ .image-left {
17
+ padding: 0 1em 1em 0;
18
+ float: left;
19
+ }
20
+ }
@@ -0,0 +1,427 @@
1
+ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
2
+
3
+ /**
4
+ * 1. Set default font family to sans-serif.
5
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
6
+ * user zoom.
7
+ */
8
+
9
+ html {
10
+ font-family: sans-serif; /* 1 */
11
+ -ms-text-size-adjust: 100%; /* 2 */
12
+ -webkit-text-size-adjust: 100%; /* 2 */
13
+ }
14
+
15
+ /**
16
+ * Remove default margin.
17
+ */
18
+
19
+ body {
20
+ margin: 0;
21
+ }
22
+
23
+ /* HTML5 display definitions
24
+ ========================================================================== */
25
+
26
+ /**
27
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
29
+ * and Firefox.
30
+ * Correct `block` display not defined for `main` in IE 11.
31
+ */
32
+
33
+ article,
34
+ aside,
35
+ details,
36
+ figcaption,
37
+ figure,
38
+ footer,
39
+ header,
40
+ hgroup,
41
+ main,
42
+ menu,
43
+ nav,
44
+ section,
45
+ summary {
46
+ display: block;
47
+ }
48
+
49
+ /**
50
+ * 1. Correct `inline-block` display not defined in IE 8/9.
51
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
+ */
53
+
54
+ audio,
55
+ canvas,
56
+ progress,
57
+ video {
58
+ display: inline-block; /* 1 */
59
+ vertical-align: baseline; /* 2 */
60
+ }
61
+
62
+ /**
63
+ * Prevent modern browsers from displaying `audio` without controls.
64
+ * Remove excess height in iOS 5 devices.
65
+ */
66
+
67
+ audio:not([controls]) {
68
+ display: none;
69
+ height: 0;
70
+ }
71
+
72
+ /**
73
+ * Address `[hidden]` styling not present in IE 8/9/10.
74
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
75
+ */
76
+
77
+ [hidden],
78
+ template {
79
+ display: none;
80
+ }
81
+
82
+ /* Links
83
+ ========================================================================== */
84
+
85
+ /**
86
+ * Remove the gray background color from active links in IE 10.
87
+ */
88
+
89
+ a {
90
+ background-color: transparent;
91
+ }
92
+
93
+ /**
94
+ * Improve readability when focused and also mouse hovered in all browsers.
95
+ */
96
+
97
+ a:active,
98
+ a:hover {
99
+ outline: 0;
100
+ }
101
+
102
+ /* Text-level semantics
103
+ ========================================================================== */
104
+
105
+ /**
106
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
107
+ */
108
+
109
+ abbr[title] {
110
+ border-bottom: 1px dotted;
111
+ }
112
+
113
+ /**
114
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
115
+ */
116
+
117
+ b,
118
+ strong {
119
+ font-weight: bold;
120
+ }
121
+
122
+ /**
123
+ * Address styling not present in Safari and Chrome.
124
+ */
125
+
126
+ dfn {
127
+ font-style: italic;
128
+ }
129
+
130
+ /**
131
+ * Address variable `h1` font-size and margin within `section` and `article`
132
+ * contexts in Firefox 4+, Safari, and Chrome.
133
+ */
134
+
135
+ h1 {
136
+ font-size: 2em;
137
+ margin: 0.67em 0;
138
+ }
139
+
140
+ /**
141
+ * Address styling not present in IE 8/9.
142
+ */
143
+
144
+ mark {
145
+ background: #ff0;
146
+ color: #000;
147
+ }
148
+
149
+ /**
150
+ * Address inconsistent and variable font size in all browsers.
151
+ */
152
+
153
+ small {
154
+ font-size: 80%;
155
+ }
156
+
157
+ /**
158
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
159
+ */
160
+
161
+ sub,
162
+ sup {
163
+ font-size: 75%;
164
+ line-height: 0;
165
+ position: relative;
166
+ vertical-align: baseline;
167
+ }
168
+
169
+ sup {
170
+ top: -0.5em;
171
+ }
172
+
173
+ sub {
174
+ bottom: -0.25em;
175
+ }
176
+
177
+ /* Embedded content
178
+ ========================================================================== */
179
+
180
+ /**
181
+ * Remove border when inside `a` element in IE 8/9/10.
182
+ */
183
+
184
+ img {
185
+ border: 0;
186
+ }
187
+
188
+ /**
189
+ * Correct overflow not hidden in IE 9/10/11.
190
+ */
191
+
192
+ svg:not(:root) {
193
+ overflow: hidden;
194
+ }
195
+
196
+ /* Grouping content
197
+ ========================================================================== */
198
+
199
+ /**
200
+ * Address margin not present in IE 8/9 and Safari.
201
+ */
202
+
203
+ figure {
204
+ margin: 1em 40px;
205
+ }
206
+
207
+ /**
208
+ * Address differences between Firefox and other browsers.
209
+ */
210
+
211
+ hr {
212
+ -moz-box-sizing: content-box;
213
+ box-sizing: content-box;
214
+ height: 0;
215
+ }
216
+
217
+ /**
218
+ * Contain overflow in all browsers.
219
+ */
220
+
221
+ pre {
222
+ overflow: auto;
223
+ }
224
+
225
+ /**
226
+ * Address odd `em`-unit font size rendering in all browsers.
227
+ */
228
+
229
+ code,
230
+ kbd,
231
+ pre,
232
+ samp {
233
+ font-family: monospace, monospace;
234
+ font-size: 1em;
235
+ }
236
+
237
+ /* Forms
238
+ ========================================================================== */
239
+
240
+ /**
241
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
242
+ * styling of `select`, unless a `border` property is set.
243
+ */
244
+
245
+ /**
246
+ * 1. Correct color not being inherited.
247
+ * Known issue: affects color of disabled elements.
248
+ * 2. Correct font properties not being inherited.
249
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
250
+ */
251
+
252
+ button,
253
+ input,
254
+ optgroup,
255
+ select,
256
+ textarea {
257
+ color: inherit; /* 1 */
258
+ font: inherit; /* 2 */
259
+ margin: 0; /* 3 */
260
+ }
261
+
262
+ /**
263
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
264
+ */
265
+
266
+ button {
267
+ overflow: visible;
268
+ }
269
+
270
+ /**
271
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
272
+ * All other form control elements do not inherit `text-transform` values.
273
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274
+ * Correct `select` style inheritance in Firefox.
275
+ */
276
+
277
+ button,
278
+ select {
279
+ text-transform: none;
280
+ }
281
+
282
+ /**
283
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284
+ * and `video` controls.
285
+ * 2. Correct inability to style clickable `input` types in iOS.
286
+ * 3. Improve usability and consistency of cursor style between image-type
287
+ * `input` and others.
288
+ */
289
+
290
+ button,
291
+ html input[type="button"], /* 1 */
292
+ input[type="reset"],
293
+ input[type="submit"] {
294
+ -webkit-appearance: button; /* 2 */
295
+ cursor: pointer; /* 3 */
296
+ }
297
+
298
+ /**
299
+ * Re-set default cursor for disabled elements.
300
+ */
301
+
302
+ button[disabled],
303
+ html input[disabled] {
304
+ cursor: default;
305
+ }
306
+
307
+ /**
308
+ * Remove inner padding and border in Firefox 4+.
309
+ */
310
+
311
+ button::-moz-focus-inner,
312
+ input::-moz-focus-inner {
313
+ border: 0;
314
+ padding: 0;
315
+ }
316
+
317
+ /**
318
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
319
+ * the UA stylesheet.
320
+ */
321
+
322
+ input {
323
+ line-height: normal;
324
+ }
325
+
326
+ /**
327
+ * It's recommended that you don't attempt to style these elements.
328
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
329
+ *
330
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
331
+ * 2. Remove excess padding in IE 8/9/10.
332
+ */
333
+
334
+ input[type="checkbox"],
335
+ input[type="radio"] {
336
+ box-sizing: border-box; /* 1 */
337
+ padding: 0; /* 2 */
338
+ }
339
+
340
+ /**
341
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
342
+ * `font-size` values of the `input`, it causes the cursor style of the
343
+ * decrement button to change from `default` to `text`.
344
+ */
345
+
346
+ input[type="number"]::-webkit-inner-spin-button,
347
+ input[type="number"]::-webkit-outer-spin-button {
348
+ height: auto;
349
+ }
350
+
351
+ /**
352
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
353
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
354
+ * (include `-moz` to future-proof).
355
+ */
356
+
357
+ input[type="search"] {
358
+ -webkit-appearance: textfield; /* 1 */
359
+ -moz-box-sizing: content-box;
360
+ -webkit-box-sizing: content-box; /* 2 */
361
+ box-sizing: content-box;
362
+ }
363
+
364
+ /**
365
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
366
+ * Safari (but not Chrome) clips the cancel button when the search input has
367
+ * padding (and `textfield` appearance).
368
+ */
369
+
370
+ input[type="search"]::-webkit-search-cancel-button,
371
+ input[type="search"]::-webkit-search-decoration {
372
+ -webkit-appearance: none;
373
+ }
374
+
375
+ /**
376
+ * Define consistent border, margin, and padding.
377
+ */
378
+
379
+ fieldset {
380
+ border: 1px solid #c0c0c0;
381
+ margin: 0 2px;
382
+ padding: 0.35em 0.625em 0.75em;
383
+ }
384
+
385
+ /**
386
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
387
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
388
+ */
389
+
390
+ legend {
391
+ border: 0; /* 1 */
392
+ padding: 0; /* 2 */
393
+ }
394
+
395
+ /**
396
+ * Remove default vertical scrollbar in IE 8/9/10/11.
397
+ */
398
+
399
+ textarea {
400
+ overflow: auto;
401
+ }
402
+
403
+ /**
404
+ * Don't inherit the `font-weight` (applied by a rule above).
405
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
406
+ */
407
+
408
+ optgroup {
409
+ font-weight: bold;
410
+ }
411
+
412
+ /* Tables
413
+ ========================================================================== */
414
+
415
+ /**
416
+ * Remove most spacing between table cells.
417
+ */
418
+
419
+ table {
420
+ border-collapse: collapse;
421
+ border-spacing: 0;
422
+ }
423
+
424
+ td,
425
+ th {
426
+ padding: 0;
427
+ }
@@ -0,0 +1,345 @@
1
+ /*
2
+ * Skeleton V2.0.4
3
+ * Copyright 2014, Dave Gamache
4
+ * www.getskeleton.com
5
+ * Free to use under the MIT license.
6
+ * http://www.opensource.org/licenses/mit-license.php
7
+ * 12/29/2014
8
+ */
9
+
10
+
11
+ /* Table of contents
12
+ ––––––––––––––––––––––––––––––––––––––––––––––––––
13
+ - Grid
14
+ - Base Styles
15
+ - Typography
16
+ - Links
17
+ - Buttons
18
+ - Forms
19
+ - Lists
20
+ - Code
21
+ - Tables
22
+ - Spacing
23
+ - Utilities
24
+ - Clearing
25
+ - Media Queries
26
+ */
27
+
28
+
29
+ /* Grid
30
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
31
+ .container {
32
+ position: relative;
33
+ width: 100%;
34
+ max-width: 960px;
35
+ margin: 0 auto;
36
+ padding: 0 20px;
37
+ box-sizing: border-box; }
38
+ .column,
39
+ .columns {
40
+ width: 100%;
41
+ float: left;
42
+ box-sizing: border-box; }
43
+
44
+ /* For devices larger than 400px */
45
+ @media (min-width: 400px) {
46
+ .container {
47
+ width: 85%;
48
+ padding: 0; }
49
+ }
50
+
51
+ /* For devices larger than 550px */
52
+ @media (min-width: 550px) {
53
+ .container {
54
+ width: 80%; }
55
+ .column,
56
+ .columns {
57
+ margin-left: 4%; }
58
+ .column:first-child,
59
+ .columns:first-child {
60
+ margin-left: 0; }
61
+
62
+ .one.column,
63
+ .one.columns { width: 4.66666666667%; }
64
+ .two.columns { width: 13.3333333333%; }
65
+ .three.columns { width: 22%; }
66
+ .four.columns { width: 30.6666666667%; }
67
+ .five.columns { width: 39.3333333333%; }
68
+ .six.columns { width: 48%; }
69
+ .seven.columns { width: 56.6666666667%; }
70
+ .eight.columns { width: 65.3333333333%; }
71
+ .nine.columns { width: 74.0%; }
72
+ .ten.columns { width: 82.6666666667%; }
73
+ .eleven.columns { width: 91.3333333333%; }
74
+ .twelve.columns { width: 100%; margin-left: 0; }
75
+
76
+ .one-third.column { width: 30.6666666667%; }
77
+ .two-thirds.column { width: 65.3333333333%; }
78
+
79
+ .one-half.column { width: 48%; }
80
+ }
81
+
82
+
83
+ /* Base Styles
84
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
85
+ /* NOTE
86
+ html is set to 62.5% so that all the REM measurements throughout Skeleton
87
+ are based on 10px sizing. So basically 1.5rem = 15px :) */
88
+ html {
89
+ font-size: 62.5%; }
90
+ body {
91
+ font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
92
+ line-height: 1.6;
93
+ font-weight: 400;
94
+ font-family: font_text;
95
+ color: #222; }
96
+
97
+
98
+ /* Typography
99
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
100
+ h1, h2, h3, h4, h5, h6 {
101
+ margin-top: 0;
102
+ margin-bottom: 2rem;
103
+ font-weight: 300; }
104
+ h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;}
105
+ h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
106
+ h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; }
107
+ h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
108
+ h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; }
109
+ h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; }
110
+
111
+ /* Larger than phablet */
112
+ @media (min-width: 550px) {
113
+ h1 { font-size: 5.0rem; }
114
+ h2 { font-size: 4.2rem; }
115
+ h3 { font-size: 3.6rem; }
116
+ h4 { font-size: 3.0rem; }
117
+ h5 { font-size: 2.4rem; }
118
+ h6 { font-size: 1.5rem; }
119
+ }
120
+
121
+ p {
122
+ margin-top: 0; }
123
+
124
+
125
+ /* Links
126
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
127
+ a {
128
+ color: #1EAEDB; }
129
+ a:hover {
130
+ color: #0FA0CE; }
131
+
132
+
133
+ /* Buttons
134
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
135
+ .button,
136
+ button,
137
+ input[type="submit"],
138
+ input[type="reset"],
139
+ input[type="button"] {
140
+ display: inline-block;
141
+ height: 38px;
142
+ padding: 0 30px;
143
+ color: #555;
144
+ text-align: center;
145
+ font-size: 11px;
146
+ font-weight: 600;
147
+ line-height: 38px;
148
+ letter-spacing: .1rem;
149
+ text-transform: uppercase;
150
+ text-decoration: none;
151
+ white-space: nowrap;
152
+ background-color: transparent;
153
+ border-radius: 4px;
154
+ border: 1px solid #bbb;
155
+ cursor: pointer;
156
+ box-sizing: border-box; }
157
+ .button:hover,
158
+ button:hover,
159
+ input[type="submit"]:hover,
160
+ input[type="reset"]:hover,
161
+ input[type="button"]:hover,
162
+ .button:focus,
163
+ button:focus,
164
+ input[type="submit"]:focus,
165
+ input[type="reset"]:focus,
166
+ input[type="button"]:focus {
167
+ color: #333;
168
+ border-color: #888;
169
+ outline: 0; }
170
+ .button.button-primary,
171
+ button.button-primary,
172
+ input[type="submit"].button-primary,
173
+ input[type="reset"].button-primary,
174
+ input[type="button"].button-primary {
175
+ color: #FFF;
176
+ background-color: #33C3F0;
177
+ border-color: #33C3F0; }
178
+ .button.button-primary:hover,
179
+ button.button-primary:hover,
180
+ input[type="submit"].button-primary:hover,
181
+ input[type="reset"].button-primary:hover,
182
+ input[type="button"].button-primary:hover,
183
+ .button.button-primary:focus,
184
+ button.button-primary:focus,
185
+ input[type="submit"].button-primary:focus,
186
+ input[type="reset"].button-primary:focus,
187
+ input[type="button"].button-primary:focus {
188
+ color: #FFF;
189
+ background-color: #1EAEDB;
190
+ border-color: #1EAEDB; }
191
+
192
+
193
+ /* Forms
194
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
195
+ input[type="email"],
196
+ input[type="number"],
197
+ input[type="search"],
198
+ input[type="text"],
199
+ input[type="tel"],
200
+ input[type="url"],
201
+ input[type="password"],
202
+ textarea,
203
+ select {
204
+ height: 38px;
205
+ padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
206
+ background-color: #fff;
207
+ border: 1px solid #D1D1D1;
208
+ border-radius: 4px;
209
+ box-shadow: none;
210
+ box-sizing: border-box; }
211
+ /* Removes awkward default styles on some inputs for iOS */
212
+ input[type="email"],
213
+ input[type="number"],
214
+ input[type="search"],
215
+ input[type="text"],
216
+ input[type="tel"],
217
+ input[type="url"],
218
+ input[type="password"],
219
+ textarea {
220
+ -webkit-appearance: none;
221
+ -moz-appearance: none;
222
+ appearance: none; }
223
+ textarea {
224
+ min-height: 65px;
225
+ padding-top: 6px;
226
+ padding-bottom: 6px; }
227
+ input[type="email"]:focus,
228
+ input[type="number"]:focus,
229
+ input[type="search"]:focus,
230
+ input[type="text"]:focus,
231
+ input[type="tel"]:focus,
232
+ input[type="url"]:focus,
233
+ input[type="password"]:focus,
234
+ textarea:focus,
235
+ select:focus {
236
+ border: 1px solid #33C3F0;
237
+ outline: 0; }
238
+ label,
239
+ legend {
240
+ display: block;
241
+ margin-bottom: .5rem;
242
+ font-weight: 600; }
243
+ fieldset {
244
+ padding: 0;
245
+ border-width: 0; }
246
+ input[type="checkbox"],
247
+ input[type="radio"] {
248
+ display: inline; }
249
+ label > .label-body {
250
+ display: inline-block;
251
+ margin-left: .5rem;
252
+ font-weight: normal; }
253
+
254
+
255
+ /* Lists
256
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
257
+ ul {
258
+ list-style: circle inside; }
259
+ ol {
260
+ list-style: decimal inside; }
261
+ ol, ul {
262
+ padding-left: 0;
263
+ margin-top: 0; }
264
+ ul ul,
265
+ ul ol,
266
+ ol ol,
267
+ ol ul {
268
+ margin: 1.5rem 0 1.5rem 3rem;
269
+ }
270
+ li {
271
+ margin-bottom: 1rem; }
272
+
273
+
274
+ /* Code
275
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
276
+ code {
277
+ padding: .2rem .5rem;
278
+ margin: 0 .2rem;
279
+ font-size: 90%;
280
+ white-space: nowrap;
281
+ background: #F1F1F1;
282
+ border: 1px solid #E1E1E1;
283
+ border-radius: 4px; }
284
+ pre > code {
285
+ display: block;
286
+ padding: 1rem 1.5rem;
287
+ white-space: pre; }
288
+
289
+
290
+ /* Tables
291
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
292
+ th,
293
+ td {
294
+ padding: 12px 15px;
295
+ text-align: left;
296
+ border-bottom: 1px solid #E1E1E1; }
297
+ th:first-child,
298
+ td:first-child {
299
+ padding-left: 0; }
300
+ th:last-child,
301
+ td:last-child {
302
+ padding-right: 0; }
303
+
304
+
305
+ /* Spacing
306
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
307
+ button,
308
+ .button {
309
+ margin-bottom: 1rem; }
310
+ input,
311
+ textarea,
312
+ select,
313
+ fieldset {
314
+ margin-bottom: 1.5rem; }
315
+ pre,
316
+ blockquote,
317
+ dl,
318
+ figure,
319
+ table,
320
+ p,
321
+ ul,
322
+ ol,
323
+ form {
324
+ margin-bottom: 2.5rem; }
325
+
326
+
327
+ /* Misc
328
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
329
+ hr {
330
+ margin-top: 3rem;
331
+ margin-bottom: 3.5rem;
332
+ border-width: 0;
333
+ border-top: 1px solid #E1E1E1; }
334
+
335
+
336
+ /* Clearing
337
+ –––––––––––––––––––––––––––––––––––––––––––––––––– */
338
+
339
+ /* Self Clearing Goodness */
340
+ .container:after,
341
+ .row:after,
342
+ .u-cf {
343
+ content: "";
344
+ display: table;
345
+ clear: both; }
@@ -0,0 +1,4 @@
1
+ ---
2
+ # front matter
3
+ ---
4
+ @import "zaunkoenig";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zaunkoenig
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Curth
@@ -35,15 +35,25 @@ files:
35
35
  - README.md
36
36
  - _config.yml
37
37
  - _data/navigation.yml
38
+ - _includes/customn_head.html
38
39
  - _includes/footer.html
39
40
  - _includes/footer_logo.html
40
41
  - _includes/head.html
41
42
  - _includes/header.html
42
43
  - _includes/header_logo.html
44
+ - _includes/styles.html
43
45
  - _layouts/default.html
44
46
  - _layouts/home.html
45
47
  - _layouts/page.html
46
48
  - _layouts/post.html
49
+ - _sass/zaunkoenig.scss
50
+ - _sass/zaunkoenig/base.scss
51
+ - _sass/zaunkoenig/customn_styles.scss
52
+ - _sass/zaunkoenig/header.scss
53
+ - _sass/zaunkoenig/image.scss
54
+ - _sass/zaunkoenig/normalize.scss
55
+ - _sass/zaunkoenig/skeleton.scss
56
+ - assets/css/style.scss
47
57
  homepage: https://zaunkoenig.techgenossen.de
48
58
  licenses:
49
59
  - MIT