zaunkoenig 0.0.1 → 0.0.2

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: f6db6ad77b01e4bf7f6a1844e1f3456a94bed85668aa8a2921d5e5315219ba9b
4
- data.tar.gz: a0b0330cc4b541ed07affc33e2c3faf6c7a458c9184f28d74d32dfbfd0606818
3
+ metadata.gz: 4d9929025a257a1126da255bb7eae9ddc40b7b245456d0374a184ebca29723cf
4
+ data.tar.gz: 432567fd5a1fe58332c24cd8f500da578c5864331ea2be3bcb4fb047c677566f
5
5
  SHA512:
6
- metadata.gz: 3c245162a8014902e2e02e554df93bf3874048ddbf82ec829d921c6314f63b37a50ab38d17b68d1d48406b97115f36cc1d49f1acc7698ff6536486a6a5b8cec5
7
- data.tar.gz: 0c404e1adf3acaf4220b39da091af79f3fa03bea9c878c65e6457873c6010518dcf9709c0197d6c4d0ff4557722306a6a58f69096cc9031e75b68e95afb408b3
6
+ metadata.gz: 4b30a090e22458f2b82d856b7dd137e55a012a274cfc98b903afbbb234c63d0413a06bb0adb058bded25ae571ea0fcbe95083d09f0d8e6cfb7cb372fe0bcc2be
7
+ data.tar.gz: 125b84b88f71e9ba7ec4054ba3327bb577e1afdbe5b43c9de19133a6ea882a3234f013eddcdb2e59603ddbb57bf50f8f2cc3e1e198b0d146409cefec646f0a45
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Robert Curth
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,52 @@
1
+ # zaunkoenig
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "zaunkoenig"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: zaunkoenig
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install zaunkoenig
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `zaunkoenig.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,6 @@
1
+ copyright: Acme Inc
2
+ title: Zaunkönig
3
+
4
+ sass:
5
+ sass_dir: _scss
6
+ style: :compressed
@@ -0,0 +1,12 @@
1
+ <footer class="footer">
2
+ {% include footer_logo.html %}
3
+ <br />
4
+ {%- if site.copyright -%}
5
+ <div class="footer-copyright">&copy; {{ 'now' | date: "%Y" }} {{ site.copyright | escape }}</div>
6
+ {%- endif -%}
7
+ <nav class="footer-nav">
8
+ {% for item in site.data.navigation.footer.items %}
9
+ <a {% if item.url == page.url %} class="active"{% endif %} href="{{ item.url }}">{{ item.title }}</a>
10
+ {% endfor %}
11
+ </nav>
12
+ </footer>
@@ -0,0 +1,3 @@
1
+ {%- if site.title -%}
2
+ <div class="footer-logo">{{ site.title | escape }}</div>
3
+ {%- endif -%}
@@ -0,0 +1,17 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <title>{{ page.title | escape }} - {{ site.title | escape }}</title>
4
+ {% if page.description %}
5
+ <meta name="description" content="{{ page.description | escape }}">
6
+ {% endif %}
7
+
8
+ <meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
9
+ <meta name="theme-color" content="#000000"/>
10
+
11
+ <link rel="icon" href="/assets/favicon-192x192.png" sizes="192x192">
12
+ <link rel="icon" href="/assets/favicon-64x64.png" sizes="64x64">
13
+ <link rel="icon" href="/assets/favicon-32x32.png" sizes="32x32">
14
+ <link rel="alternate" type="application/rss+xml" title="Techgenossen Blog" href="/feed.xml" />
15
+
16
+ {% include inline_styles.html %}
17
+ </head>
@@ -0,0 +1,19 @@
1
+ <header class="header">
2
+ <div class="container">
3
+ <div class="row">
4
+ <a href="/" title="Zurück zur Homepage">
5
+ {% include header_logo.html %}
6
+ </a>
7
+ <nav class="header-nav">
8
+ <label for="hamburger">&#9776;</label>
9
+ <input type="checkbox" class="header-navHamburger" id="hamburger" />
10
+
11
+ <div class="header-navItems">
12
+ {% for item in site.data.navigation.main.items %}
13
+ <a {% if item.url == page.url %} class="active"{% endif %} href="{{ item.url }}">{{ item.title }}</a>
14
+ {% endfor %}
15
+ </div>
16
+ </nav>
17
+ </div>
18
+ </div>
19
+ </header>
@@ -0,0 +1,3 @@
1
+ {%- if site.title -%}
2
+ <div class="header-logo">{{ site.title | escape }}</div>
3
+ {%- endif -%}
@@ -0,0 +1,7 @@
1
+ @import "zaunkoenig/normalize";
2
+ @import "zaunkoenig/skeleton";
3
+
4
+ @import "zaunkoenig/base";
5
+ @import "zaunkoenig/header";
6
+ @import "zaunkoenig/homepageTeaser";
7
+ @import "zaunkoenig/image";
@@ -0,0 +1,3 @@
1
+
2
+ {% capture styles %}{% include inline.scss %}{% endcapture %}
3
+ <style>{{ styles | scssify }}</style>
@@ -0,0 +1,12 @@
1
+ <!doctype html>
2
+ <html lang="de">
3
+ {% include head.html %}
4
+
5
+ <body>
6
+ {% include header.html %}
7
+ <main id="content">
8
+ {{ content }}
9
+ </main>
10
+ {% include footer.html %}
11
+ </body>
12
+ </html>
@@ -0,0 +1,20 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="container start">
5
+ <h1>{{ page.title }}</h1>
6
+
7
+ {{ content }}
8
+
9
+ {%- for post in site.posts -%}
10
+ {%- capture current_year -%}{{ post.date | date: "%Y" }}{%- endcapture -%}
11
+ {%- unless current_year == previous_year -%}
12
+ <h2>{{ current_year }}</h2>
13
+ {%- assign previous_year = current_year -%}
14
+ {%- endunless -%}
15
+ <article>
16
+ <h3><a href="{{ post.url }}">{{ post.title | escape }}</a></h3>
17
+ </article>
18
+ {%- endfor -%}
19
+ </div>
20
+
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="container start">
5
+ <h1>{{ page.title }}</h1>
6
+
7
+ {{ content }}
8
+ </div>
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="container start">
5
+ <h1>{{ page.title }}</h1>
6
+
7
+ {{ content }}
8
+ </div>
@@ -0,0 +1,191 @@
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
+ color: $color_font_dark;
179
+ font-size: 1.5em;
180
+ }
181
+
182
+ .footer-nav, .footer-logo, .footer-copyright {
183
+ margin-bottom: 1em;
184
+ }
185
+
186
+ .footer-nav {
187
+ a {
188
+ padding-right: 5px;
189
+ text-decoration: none;
190
+ }
191
+ }
@@ -0,0 +1,87 @@
1
+ .header-logo {
2
+ display: inline-block;
3
+ padding: 1em 0 0.7em;
4
+ font-size: 1.5em;
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,23 @@
1
+ .homepageTeaser {
2
+ background-color: $color_background_inverse;
3
+ color: $color_font_inverse;
4
+ padding:2em 0;
5
+ margin-bottom: 1em;
6
+
7
+ h1 {
8
+ color: $color_font_inverse_light;
9
+ margin-bottom: 6rem;
10
+ font-size: 2.5em;
11
+ @media (min-width: 400px) {
12
+ font-size: 3.5em;
13
+ }
14
+ /* Larger than phablet (also point when grid becomes active) */
15
+ @media (min-width: 550px) {
16
+ font-size: 4.5em;
17
+ }
18
+ /* Larger than tablet */
19
+ @media (min-width: 750px) {
20
+ font-size: 5.5em;
21
+ }
22
+ }
23
+ }
@@ -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; }
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.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Curth
@@ -30,7 +30,27 @@ email:
30
30
  executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
- files: []
33
+ files:
34
+ - LICENSE.txt
35
+ - README.md
36
+ - _config.yml
37
+ - _includes/footer.html
38
+ - _includes/footer_logo.html
39
+ - _includes/head.html
40
+ - _includes/header.html
41
+ - _includes/header_logo.html
42
+ - _includes/inline.scss
43
+ - _includes/inline_styles.html
44
+ - _layouts/default.html
45
+ - _layouts/home.html
46
+ - _layouts/page.html
47
+ - _layouts/post.html
48
+ - _scss/zaunkoenig/base.scss
49
+ - _scss/zaunkoenig/header.scss
50
+ - _scss/zaunkoenig/homepageTeaser.scss
51
+ - _scss/zaunkoenig/image.scss
52
+ - _scss/zaunkoenig/normalize.scss
53
+ - _scss/zaunkoenig/skeleton.scss
34
54
  homepage: https://zaunkoenig.techgenossen.de
35
55
  licenses:
36
56
  - MIT