pixyll_ashawley 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +22 -0
- data/README.md +252 -0
- data/_includes/ajaxify_content_form.html +30 -0
- data/_includes/footer.html +14 -0
- data/_includes/head.html +105 -0
- data/_includes/header.html +14 -0
- data/_includes/navigation.html +13 -0
- data/_includes/pagination.html +23 -0
- data/_includes/post_footer.html +10 -0
- data/_includes/share_buttons.html +41 -0
- data/_includes/social_links.html +59 -0
- data/_layouts/center.html +21 -0
- data/_layouts/default.html +32 -0
- data/_layouts/home.html +28 -0
- data/_layouts/page.html +11 -0
- data/_layouts/post.html +71 -0
- data/_sass/_animations.scss +60 -0
- data/_sass/_base.scss +34 -0
- data/_sass/_basscss.scss +25 -0
- data/_sass/_blockquotes.scss +16 -0
- data/_sass/_clearfix.scss +8 -0
- data/_sass/_code.scss +70 -0
- data/_sass/_footer.scss +29 -0
- data/_sass/_forms.scss +106 -0
- data/_sass/_gists.scss +12 -0
- data/_sass/_header.scss +50 -0
- data/_sass/_links.scss +53 -0
- data/_sass/_measure.scss +4 -0
- data/_sass/_media-queries.scss +64 -0
- data/_sass/_pagination.scss +52 -0
- data/_sass/_positions.scss +7 -0
- data/_sass/_posts.scss +48 -0
- data/_sass/_social-icons.scss +25 -0
- data/_sass/_tables.scss +45 -0
- data/_sass/_typography.scss +24 -0
- data/_sass/_variables.scss +121 -0
- data/_sass/basscss/_base-buttons.scss +28 -0
- data/_sass/basscss/_base-forms.scss +57 -0
- data/_sass/basscss/_base-reset.scss +20 -0
- data/_sass/basscss/_base-typography.scss +101 -0
- data/_sass/basscss/_buttons-blue.scss +27 -0
- data/_sass/basscss/_color-base.scss +28 -0
- data/_sass/basscss/_colors.scss +97 -0
- data/_sass/basscss/_syntax-highlighting.scss +119 -0
- data/_sass/basscss/_utility-headings.scss +37 -0
- data/_sass/basscss/_utility-typography.scss +38 -0
- data/_sass/basscss/_utility-white-space.scss +182 -0
- data/assets/css/main.scss +35 -0
- metadata +149 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{% assign default_paths = site.pages | map: "path" %}
|
|
2
|
+
{% assign page_paths = site.header_pages | default: default_paths %}
|
|
3
|
+
|
|
4
|
+
{% for path in page_paths %}
|
|
5
|
+
|
|
6
|
+
{% assign page = site.pages | where: "path", path | first %}
|
|
7
|
+
|
|
8
|
+
{% if page.title %}
|
|
9
|
+
<a href="{{ page.url }}">{{ page.title }}</a>
|
|
10
|
+
{% endif %}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
{% endfor %}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{% if paginator.total_pages != 1 %}
|
|
2
|
+
<div class="pagination clearfix mb1 mt4">
|
|
3
|
+
<div class="left">
|
|
4
|
+
{% if paginator.previous_page %}
|
|
5
|
+
{% if paginator.page == 2 %}
|
|
6
|
+
<a class="pagination-item" href="{{ site.baseurl }}/">{{ site.text.pagination.newer }}</a>
|
|
7
|
+
{% else %}
|
|
8
|
+
<a class="pagination-item" href="{{ paginator.previous_page_path }}">{{ site.text.pagination.newer }}</a>
|
|
9
|
+
{% endif %}
|
|
10
|
+
{% else %}
|
|
11
|
+
<span class="pagination-item disabled">{{ site.text.pagination.newer }}</span>
|
|
12
|
+
{% endif %}
|
|
13
|
+
</div>
|
|
14
|
+
<div class="right">
|
|
15
|
+
{% if paginator.next_page %}
|
|
16
|
+
<a class="pagination-item" href="{{ paginator.next_page_path }}">{{ site.text.pagination.older }}</a>
|
|
17
|
+
{% else %}
|
|
18
|
+
<span class="pagination-item disabled">{{ site.text.pagination.older }}</span>
|
|
19
|
+
{% endif %}
|
|
20
|
+
</div>
|
|
21
|
+
<div class="pagination-meta">Page {{ paginator.page }} of {{ paginator.total_pages }}</div>
|
|
22
|
+
</div>
|
|
23
|
+
{% endif %}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<div class="py2 post-footer">
|
|
2
|
+
<img src="{{ site.baseurl }}/images/me.jpeg" alt="John Otander" class="avatar" />
|
|
3
|
+
<p>
|
|
4
|
+
Pixyll is an open-source Jekyll theme that's built by <a href="http://johnotander.com">John Otander</a>.
|
|
5
|
+
When he's not writing code and building things, he likes to ski. A. Lot.
|
|
6
|
+
</p>
|
|
7
|
+
<p>
|
|
8
|
+
Follow him on <a href="https://twitter.com/4lpine">Twitter</a>.
|
|
9
|
+
</p>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<div class="share-page">
|
|
2
|
+
{{ site.text.share_buttons.text }}
|
|
3
|
+
|
|
4
|
+
<div class="share-links">
|
|
5
|
+
{% if site.share_facebook %}
|
|
6
|
+
<a class="fa fa-facebook" href="https://facebook.com/sharer.php?u={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.facebook }}"></a>
|
|
7
|
+
{% endif %}
|
|
8
|
+
|
|
9
|
+
{% if site.share_twitter %}
|
|
10
|
+
<a class="fa fa-twitter" href="https://twitter.com/intent/tweet?text={{ page.title | cgi_escape }}&url={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.twitter }}"></a>
|
|
11
|
+
{% endif %}
|
|
12
|
+
|
|
13
|
+
{% if site.share_googleplus %}
|
|
14
|
+
<a class="fa fa-google-plus" href="https://plus.google.com/share?url={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.googleplus }}"></a>
|
|
15
|
+
{% endif %}
|
|
16
|
+
|
|
17
|
+
{% if site.share_linkedin %}
|
|
18
|
+
<a class="fa fa-linkedin" href="http://www.linkedin.com/shareArticle?url={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}&title={{ page.title | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.linkedin }}"></a>
|
|
19
|
+
{% endif %}
|
|
20
|
+
|
|
21
|
+
{% if site.share_digg %}
|
|
22
|
+
<a class="fa fa-digg" href="http://digg.com/submit?url={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}&title={{ page.title | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.digg }}"></a>
|
|
23
|
+
{% endif %}
|
|
24
|
+
|
|
25
|
+
{% if site.share_tumblr %}
|
|
26
|
+
<a class="fa fa-tumblr" href="http://www.tumblr.com/share/link?url={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}&name={{ page.title | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.tumblr }}"></a>
|
|
27
|
+
{% endif %}
|
|
28
|
+
|
|
29
|
+
{% if site.share_reddit %}
|
|
30
|
+
<a class="fa fa-reddit" href="http://reddit.com/submit?url={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}&title={{ page.title | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.reddit }}"></a>
|
|
31
|
+
{% endif %}
|
|
32
|
+
|
|
33
|
+
{% if site.share_stumbleupon %}
|
|
34
|
+
<a class="fa fa-stumbleupon" href="http://www.stumbleupon.com/submit?url={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}&title={{ page.title | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.stumbleupon }}"></a>
|
|
35
|
+
{% endif %}
|
|
36
|
+
|
|
37
|
+
{% if site.share_hackernews %}
|
|
38
|
+
<a class="fa fa-hacker-news" onclick="parent.postMessage('submit','*')" href="https://news.ycombinator.com/submitlink?u={{ site.url | cgi_escape }}{{ page.url | cgi_escape }}&t={{ page.title | cgi_escape }}" rel="nofollow" target="_blank" title="{{ site.text.share_buttons.hackernews }}"></a>
|
|
39
|
+
{% endif %}
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<div class="social-icons">
|
|
2
|
+
<div class="social-icons-right">
|
|
3
|
+
{% if site.github_username %}
|
|
4
|
+
<a class="fa fa-github" href="https://github.com/{{ site.github_username }}"></a>
|
|
5
|
+
{% endif %}
|
|
6
|
+
{% if site.reddit_username %}
|
|
7
|
+
<a class="fa fa-reddit" href="https://reddit.com/user/{{ site.reddit_username }}"></a>
|
|
8
|
+
{% endif %}
|
|
9
|
+
{% if site.bitbucket_username %}
|
|
10
|
+
<a class="fa fa-bitbucket" href="https://bitbucket.org/{{ site.bitbucket_username }}"></a>
|
|
11
|
+
{% endif %}
|
|
12
|
+
{% if site.stackoverflow_id %}
|
|
13
|
+
<a class="fa fa-stack-overflow" href="https://stackoverflow.com/users/{{ site.stackoverflow_id }}"></a>
|
|
14
|
+
{% endif %}
|
|
15
|
+
<a class="fa fa-rss" href="{{ "/feed.xml" | prepend: site.baseurl }}"></a>
|
|
16
|
+
{% if site.twitter_username %}
|
|
17
|
+
<a class="fa fa-twitter" href="https://twitter.com/{{ site.twitter_username }}"></a>
|
|
18
|
+
{% endif %}
|
|
19
|
+
{% if site.skype_username %}
|
|
20
|
+
<a class="fa fa-skype" href="skype:{{ site.skype_username }}?userinfo"></a>
|
|
21
|
+
{% endif %}
|
|
22
|
+
{% if site.steam_nickname %}
|
|
23
|
+
<a class="fa fa-steam-square" href="http://steamcommunity.com/id/{{ site.steam_nickname }}"></a>
|
|
24
|
+
{% endif %}
|
|
25
|
+
{% if site.google_plus_id %}
|
|
26
|
+
<a class="fa fa-google-plus" href="https://plus.google.com/{{ site.google_plus_id }}/posts"></a>
|
|
27
|
+
{% endif %}
|
|
28
|
+
{% if site.email %}
|
|
29
|
+
<a class="fa fa-envelope" href="mailto:{{ site.email }}"></a>
|
|
30
|
+
{% endif %}
|
|
31
|
+
{% if site.linkedin_username %}
|
|
32
|
+
<a class="fa fa-linkedin" href="https://www.linkedin.com/in/{{ site.linkedin_username }}"></a>
|
|
33
|
+
{% endif %}
|
|
34
|
+
{% if site.angellist_username %}
|
|
35
|
+
<a class="fa fa-angellist" href="https://angel.co/{{ site.angellist_username }}"></a>
|
|
36
|
+
{% endif %}
|
|
37
|
+
{% if site.medium_id %}
|
|
38
|
+
<a class="fa fa-medium" href="https://medium.com/@{{ site.medium_id }}"></a>
|
|
39
|
+
{% endif %}
|
|
40
|
+
{% if site.telegram_username %}
|
|
41
|
+
<a class="fa fa-telegram" href="https://t.me/{{ site.telegram_username }}"></a>
|
|
42
|
+
{% endif %}
|
|
43
|
+
{% if site.vk_id %}
|
|
44
|
+
<a class="fa fa-vk" href="https://vk.com/{{ site.vk_id }}"></a>
|
|
45
|
+
{% endif %}
|
|
46
|
+
</div>
|
|
47
|
+
<div class="right">
|
|
48
|
+
{% if site.bitcoin_url %}
|
|
49
|
+
<a class="fa fa-bitcoin" href="{{ site.bitcoin_url }}"></a>
|
|
50
|
+
{% endif %}
|
|
51
|
+
{% if site.paypal_url %}
|
|
52
|
+
<a class="fa fa-paypal" href="{{ site.paypal_url }}"></a>
|
|
53
|
+
{% endif %}
|
|
54
|
+
{% if site.flattr_button %}
|
|
55
|
+
{{ site.flattr_button }}
|
|
56
|
+
{% endif %}
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
<div class="clearfix"></div>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
{% include head.html %}
|
|
4
|
+
<body class="site{% if site.animated %} animated fade-in-down{% endif %}">
|
|
5
|
+
{% if site.google_tag_manager %}
|
|
6
|
+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{ site.google_tag_manager }}"
|
|
7
|
+
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
8
|
+
{% endif %}
|
|
9
|
+
<div class="site-wrap center">
|
|
10
|
+
{% include header.html %}
|
|
11
|
+
|
|
12
|
+
<div class="post p2 p-responsive wrap" role="main">
|
|
13
|
+
<div class="measure">
|
|
14
|
+
{{ content }}
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
{% include footer.html %}
|
|
20
|
+
</body>
|
|
21
|
+
</html>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
{% include head.html %}
|
|
4
|
+
<body class="site{% if site.animated %} animated fade-in-down{% endif %}">
|
|
5
|
+
{% if site.google_tag_manager %}
|
|
6
|
+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{ site.google_tag_manager }}"
|
|
7
|
+
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
|
8
|
+
{% endif %}
|
|
9
|
+
{% if site.facebook_comments %}
|
|
10
|
+
<div id="fb-root"></div>
|
|
11
|
+
<script>(function(d, s, id) {
|
|
12
|
+
var js, fjs = d.getElementsByTagName(s)[0];
|
|
13
|
+
if (d.getElementById(id)) return;
|
|
14
|
+
js = d.createElement(s); js.id = id;
|
|
15
|
+
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId={{ site.facebook_appid }}";
|
|
16
|
+
fjs.parentNode.insertBefore(js, fjs);
|
|
17
|
+
}(document, 'script', 'facebook-jssdk'));</script>
|
|
18
|
+
{% endif %}
|
|
19
|
+
|
|
20
|
+
<div class="site-wrap">
|
|
21
|
+
{% include header.html %}
|
|
22
|
+
|
|
23
|
+
<div class="post p2 p-responsive wrap" role="main">
|
|
24
|
+
<div class="measure">
|
|
25
|
+
{{ content }}
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
{% include footer.html %}
|
|
31
|
+
</body>
|
|
32
|
+
</html>
|
data/_layouts/home.html
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
{% assign posts_count = (paginator.posts | size) %}
|
|
5
|
+
|
|
6
|
+
<div class="home">
|
|
7
|
+
{% if posts_count > 0 %}
|
|
8
|
+
<div class="posts">
|
|
9
|
+
{% for post in paginator.posts %}
|
|
10
|
+
<div class="post py3">
|
|
11
|
+
<p class="post-meta">{{ post.date | date: site.date_format }}</p>
|
|
12
|
+
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link"><h3 class="h1 post-title">{{ post.title }}</h3></a>
|
|
13
|
+
<span class="post-summary">
|
|
14
|
+
{% if post.summary %}
|
|
15
|
+
{{ post.summary }}
|
|
16
|
+
{% else %}
|
|
17
|
+
{{ post.excerpt }}
|
|
18
|
+
{% endif %}
|
|
19
|
+
</span>
|
|
20
|
+
</div>
|
|
21
|
+
{% endfor %}
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
{% include pagination.html %}
|
|
25
|
+
{% else %}
|
|
26
|
+
<h1 class='center'>{{ site.text.index.coming_soon }}</h1>
|
|
27
|
+
{% endif %}
|
|
28
|
+
</div>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{% assign minutes = content | strip_html | number_of_words | divided_by: 180 %}
|
|
6
|
+
{% if minutes == 0 %}
|
|
7
|
+
{% assign minutes = 1 %}
|
|
8
|
+
{% endif %}
|
|
9
|
+
|
|
10
|
+
<div class="post-header mb2">
|
|
11
|
+
<h1>{{ page.title }}</h1>
|
|
12
|
+
<span class="post-meta">{{ page.date | date: site.date_format }}</span><br>
|
|
13
|
+
{% if page.update_date %}
|
|
14
|
+
<span class="post-meta">{{ site.text.post.updated }}: {{ page.update_date | date: site.date_format }}</span><br>
|
|
15
|
+
{% endif %}
|
|
16
|
+
<span class="post-meta small">
|
|
17
|
+
{% if page.minutes %}
|
|
18
|
+
{{ page.minutes }} {{ site.text.post.minute_read }}
|
|
19
|
+
{% else %}
|
|
20
|
+
{{ minutes }} {{ site.text.post.minute_read }}
|
|
21
|
+
{% endif %}
|
|
22
|
+
</span>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<article class="post-content">
|
|
26
|
+
{{ content }}
|
|
27
|
+
</article>
|
|
28
|
+
|
|
29
|
+
{% if site.show_sharing_icons %}
|
|
30
|
+
{% include share_buttons.html %}
|
|
31
|
+
{% endif %}
|
|
32
|
+
|
|
33
|
+
{% if site.show_post_footers %}
|
|
34
|
+
{% include post_footer.html %}
|
|
35
|
+
{% endif %}
|
|
36
|
+
|
|
37
|
+
{% if txtpen.txtpen_sitename %}
|
|
38
|
+
<script src="https://txtpen.com/embed.js?site={{txtpen.txtpen_sitename}}" />
|
|
39
|
+
{% endif %}
|
|
40
|
+
|
|
41
|
+
{% if site.disqus_shortname %}
|
|
42
|
+
<div id="disqus_thread"></div>
|
|
43
|
+
<script type="text/javascript">
|
|
44
|
+
var disqus_shortname = '{{ site.disqus_shortname }}';
|
|
45
|
+
var disqus_identifier = '{{ page.id }}';
|
|
46
|
+
var disqus_title = {{ page.title | jsonify }};
|
|
47
|
+
|
|
48
|
+
(function() {
|
|
49
|
+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
|
50
|
+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
|
51
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
|
52
|
+
})();
|
|
53
|
+
</script>
|
|
54
|
+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
55
|
+
{% endif %}
|
|
56
|
+
|
|
57
|
+
{% if site.facebook_comments %}
|
|
58
|
+
<div class="fb-comments" data-href="{{ site.url }}{{ page.url }}" data-width="100%" data-numposts="{{ site.facebook_comments_number }}"></div>
|
|
59
|
+
{% endif %}
|
|
60
|
+
|
|
61
|
+
{% if site.show_related_posts %}
|
|
62
|
+
<h3 class="related-post-title">{{ site.text.post.related_posts }}</h3>
|
|
63
|
+
{% for post in site.related_posts %}
|
|
64
|
+
<div class="post ml2">
|
|
65
|
+
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link">
|
|
66
|
+
<h4 class="post-title">{{ post.title }}</h4>
|
|
67
|
+
<p class="post-summary">{{ post.summary }}</p>
|
|
68
|
+
</a>
|
|
69
|
+
</div>
|
|
70
|
+
{% endfor %}
|
|
71
|
+
{% endif %}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
Animate.css - http://daneden.me/animate
|
|
3
|
+
Licensed under the MIT license - http://opensource.org/licenses/MIT
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2014 Daniel Eden
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
.animated {
|
|
9
|
+
-webkit-animation-duration: 1s;
|
|
10
|
+
animation-duration: 1s;
|
|
11
|
+
-webkit-animation-fill-mode: both;
|
|
12
|
+
animation-fill-mode: both;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.animated.infinite {
|
|
16
|
+
-webkit-animation-iteration-count: infinite;
|
|
17
|
+
animation-iteration-count: infinite;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.animated.hinge {
|
|
21
|
+
-webkit-animation-duration: 2s;
|
|
22
|
+
animation-duration: 2s;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@-webkit-keyframes fadeInDown {
|
|
26
|
+
0% {
|
|
27
|
+
opacity: 0;
|
|
28
|
+
-webkit-transform: translateY(-20px);
|
|
29
|
+
transform: translateY(-20px);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
100% {
|
|
33
|
+
opacity: 1;
|
|
34
|
+
-webkit-transform: translateY(0);
|
|
35
|
+
transform: translateY(0);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@keyframes fadeInDown {
|
|
40
|
+
0% {
|
|
41
|
+
opacity: 0;
|
|
42
|
+
|
|
43
|
+
-webkit-transform: translateY(-20px) translate3d(0, 0, 0);
|
|
44
|
+
-ms-transform: translateY(-20px) translate3d(0, 0, 0);
|
|
45
|
+
transform: translateY(-20px) translate3d(0, 0, 0);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
100% {
|
|
49
|
+
opacity: 1;
|
|
50
|
+
|
|
51
|
+
-webkit-transform: translateY(0) translate3d(0, 0, 0);
|
|
52
|
+
-ms-transform: translateY(0) translate3d(0, 0, 0);
|
|
53
|
+
transform: translateY(0) translate3d(0, 0, 0);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.fade-in-down {
|
|
58
|
+
-webkit-animation-name: fadeInDown;
|
|
59
|
+
animation-name: fadeInDown;
|
|
60
|
+
}
|
data/_sass/_base.scss
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/*!
|
|
3
|
+
|
|
4
|
+
Pixyll
|
|
5
|
+
|
|
6
|
+
A simple, beautiful theme for Jekyll that emphasizes content rather than
|
|
7
|
+
aesthetic fluff.
|
|
8
|
+
|
|
9
|
+
Built upon BASSCSS (http://jxnblk.github.io/basscss).
|
|
10
|
+
|
|
11
|
+
Crafted with <3 by John Otander (@4lpine) - ©2015 John Otander
|
|
12
|
+
MIT License http://opensource.org/licenses/MIT
|
|
13
|
+
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
html, body {
|
|
17
|
+
height: auto;
|
|
18
|
+
min-height: 100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
img {
|
|
22
|
+
max-width: 100%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
em img {
|
|
26
|
+
max-width: 100%;
|
|
27
|
+
margin-left: 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
body {
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
-moz-box-sizing: border-box;
|
|
33
|
+
-webkit-box-sizing: border-box;
|
|
34
|
+
}
|
data/_sass/_basscss.scss
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
|
|
3
|
+
BASSCSS
|
|
4
|
+
|
|
5
|
+
Next-level CSS toolkit - basscss.com
|
|
6
|
+
|
|
7
|
+
Made with love by Jxnblk - ©2014 Brent Jackson
|
|
8
|
+
MIT License http://opensource.org/licenses/MIT
|
|
9
|
+
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
@import 'basscss/base-buttons';
|
|
13
|
+
@import 'basscss/base-forms';
|
|
14
|
+
@import 'basscss/base-reset';
|
|
15
|
+
@import 'basscss/base-typography';
|
|
16
|
+
|
|
17
|
+
@import 'basscss/buttons-blue';
|
|
18
|
+
|
|
19
|
+
@import 'basscss/syntax-highlighting';
|
|
20
|
+
@import 'basscss/color-base';
|
|
21
|
+
@import 'basscss/colors';
|
|
22
|
+
|
|
23
|
+
@import 'basscss/utility-headings';
|
|
24
|
+
@import 'basscss/utility-typography';
|
|
25
|
+
@import 'basscss/utility-white-space';
|