air-theme-jekyll 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 899eb0fa7b881549421ae2ceefb0229f7299d51ad0bb036ad14ee3545b5c23d9
4
+ data.tar.gz: b45e84e84da95ac04dc599c3fbfd61c3b861224abcb28d846cfc790feece4b31
5
+ SHA512:
6
+ metadata.gz: 781279d11849e012c8f4de7784dcf27d7e48fd3359376e6cc8c9e33a404b1709df1b90023f21e811512e03d7ae64655f555701c11e750aad0c334d411c7fda13
7
+ data.tar.gz: e61ad312320fd5ab9d6793145fb2d1a25266e3de779fc339ccea4d3f2594b198662c40997c92d287f220ae5cc37a5f20d2a7011fbe04d0420734a2c1702248ee
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Adriano Luz
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,38 @@
1
+ # Air Theme for Jekyll
2
+
3
+ This jekyll theme is a port from air-blog-theme-for-ghost created by @leonidasv.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "air-theme-jekyll"
11
+ ```
12
+
13
+ And add the following configuration to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: air-theme-jekyll
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install air-theme-jekyll
26
+
27
+ ## Contributing
28
+
29
+ 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.
30
+
31
+ ## Development
32
+
33
+ To set up your environment to develop this theme, run `bundle install`.
34
+
35
+ 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.
36
+
37
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
38
+ To add a custom directory to your theme-gem, please edit the regexp in `air-theme-jekyll.gemspec` accordingly.
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html class="no-js">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <title>{{ site.title }}</title>
7
+ <meta name="description" content="{{ site.description }}">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1">
9
+
10
+ <link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700|Noto+Serif:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
11
+ <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
12
+ <link rel="stylesheet" href="/assets/css/styles.css">
13
+ </head>
14
+ <body>
15
+ <img class="plane" src="/assets/img/paper.svg">
16
+
17
+ <div class="lateral">
18
+ <aside class="author">
19
+ <img class="profile-image" src="/assets/img/profile-image.jpg" alt="" />
20
+ <p class="name">by <strong>{{ site.author_name }}</strong></p>
21
+ <p class="about">{{ site.author_bio }}</p>
22
+ <p class="address">{{ site.author_location }}</p>
23
+ <ul class="social">
24
+ <li><a class="icon-github" href="{{ site.github_link }}" target="_blank" title="Github"></a></li>
25
+ <li><a class="icon-linkedin" href="{{ site.linkedin_link }}" target="_blank" title="LinkedIn"></a></li>
26
+ </ul>
27
+ </aside>
28
+ </div>
29
+
30
+ <div class="home">
31
+ <!--[if lt IE 8]>
32
+ <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
33
+ <![endif]-->
34
+
35
+ <header class="site-header">
36
+ <h2><a class="logo ir" href="{{ site.url }}" title="{{ site.title }}">{{ site.title }}</a></h2>
37
+ </header>
38
+
39
+ {{ content }}
40
+
41
+ <footer class="main-footer">
42
+ <div class="container clearfix">
43
+ <p>All content copyright <a href="{{ site.url }}" title="{{ site.author_name }}">{{ site.author_name }}</a> &copy; {{ 'now' | date: "%Y" }}. All rights reserved.</p>
44
+ <p>Theme designed by <a href="http://leonidasv.com" title="Leonidas Villeneuve">Leonidas Villeneuve</a>, based on concept by <a href="http://blog.rriegger.com/" title="Raphael Riegger">Raphael Riegger</a>. Ported to Jekyll by <a href="http://drnluz.com" title="Adriano Luz">Adriano Luz</a></p>
45
+ </div>
46
+ </footer>
47
+
48
+ <script>
49
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
50
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
51
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
52
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
53
+ ga('create', '{{ site.ga_property_id }}', 'auto');
54
+ ga('send', 'pageview');
55
+ </script>
56
+ </div>
57
+ </body>
58
+ </html>
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="container clearfix">
5
+ <main role="main" class="content">
6
+ {%- for post in site.posts -%}
7
+ <article class="post">
8
+ <h1>
9
+ <a href="{{ post.url | relative_url }}" title="{{ post.title | escape }}">{{ post.title | escape }}</a>
10
+ </h1>
11
+ <footer class="post-info">Posted on <span class="post-meta"><time datetime="{{ post.date }}">{{ post.date | date: "%d %B %Y" }}</time></span></footer>
12
+ {{ post.excerpt }}
13
+ <a href="{{ post.url }}" title="{{ post.title }}">Read more &raquo;</a>
14
+ </article>
15
+ {%- endfor -%}
16
+ </main>
17
+ </div>
@@ -0,0 +1,15 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="container clearfix">
5
+ <main role="main" class="content">
6
+ <article class="post">
7
+ <a class="btn" href="{{ site.url }}" title="Back to homepage">&laquo; Back to home</a>
8
+ <h1>
9
+ <a href="{{ page.url | relative_url }}" title="{{ page.title | escape }}">{{ page.title | escape }}</a>
10
+ </h1>
11
+
12
+ {{ content }}
13
+ </article>
14
+ </main>
15
+ </div>
@@ -0,0 +1,70 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+
7
+ .highlighter-rouge & {
8
+ background: #eef;
9
+ }
10
+
11
+ .c { color: #998; font-style: italic } // Comment
12
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
13
+ .k { font-weight: bold } // Keyword
14
+ .o { font-weight: bold } // Operator
15
+ .cm { color: #998; font-style: italic } // Comment.Multiline
16
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
17
+ .c1 { color: #998; font-style: italic } // Comment.Single
18
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
19
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
20
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
21
+ .ge { font-style: italic } // Generic.Emph
22
+ .gr { color: #a00 } // Generic.Error
23
+ .gh { color: #999 } // Generic.Heading
24
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
25
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
26
+ .go { color: #888 } // Generic.Output
27
+ .gp { color: #555 } // Generic.Prompt
28
+ .gs { font-weight: bold } // Generic.Strong
29
+ .gu { color: #aaa } // Generic.Subheading
30
+ .gt { color: #a00 } // Generic.Traceback
31
+ .kc { font-weight: bold } // Keyword.Constant
32
+ .kd { font-weight: bold } // Keyword.Declaration
33
+ .kp { font-weight: bold } // Keyword.Pseudo
34
+ .kr { font-weight: bold } // Keyword.Reserved
35
+ .kt { color: #458; font-weight: bold } // Keyword.Type
36
+ .m { color: #099 } // Literal.Number
37
+ .s { color: #d14 } // Literal.String
38
+ .na { color: #008080 } // Name.Attribute
39
+ .nb { color: #0086B3 } // Name.Builtin
40
+ .nc { color: #458; font-weight: bold } // Name.Class
41
+ .no { color: #008080 } // Name.Constant
42
+ .ni { color: #800080 } // Name.Entity
43
+ .ne { color: #900; font-weight: bold } // Name.Exception
44
+ .nf { color: #900; font-weight: bold } // Name.Function
45
+ .nn { color: #555 } // Name.Namespace
46
+ .nt { color: #000080 } // Name.Tag
47
+ .nv { color: #008080 } // Name.Variable
48
+ .ow { font-weight: bold } // Operator.Word
49
+ .w { color: #bbb } // Text.Whitespace
50
+ .mf { color: #099 } // Literal.Number.Float
51
+ .mh { color: #099 } // Literal.Number.Hex
52
+ .mi { color: #099 } // Literal.Number.Integer
53
+ .mo { color: #099 } // Literal.Number.Oct
54
+ .sb { color: #d14 } // Literal.String.Backtick
55
+ .sc { color: #d14 } // Literal.String.Char
56
+ .sd { color: #d14 } // Literal.String.Doc
57
+ .s2 { color: #d14 } // Literal.String.Double
58
+ .se { color: #d14 } // Literal.String.Escape
59
+ .sh { color: #d14 } // Literal.String.Heredoc
60
+ .si { color: #d14 } // Literal.String.Interpol
61
+ .sx { color: #d14 } // Literal.String.Other
62
+ .sr { color: #009926 } // Literal.String.Regex
63
+ .s1 { color: #d14 } // Literal.String.Single
64
+ .ss { color: #990073 } // Literal.String.Symbol
65
+ .bp { color: #999 } // Name.Builtin.Pseudo
66
+ .vc { color: #008080 } // Name.Variable.Class
67
+ .vg { color: #008080 } // Name.Variable.Global
68
+ .vi { color: #008080 } // Name.Variable.Instance
69
+ .il { color: #099 } // Literal.Number.Integer.Long
70
+ }
@@ -0,0 +1,885 @@
1
+ ---
2
+ # styles.scss
3
+ ---
4
+
5
+ @charset "UTF-8";
6
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
7
+ /**
8
+ * 1. Set default font family to sans-serif.
9
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
10
+ * user zoom.
11
+ */
12
+ html {
13
+ font-family: sans-serif;
14
+ /* 1 */
15
+ -ms-text-size-adjust: 100%;
16
+ /* 2 */
17
+ -webkit-text-size-adjust: 100%;
18
+ /* 2 */ }
19
+
20
+ /**
21
+ * Remove default margin.
22
+ */
23
+ body {
24
+ margin: 0; }
25
+
26
+ /* HTML5 display definitions
27
+ ========================================================================== */
28
+ /**
29
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
30
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
31
+ * Correct `block` display not defined for `main` in IE 11.
32
+ */
33
+ article,
34
+ aside,
35
+ details,
36
+ figcaption,
37
+ figure,
38
+ footer,
39
+ header,
40
+ hgroup,
41
+ main,
42
+ nav,
43
+ section,
44
+ summary {
45
+ display: block; }
46
+
47
+ /**
48
+ * 1. Correct `inline-block` display not defined in IE 8/9.
49
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
50
+ */
51
+ audio,
52
+ canvas,
53
+ progress,
54
+ video {
55
+ display: inline-block;
56
+ /* 1 */
57
+ vertical-align: baseline;
58
+ /* 2 */ }
59
+
60
+ /**
61
+ * Prevent modern browsers from displaying `audio` without controls.
62
+ * Remove excess height in iOS 5 devices.
63
+ */
64
+ audio:not([controls]) {
65
+ display: none;
66
+ height: 0; }
67
+
68
+ /**
69
+ * Address `[hidden]` styling not present in IE 8/9/10.
70
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
71
+ */
72
+ [hidden],
73
+ template {
74
+ display: none; }
75
+
76
+
77
+ /* Links
78
+ ========================================================================== */
79
+ /**
80
+ * Remove the gray background color from active links in IE 10.
81
+ */
82
+ a {
83
+ background: transparent; }
84
+
85
+ /**
86
+ * Improve readability when focused and also mouse hovered in all browsers.
87
+ */
88
+ a:active,
89
+ a:hover {
90
+ outline: 0; }
91
+
92
+ /* Text-level semantics
93
+ ========================================================================== */
94
+ /**
95
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
96
+ */
97
+ abbr[title] {
98
+ border-bottom: 1px dotted; }
99
+
100
+ /**
101
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
102
+ */
103
+ b,
104
+ strong {
105
+ font-weight: bold; }
106
+
107
+ /**
108
+ * Address styling not present in Safari and Chrome.
109
+ */
110
+ dfn {
111
+ font-style: italic; }
112
+
113
+ /**
114
+ * Address variable `h1` font-size and margin within `section` and `article`
115
+ * contexts in Firefox 4+, Safari, and Chrome.
116
+ */
117
+ h1 {
118
+ font-size: 2em;
119
+ margin: 0.67em 0; }
120
+
121
+ /**
122
+ * Address styling not present in IE 8/9.
123
+ */
124
+ mark {
125
+ background: #ff0;
126
+ color: #000; }
127
+
128
+ /**
129
+ * Address inconsistent and variable font size in all browsers.
130
+ */
131
+ small {
132
+ font-size: 80%; }
133
+
134
+ /**
135
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
136
+ */
137
+ sub,
138
+ sup {
139
+ font-size: 75%;
140
+ line-height: 0;
141
+ position: relative;
142
+ vertical-align: baseline; }
143
+
144
+ sup {
145
+ top: -0.5em; }
146
+
147
+ sub {
148
+ bottom: -0.25em; }
149
+
150
+ /* Embedded content
151
+ ========================================================================== */
152
+ /**
153
+ * Remove border when inside `a` element in IE 8/9/10.
154
+ */
155
+ img {
156
+ border: 0; }
157
+
158
+ /**
159
+ * Correct overflow not hidden in IE 9/10/11.
160
+ */
161
+ svg:not(:root) {
162
+ overflow: hidden; }
163
+
164
+ /* Grouping content
165
+ ========================================================================== */
166
+ /**
167
+ * Address margin not present in IE 8/9 and Safari.
168
+ */
169
+ figure {
170
+ margin: 1em 40px; }
171
+
172
+ /**
173
+ * Address differences between Firefox and other browsers.
174
+ */
175
+ hr {
176
+ -moz-box-sizing: content-box;
177
+ box-sizing: content-box;
178
+ height: 0; }
179
+
180
+ /**
181
+ * Contain overflow in all browsers.
182
+ */
183
+ pre {
184
+ overflow: auto; }
185
+
186
+ /**
187
+ * Address odd `em`-unit font size rendering in all browsers.
188
+ */
189
+ code,
190
+ kbd,
191
+ pre,
192
+ samp {
193
+ font-family: monospace, monospace;
194
+ font-size: 1em; }
195
+
196
+ /* Forms
197
+ ========================================================================== */
198
+ /**
199
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
200
+ * styling of `select`, unless a `border` property is set.
201
+ */
202
+ /**
203
+ * 1. Correct color not being inherited.
204
+ * Known issue: affects color of disabled elements.
205
+ * 2. Correct font properties not being inherited.
206
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
207
+ */
208
+ button,
209
+ input,
210
+ optgroup,
211
+ select,
212
+ textarea {
213
+ color: inherit;
214
+ /* 1 */
215
+ font: inherit;
216
+ /* 2 */
217
+ margin: 0;
218
+ /* 3 */ }
219
+
220
+ /**
221
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
222
+ */
223
+ button {
224
+ overflow: visible; }
225
+
226
+ /**
227
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
228
+ * All other form control elements do not inherit `text-transform` values.
229
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
230
+ * Correct `select` style inheritance in Firefox.
231
+ */
232
+ button,
233
+ select {
234
+ text-transform: none; }
235
+
236
+ /**
237
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
238
+ * and `video` controls.
239
+ * 2. Correct inability to style clickable `input` types in iOS.
240
+ * 3. Improve usability and consistency of cursor style between image-type
241
+ * `input` and others.
242
+ */
243
+ button,
244
+ html input[type="button"],
245
+ input[type="reset"],
246
+ input[type="submit"] {
247
+ -webkit-appearance: button;
248
+ /* 2 */
249
+ cursor: pointer;
250
+ /* 3 */ }
251
+
252
+ /**
253
+ * Re-set default cursor for disabled elements.
254
+ */
255
+ button[disabled],
256
+ html input[disabled] {
257
+ cursor: default; }
258
+
259
+ /**
260
+ * Remove inner padding and border in Firefox 4+.
261
+ */
262
+ button::-moz-focus-inner,
263
+ input::-moz-focus-inner {
264
+ border: 0;
265
+ padding: 0; }
266
+
267
+ /**
268
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
269
+ * the UA stylesheet.
270
+ */
271
+ input {
272
+ line-height: normal; }
273
+
274
+ /**
275
+ * It's recommended that you don't attempt to style these elements.
276
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
277
+ *
278
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
279
+ * 2. Remove excess padding in IE 8/9/10.
280
+ */
281
+ input[type="checkbox"],
282
+ input[type="radio"] {
283
+ box-sizing: border-box;
284
+ /* 1 */
285
+ padding: 0;
286
+ /* 2 */ }
287
+
288
+ /**
289
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
290
+ * `font-size` values of the `input`, it causes the cursor style of the
291
+ * decrement button to change from `default` to `text`.
292
+ */
293
+ input[type="number"]::-webkit-inner-spin-button,
294
+ input[type="number"]::-webkit-outer-spin-button {
295
+ height: auto; }
296
+
297
+ /**
298
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
299
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
300
+ * (include `-moz` to future-proof).
301
+ */
302
+ input[type="search"] {
303
+ -webkit-appearance: textfield;
304
+ /* 1 */
305
+ -moz-box-sizing: content-box;
306
+ -webkit-box-sizing: content-box;
307
+ /* 2 */
308
+ box-sizing: content-box; }
309
+
310
+ /**
311
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
312
+ * Safari (but not Chrome) clips the cancel button when the search input has
313
+ * padding (and `textfield` appearance).
314
+ */
315
+ input[type="search"]::-webkit-search-cancel-button,
316
+ input[type="search"]::-webkit-search-decoration {
317
+ -webkit-appearance: none; }
318
+
319
+ /**
320
+ * Define consistent border, margin, and padding.
321
+ */
322
+ fieldset {
323
+ border: 1px solid #c0c0c0;
324
+ margin: 0 2px;
325
+ padding: 0.35em 0.625em 0.75em; }
326
+
327
+ /**
328
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
329
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
330
+ */
331
+ legend {
332
+ border: 0;
333
+ /* 1 */
334
+ padding: 0;
335
+ /* 2 */ }
336
+
337
+ /**
338
+ * Remove default vertical scrollbar in IE 8/9/10/11.
339
+ */
340
+ textarea {
341
+ overflow: auto; }
342
+
343
+ /**
344
+ * Don't inherit the `font-weight` (applied by a rule above).
345
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
346
+ */
347
+ optgroup {
348
+ font-weight: bold; }
349
+
350
+ /* Tables
351
+ ========================================================================== */
352
+ /**
353
+ * Remove most spacing between table cells.
354
+ */
355
+ table {
356
+ border-collapse: collapse;
357
+ border-spacing: 0; }
358
+
359
+ td,
360
+ th {
361
+ padding: 0; }
362
+
363
+ @font-face {
364
+ font-family: 'fontello';
365
+ src: url("../font/fontello.eot?40607460");
366
+ src: url("../font/fontello.eot?40607460#iefix") format("embedded-opentype"), url("../font/fontello.woff?40607460") format("woff"), url("../font/fontello.ttf?40607460") format("truetype"), url("../font/fontello.svg?40607460#fontello") format("svg");
367
+ font-weight: normal;
368
+ font-style: normal; }
369
+ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
370
+ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
371
+ /*
372
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
373
+ @font-face {
374
+ font-family: 'fontello';
375
+ src: url('../font/fontello.svg?55664638#fontello') format('svg');
376
+ }
377
+ }
378
+ */
379
+ [class^="icon-"]:before, [class*=" icon-"]:before {
380
+ font-family: "fontello";
381
+ font-style: normal;
382
+ font-weight: normal;
383
+ speak: none;
384
+ display: inline-block;
385
+ text-decoration: inherit;
386
+ width: 1em;
387
+ margin-right: .2em;
388
+ text-align: center;
389
+ /* opacity: .8; */
390
+ /* For safety - reset parent styles, that can break glyph codes*/
391
+ font-variant: normal;
392
+ text-transform: none;
393
+ /* fix buttons height, for twitter bootstrap */
394
+ line-height: 1em;
395
+ /* Animation center compensation - margins should be symmetric */
396
+ /* remove if not needed */
397
+ margin-left: .2em;
398
+ /* you can be more comfortable with increased icons size */
399
+ /* font-size: 120%; */
400
+ /* Uncomment for 3D effect */
401
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }
402
+
403
+ .icon-twitter:before {
404
+ content: '\e800'; }
405
+
406
+ /* '' */
407
+ .icon-rss:before {
408
+ content: '\e801'; }
409
+
410
+ /* '' */
411
+ .icon-menu:before {
412
+ content: '\e802'; }
413
+
414
+ /* '' */
415
+ .icon-facebook-squared:before {
416
+ content: '\e803'; }
417
+
418
+ /* '' */
419
+ .icon-gplus:before {
420
+ content: '\e804'; }
421
+
422
+ /* '' */
423
+ .icon-linkedin:before {
424
+ content: '\e805'; }
425
+
426
+ /* '' */
427
+ .icon-behance:before {
428
+ content: '\e806'; }
429
+
430
+ /* '' */
431
+ .icon-cancel:before {
432
+ content: '\e807'; }
433
+
434
+ /* '' */
435
+ .icon-dribbble:before {
436
+ content: '\e808'; }
437
+
438
+ /* '' */
439
+ .icon-instagram:before {
440
+ content: '\e809'; }
441
+
442
+ /* '' */
443
+ .icon-github:before {
444
+ content: '\e80a'; }
445
+
446
+ /* '' */
447
+ /* -----------------------------------------------------------------------------
448
+ -----------------------------------------------------------------------------
449
+
450
+ Theme: Minimalist Theme
451
+ Version: 1.0
452
+ Author: Raphael Riegger (http://rriegger.com)
453
+ License: Apache License Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
454
+
455
+ -----------------------------------------------------------------------------
456
+ -----------------------------------------------------------------------------*/
457
+ body {
458
+ color: #222222;
459
+ font-family: "Open Sans", sans-serif;
460
+ font-weight: 300;
461
+ transition: all 0.3s ease; }
462
+
463
+ h1, h2, h3, h4, h5, h6 {
464
+ font-family: "Roboto", sans-serif;
465
+ font-weight: bold; }
466
+
467
+ a {
468
+ text-decoration: none;
469
+ color: #cccccc;
470
+ transition: all 0.3s ease; }
471
+ a:hover {
472
+ color: #222222; }
473
+
474
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
475
+ color: #222222; }
476
+ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
477
+ color: #a2a2a2; }
478
+
479
+ hr {
480
+ border: 0;
481
+ border-top: 1px #E4E4E4 solid;
482
+ margin: 40px 0; }
483
+
484
+ .post ul li {
485
+ line-height: 28px;
486
+ font-size: 15px; }
487
+
488
+ .container {
489
+ margin: 0 auto;
490
+ /* width: 1200px;
491
+ padding: 50px 0 0 0; } */
492
+ }
493
+
494
+ .author {
495
+ text-align: center;
496
+ /* width: 25%;
497
+ float: left;
498
+ margin: 20px 5% 0px 5%; }*/
499
+ margin-top: 50%;
500
+ }
501
+
502
+ .content {
503
+ width: 50%;
504
+ margin-right: 25%;
505
+ margin-top: 5%;
506
+ float: right; }
507
+
508
+ .site-header {
509
+ display: none;
510
+ /* background: #2a373d url(../img/header-bg.jpg) no-repeat center center;
511
+ -webkit-background-size: cover;
512
+ -moz-background-size: cover;
513
+ -o-background-size: cover;
514
+ background-size: cover;
515
+ color: #fff;
516
+ text-align: center;
517
+ position: relative;
518
+ height: 400px;
519
+ transition: all 0.3s ease; }*/
520
+ }
521
+
522
+ .site-header h2 {
523
+ margin: 0; }
524
+
525
+ .site-header h2 .logo {
526
+ margin: 0;
527
+ background: url(../img/logo.png) no-repeat 0 0;
528
+ width: 179px;
529
+ height: 148px;
530
+ display: block;
531
+ position: absolute;
532
+ top: 50%;
533
+ left: 50%;
534
+ margin: -74px 0 0 -89px; }
535
+ @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
536
+ .site-header h2 .logo {
537
+ background-image: url("../img/logo@2x.png");
538
+ background-size: 179px 148px; } }
539
+
540
+ .profile-image {
541
+ -webkit-border-radius: 100%;
542
+ -moz-border-radius: 100%;
543
+ border-radius: 100%;
544
+ width: 118px;
545
+ height: 118px;
546
+ }
547
+
548
+ .post h2 {
549
+ margin-top: 0; }
550
+
551
+ .post p {
552
+ line-height: 28px; }
553
+
554
+ .post h2 a,
555
+ .post-template h1 {
556
+ font-size: 40px;
557
+ margin-bottom: 10px; }
558
+
559
+ .post-template h2,
560
+ .post-template h3,
561
+ .post-template h4,
562
+ .post-template h5,
563
+ .post-template h6 {
564
+ font-family: "Roboto", sans-serif;
565
+ font-weight: 700; }
566
+
567
+ .post {
568
+ margin-bottom: 60px;
569
+ padding-bottom: 60px;
570
+ border-bottom: 1px solid #ececec; }
571
+
572
+ .post img {
573
+ max-width: 100%;
574
+ height: auto; }
575
+
576
+ .post-info {
577
+ color: #a2a2a2;
578
+ font-family: "Roboto", sans-serif;
579
+ font-weight: 300;
580
+ font-size: 18px;
581
+ margin-bottom: 40px;
582
+ line-height: 30px; }
583
+
584
+ .share-buttons {
585
+ list-style: none;
586
+ padding: 0; }
587
+
588
+ .share-buttons li {
589
+ display: inline;
590
+ font-family: "Roboto", sans-serif;
591
+ font-weight: 300;
592
+ font-size: 13px;
593
+ color: #979797;
594
+ margin-right: 4px; }
595
+
596
+ .share-buttons li a {
597
+ font-size: 15px; }
598
+
599
+ .comments {
600
+ margin-bottom: 60px; }
601
+
602
+ .tags {
603
+ list-style: none;
604
+ padding: 0;
605
+ margin: 0;
606
+ display: inline-block; }
607
+
608
+ .tag-title {
609
+ font-family: "Roboto", sans-serif;
610
+ font-weight: 300;
611
+ border-bottom: 1px solid #ececec;
612
+ margin-bottom: 40px; }
613
+
614
+ .tag-title h1 {
615
+ font-size: 28px;
616
+ margin-top: 0;
617
+ margin-bottom: 40px; }
618
+
619
+ .tag-title p {
620
+ color: #979797;
621
+ font-size: 14px;
622
+ margin-bottom: 0; }
623
+
624
+ .pagination {
625
+ position: relative;
626
+ height: 35px;
627
+ width: 100%;
628
+ margin-bottom: 60px; }
629
+
630
+ .btn {
631
+ border: solid 1px #ececec;
632
+ background-color: #FFF;
633
+ width: 100px;
634
+ height: 35px;
635
+ display: block;
636
+ -webkit-border-radius: 3px;
637
+ -moz-border-radius: 3px;
638
+ border-radius: 3px;
639
+ text-align: center;
640
+ font-family: "Roboto", sans-serif;
641
+ font-weight: 300;
642
+ line-height: 35px;
643
+ font-size: 13px;
644
+ color: #000; }
645
+ .btn:hover {
646
+ background-color: #2a373d;
647
+ border-color: #2a373d;
648
+ color: #FFF; }
649
+
650
+ .post .btn {
651
+ width: 140px; }
652
+
653
+ .btn.btn-download {
654
+ background-color: #2a373d;
655
+ border-color: #2a373d;
656
+ color: #FFF;
657
+ width: 200px; }
658
+ .btn.btn-download:hover {
659
+ background-color: #49606a;
660
+ border-color: #2a373d;
661
+ color: #FFF; }
662
+
663
+ .newer {
664
+ position: absolute;
665
+ left: 0;
666
+ top: 0; }
667
+
668
+ .older {
669
+ position: absolute;
670
+ right: 0;
671
+ top: 0; }
672
+
673
+ .counter {
674
+ text-align: center;
675
+ line-height: 35px;
676
+ font-size: 13px;
677
+ font-family: "Roboto", sans-serif;
678
+ font-weight: 300;
679
+ color: #979797; }
680
+
681
+ .author {
682
+ font-family: "Roboto", sans-serif;
683
+ font-weight: 300; }
684
+
685
+ .author p {
686
+ margin: 0;
687
+ padding: 0;
688
+ font-size: 12px; }
689
+
690
+ .author p.name {
691
+ font-size: 22px;
692
+ margin: 10px 0;
693
+ color: white; }
694
+
695
+ .author p.address {
696
+ color: white; }
697
+
698
+ .author p.about {
699
+ font-family: 'Open Sans', sans-serif;
700
+ width: 55%;
701
+ font-size: 16px;
702
+ margin: 10px auto;
703
+ color: #dddddd; }
704
+
705
+ .author p.link {
706
+ margin-bottom: 10px;
707
+ color: white;
708
+ margin-top:10px;
709
+ font-size:22px;
710
+ font-family: Roboto;
711
+ font-weight: 300;}
712
+
713
+ .author ul.social {
714
+ list-style: none;
715
+ display: inline;
716
+ padding: 0; }
717
+
718
+ .author ul.social li {
719
+ display: inline; }
720
+
721
+ .author ul.social li a {
722
+ padding: 5px;
723
+ font-size: 20px; }
724
+
725
+ .main-footer {
726
+ background-color: #f3f3f3;
727
+ text-align: center;
728
+ font-family: "Roboto", sans-serif;
729
+ font-weight: 300;
730
+ color: #a2a2a2; }
731
+
732
+ .main-footer .container {
733
+ padding: 30px 0; }
734
+
735
+ .main-footer a {
736
+ color: #a2a2a2; }
737
+ .main-footer a:hover {
738
+ color: #222222; }
739
+
740
+ .main-footer p {
741
+ font-size: 11px; }
742
+
743
+ body.post-template > .site-header {
744
+ height: 250px;
745
+ transition: all 0.3s ease; }
746
+
747
+ body.post-template .site-header h2 .logo {
748
+ background: url(../img/logo.png) no-repeat 0 0;
749
+ width: 90px;
750
+ height: 74px;
751
+ margin: -45px 0 0 -37px;
752
+ background-size: 90px 74px; }
753
+
754
+
755
+ .plane {
756
+ width:400px;
757
+ position: fixed;
758
+ margin-top: 70px;
759
+ z-index: 1;
760
+
761
+ }
762
+ @media only screen and (min-width: 1200px) and (max-width: 1799px) {
763
+ .container {
764
+ width: 100%; }
765
+
766
+ .plane {
767
+ width:300px;
768
+ margin-top: 30px;} }
769
+
770
+ @media only screen and (min-width: 800px) and (max-width: 1199px) {
771
+ .container {
772
+ width: 100%; }
773
+
774
+ .plane {
775
+ width:250px;
776
+ margin-top: 20px;}
777
+ .content {
778
+ width:80%;
779
+ margin-right: 15%;
780
+ margin-top: 5%;}
781
+ }
782
+
783
+ @media only screen and (min-width: 720px) and (max-width: 799px) {
784
+ .container {
785
+ width: 100%; }
786
+
787
+ .plane {
788
+ width:200px;
789
+ margin-top: 20px;}
790
+
791
+ .content {
792
+ width:80%;
793
+ margin-right: 15%;
794
+ margin-top: 5%;} }
795
+
796
+ @media only screen and (max-width: 719px) {
797
+ .container {
798
+ width: 90%;
799
+ padding-top: 25px; }
800
+ .author, .content {
801
+ width: 100%;
802
+ margin: 0; }
803
+
804
+ .author {
805
+ padding-top: 60px; }
806
+ .site-header,
807
+ body.post-template > .site-header {
808
+ height: 180px;
809
+ transition: all 0.3s ease; }
810
+
811
+ .site-header h2 .logo {
812
+ background: url(../img/logo.png) no-repeat 0 0;
813
+ width: 90px;
814
+ height: 74px;
815
+ margin: -45px 0 0 -37px;
816
+ background-size: 90px 74px; }
817
+ .lateral {
818
+ position: inherit !important;
819
+ width: 100% !important;
820
+ height: 450px !important; }
821
+ .home {
822
+ width:100% !important;}
823
+ .post h2 a {
824
+ font-size: 30px !important;}
825
+ .post-info {
826
+ font-size:15px !important;}
827
+ .plane {
828
+ width:200px;
829
+ margin-top: 10px;
830
+ position:absolute;} }
831
+
832
+ .ir {
833
+ background-color: transparent;
834
+ border: 0;
835
+ overflow: hidden;
836
+ *text-indent: -9999px; }
837
+
838
+ .ir:before {
839
+ content: "";
840
+ display: block;
841
+ width: 0;
842
+ height: 150%; }
843
+
844
+ .clearfix:before,
845
+ .clearfix:after {
846
+ content: " ";
847
+ /* 1 */
848
+ display: table;
849
+ /* 2 */ }
850
+
851
+ .clearfix:after {
852
+ clear: both; }
853
+
854
+ .lateral {
855
+ /* background-color: #072035; */
856
+ height: 100%;
857
+ position: fixed;
858
+ width: 30%;
859
+ /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0e3d66+0,072035+100 */
860
+ background: #0e3d66; /* Old browsers */
861
+ background: -moz-linear-gradient(top, #0e3d66 0%, #072035 100%); /* FF3.6-15 */
862
+ background: -webkit-linear-gradient(top, #0e3d66 0%,#072035 100%); /* Chrome10-25,Safari5.1-6 */
863
+ background: linear-gradient(to bottom, #0e3d66 0%,#072035 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
864
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e3d66', endColorstr='#072035',GradientType=0 ); /* IE6-9 */
865
+
866
+ }
867
+
868
+ .home {
869
+ width: 70%;
870
+ float: right;
871
+ }
872
+
873
+ ul > li > a {
874
+ color: #c3c3c3;
875
+ }
876
+
877
+ ul > li > a:hover {
878
+ color: white;
879
+ }
880
+
881
+ .link > a:hover {
882
+ color: white;
883
+ }
884
+
885
+ @import "syntax-highlighting";
Binary file
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Copyright (C) 2014 by original authors @ fontello.com</metadata>
5
+ <defs>
6
+ <font id="fontello" horiz-adv-x="1000" >
7
+ <font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
8
+ <missing-glyph horiz-adv-x="1000" />
9
+ <glyph glyph-name="twitter" unicode="&#xe800;" d="m920 636q-36-54-94-98l0-24q0-130-60-250t-186-203-290-83q-160 0-290 84 14-2 46-2 132 0 234 80-62 2-110 38t-66 94q10-4 34-4 26 0 50 6-66 14-108 66t-42 120l0 2q36-20 84-24-84 58-84 158 0 48 26 94 154-188 390-196-6 18-6 42 0 78 55 133t135 55q82 0 136-58 60 12 120 44-20-66-82-104 56 8 108 30z" horiz-adv-x="920" />
10
+ <glyph glyph-name="rss" unicode="&#xe801;" d="m0 730q314 0 537-223t223-537l-118 0q0 266-188 453t-454 187l0 120z m0-238q218 0 371-153t153-369l-118 0q0 166-119 285t-287 119l0 118z m114-296q46 0 80-33t34-81q0-46-34-79t-80-33-80 33-34 79q0 48 34 81t80 33z" horiz-adv-x="760" />
11
+ <glyph glyph-name="menu" unicode="&#xe802;" d="m650 400q22 0 36-15t14-35-15-35-35-15l-600 0q-20 0-35 15t-15 35 14 35 36 15l600 0z m-600 100q-20 0-35 15t-15 35 14 35 36 15l600 0q22 0 36-15t14-35-15-35-35-15l-600 0z m600-300q22 0 36-15t14-35-15-35-35-15l-600 0q-20 0-35 15t-15 35 14 35 36 15l600 0z" horiz-adv-x="700" />
12
+ <glyph glyph-name="facebook-squared" unicode="&#xe803;" d="m752 770q44 0 76-31t32-75l0-646q0-44-32-76t-76-32l-162 0 0 310 114 0 0 134-114 0 0 70q0 30 28 30l86 0 0 152-96 0q-74 0-124-54t-50-132l0-66-104 0 0-134 104 0 0-310-326 0q-44 0-76 32t-32 76l0 646q0 44 32 75t76 31l644 0z" horiz-adv-x="860" />
13
+ <glyph glyph-name="gplus" unicode="&#xe804;" d="m48 572q0 58 25 102t56 65 69 34 56 15 26 2l230 0 0-4q0-22-78-36-28 0-38-6 40-20 54-56t14-96q0-102-68-158-38-38-38-54 0-18 50-64 104-90 104-178 0-140-116-194-68-34-150-34l-4 0-4 2q-2-2-4-2-24 0-54 5t-75 21-74 57-29 103q0 60 32 101t83 57 88 22 71 6l2 0q-16 22-24 47t-8 39l2 14-14 0q-64 0-110 30-74 44-74 160z m370-452q-4 52-43 84t-103 32l-16 0q-64-2-114-46-46-42-42-94t53-80 119-24q68 4 109 40t37 88z m-60 500q-30 108-122 108-12 0-20-2-40-12-58-62-16-50-2-106 14-52 47-85t71-33q12 0 18 2 42 12 63 65t3 113z m388-174l150 0 0-94-150 0 0-150-94 0 0 150-150 0 0 94 150 0 0 150 94 0 0-150z" horiz-adv-x="896" />
14
+ <glyph glyph-name="linkedin" unicode="&#xe805;" d="m204 698q0-40-29-68t-75-28q-44 0-72 28t-28 68q0 42 28 69t74 27 73-27 29-69z m-198-790l0 618 192 0 0-618-192 0z m306 420q0 86-4 198l166 0 10-86 4 0q60 100 190 100 100 0 161-67t61-199l0-366-192 0 0 342q0 134-98 134-70 0-98-72-6-12-6-48l0-356-194 0 0 420z" horiz-adv-x="900" />
15
+ <glyph glyph-name="behance" unicode="&#xe806;" d="m404 386q56 0 85-40t31-80l0-40q0-56-20-96t-50-58-59-27-49-11l-342 0 0 646 322 0q78 0 127-44t49-128q0-50-23-81t-47-37z m-262 180l0-144 170 0q26 0 40 15t14 61q0 30-11 47t-23 19l-10 2-180 0z m172-416q74 0 74 84 0 40-16 62t-32 24l-18 2-180 0 0-172 172 0z m468 366q70 0 118-29t67-70 27-82 6-69l-2-30-320 0q0-54 27-82t55-28l26-2q46 0 71 17t27 33l2 18 108 0q0-82-53-124t-105-44l-54-2q-72 0-122 25t-72 62-33 73-11 60l0 26q0 10 1 27t14 60 36 75 72 59 115 27z m98-194q0 4-1 11t-6 24-13 30-28 24-46 11q-42 0-70-25t-34-51l-6-24 204 0z m26 320l0-78-256 0 0 78 256 0z" horiz-adv-x="1000" />
16
+ <glyph glyph-name="cancel" unicode="&#xe807;" d="m452 194q18-18 18-43t-18-43q-18-16-43-16t-43 16l-132 152-132-152q-18-16-43-16t-43 16q-16 18-16 43t16 43l138 156-138 158q-16 18-16 43t16 43q18 16 43 16t43-16l132-152 132 152q18 16 43 16t43-16q18-18 18-43t-18-43l-138-158z" horiz-adv-x="470" />
17
+ <glyph glyph-name="dribbble" unicode="&#xe808;" d="m438 480q-30 54-66 109t-56 84-24 33q-82-40-139-112t-77-162q182 0 362 48z m50-132q8 4 14 4-10 28-32 68-182-56-402-56l0-14q0-150 100-262 4 8 13 21t39 50 64 69 89 66 115 54z m-270-306q-2 0-4 2l-4 4z m148 690z m354-86q-114 98-260 98-48 0-92-12 82-108 146-228 138 52 204 140z m-260-756q-190 0-325 135t-135 325 135 325 325 135 325-135 135-325-135-325-325-135z m68 396q-216-74-308-242l-2-2q110-84 242-84 78 0 154 32-24 140-84 298z m16 158q12-24 26-56 2-2 5-9t5-11q66 8 129 4t101-10 42-8q0 138-88 246l-8-10q-8-10-26-27t-42-36-62-42-82-41z m60-138q52-148 76-280 140 92 168 262-8 4-39 11t-88 12-117-5z" horiz-adv-x="920" />
18
+ <glyph glyph-name="instagram" unicode="&#xe809;" d="m690 350q0 26-6 50l176 0 0-344q0-56-39-96t-95-40l-592 0q-56 0-95 40t-39 96l0 344 174 0q-4-32-4-50 0-106 76-183t184-77q106 0 183 77t77 183z m36 430q56 0 95-39t39-95l0-146-218 0q-78 110-212 110-138 0-212-110l-218 0 0 146q0 56 39 95t95 39l592 0z m64-166l0 72q0 24-24 24l-72 0q-24 0-24-24l0-72q0-8 7-16t17-8l72 0q24 0 24 24z m-200-264q0-66-47-113t-113-47-113 47-47 113q0 68 47 114t113 46 113-46 47-114z" horiz-adv-x="860" />
19
+ <glyph glyph-name="github" unicode="&#xe80a;" d="m620 286q26 0 45-26t19-64-19-64-45-26q-28 0-47 26t-19 64 19 64 47 26z m226 234q74-80 74-194 0-74-17-133t-43-96-64-65-70-41-73-20-62-8-45-1q-6 0-36-1t-50-1-50 1-36 1q-24 0-45 1t-62 8-73 20-70 41-64 65-43 96-17 133q0 114 74 194-8 4-1 80t33 140q92-10 228-104 46 12 126 12 84 0 126-12 62 42 119 68t83 30l26 6q26-64 33-140t-1-80z m-384-514q166 0 251 40t85 164q0 72-54 120-28 26-65 32t-113 0-104-6l-4 0q-32 0-83 4t-80 5-63-7-56-28q-52-46-52-120 0-124 84-164t250-40l4 0z m-160 280q26 0 45-26t19-64-19-64-45-26q-28 0-47 26t-19 64 19 64 47 26z" horiz-adv-x="920" />
20
+ </font>
21
+ </defs>
22
+ </svg>
Binary file
Binary file
@@ -0,0 +1,95 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="393.11316mm"
13
+ height="129.37854mm"
14
+ viewBox="0 0 1392.9206 458.4279"
15
+ id="svg2"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="paper.svg">
19
+ <defs
20
+ id="defs4" />
21
+ <sodipodi:namedview
22
+ id="base"
23
+ pagecolor="#ffffff"
24
+ bordercolor="#666666"
25
+ borderopacity="1.0"
26
+ inkscape:pageopacity="0.0"
27
+ inkscape:pageshadow="2"
28
+ inkscape:zoom="0.7"
29
+ inkscape:cx="929.5451"
30
+ inkscape:cy="113.0715"
31
+ inkscape:document-units="px"
32
+ inkscape:current-layer="g4164"
33
+ showgrid="false"
34
+ fit-margin-top="0"
35
+ fit-margin-left="0"
36
+ fit-margin-right="0"
37
+ fit-margin-bottom="0"
38
+ inkscape:window-width="1920"
39
+ inkscape:window-height="1029"
40
+ inkscape:window-x="0"
41
+ inkscape:window-y="25"
42
+ inkscape:window-maximized="1" />
43
+ <metadata
44
+ id="metadata7">
45
+ <rdf:RDF>
46
+ <cc:Work
47
+ rdf:about="">
48
+ <dc:format>image/svg+xml</dc:format>
49
+ <dc:type
50
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
51
+ <dc:title></dc:title>
52
+ </cc:Work>
53
+ </rdf:RDF>
54
+ </metadata>
55
+ <g
56
+ inkscape:label="Camada 1"
57
+ inkscape:groupmode="layer"
58
+ id="layer1"
59
+ transform="translate(1595.6981,-34.04474)">
60
+ <g
61
+ id="g4164"
62
+ transform="translate(-491.42857,-340)">
63
+ <path
64
+ sodipodi:nodetypes="csssssc"
65
+ inkscape:connector-curvature="0"
66
+ id="path3362"
67
+ d="m 146.13812,560.37393 c 0,0 -13.94239,24.05704 -20.49616,33.66387 -66.948659,98.13644 -239.72745,183.54612 -344.28275,183.54612 -111.59657,0 -217.92003,-42.49661 -319.16615,-93.11967 -118.85696,-59.42848 -233.21867,-233.16071 -70.16101,-289.49536 81.29667,-28.08713 143.07724,36.81904 133.97393,100.03484 -53.99779,374.97505 -429.98049,412.76666 -628.90668,226.02906"
68
+ style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:24, 8;stroke-dashoffset:0;stroke-opacity:0.35828876" />
69
+ <path
70
+ style="fill:#b1b2b2;fill-opacity:1;stroke-width:4"
71
+ d="m 165.14317,522.06113 -18.71225,34.17011 33.66536,-26.69601 z"
72
+ id="path3354"
73
+ inkscape:connector-curvature="0"
74
+ sodipodi:nodetypes="cccc" />
75
+ <path
76
+ sodipodi:nodetypes="ccccc"
77
+ inkscape:connector-curvature="0"
78
+ id="path3352"
79
+ d="m 287.76218,374.8435 -145.6049,132.83721 4.31854,48.53259 19.33475,-34.71379 z"
80
+ style="fill:#cccccc;fill-opacity:1;stroke-width:4" />
81
+ <path
82
+ sodipodi:nodetypes="cccc"
83
+ inkscape:connector-curvature="0"
84
+ id="rect3347"
85
+ d="M 288.65109,374.04476 142.17899,508.1425 87.378197,477.08031 Z"
86
+ style="fill:#e6e6e3;fill-opacity:1;stroke-width:4" />
87
+ <path
88
+ style="fill:#e5e5e5;fill-opacity:1;stroke-width:4"
89
+ d="M 288.14598,374.04474 164.65484,522.53714 223.2437,554.6095 Z"
90
+ id="path3350"
91
+ inkscape:connector-curvature="0"
92
+ sodipodi:nodetypes="cccc" />
93
+ </g>
94
+ </g>
95
+ </svg>
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: air-theme-jekyll
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Adriano Luz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-01-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - adriano@dcoded.co
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _layouts/default.html
65
+ - _layouts/home.html
66
+ - _layouts/post.html
67
+ - _sass/_syntax-highlighting.scss
68
+ - assets/css/styles.scss
69
+ - assets/font/fontello.eot
70
+ - assets/font/fontello.svg
71
+ - assets/font/fontello.ttf
72
+ - assets/font/fontello.woff
73
+ - assets/img/paper.svg
74
+ - assets/img/profile-image.jpg
75
+ homepage: http://dcoded.co
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.7.8
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Ghost Air Theme For Jekyll
99
+ test_files: []