bubblin-jekyll 1.0.6 → 1.1.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 +4 -4
- data/_includes/disqus_comments.html +13 -13
- data/_includes/footer.html +38 -44
- data/_includes/head.html +10 -10
- data/_includes/header.html +25 -30
- data/_includes/icon-github.html +1 -1
- data/_includes/icon-github.svg +1 -1
- data/_includes/icon-twitter.html +1 -1
- data/_includes/icon-twitter.svg +1 -1
- data/_layouts/default.html +6 -8
- data/_layouts/home.html +20 -16
- data/_layouts/page.html +11 -8
- data/_layouts/post.html +24 -19
- data/_sass/bubblin-jekyll.scss +5 -46
- data/_sass/scss/_syntax-highlighting.scss +197 -66
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85c81f27195ac786334ab816ab3af69fb2b75df5
|
4
|
+
data.tar.gz: c3d616f38b21d55e8784ec4c21518894e9a38b65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4ba9c4bf709524197ebea8dc07365f1a1daa94eface4a87fc304ea3692c39e7fee590ae8f3f4d8a37924843e23f8a6d468a0fa7f03fa2401fdbbf92663706e3
|
7
|
+
data.tar.gz: 870632fe4e412225c1d9bb76689569813a393cfdefe43589b7689202e0e6078e887cf70adcfa3ec0020d337394d5aabef1a2c45b732e00acf05a99001208e656
|
@@ -1,20 +1,20 @@
|
|
1
|
-
{% if page.comments != false and jekyll.environment == "
|
1
|
+
{% if page.comments != false and jekyll.environment == "development" %}
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
var disqus_config = function
|
6
|
-
|
7
|
-
|
3
|
+
<div id="disqus_thread"></div>
|
4
|
+
<script>
|
5
|
+
var disqus_config = function() {
|
6
|
+
this.page.url = '{{ page.url | absolute_url }}';
|
7
|
+
this.page.identifier = '{{ page.url | absolute_url }}';
|
8
8
|
};
|
9
9
|
|
10
10
|
(function() {
|
11
|
-
|
11
|
+
var d = document,
|
12
|
+
s = d.createElement('script');
|
12
13
|
|
13
|
-
|
14
|
+
s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
|
14
15
|
|
15
|
-
|
16
|
-
|
16
|
+
s.setAttribute('data-timestamp', +new Date());
|
17
|
+
(d.head || d.body).appendChild(s);
|
17
18
|
})();
|
18
|
-
|
19
|
-
|
20
|
-
{% endif %}
|
19
|
+
</script>
|
20
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> {% endif %}
|
data/_includes/footer.html
CHANGED
@@ -1,46 +1,40 @@
|
|
1
|
-
<footer class="
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
<div class="footer-col-wrapper">
|
8
|
-
<div class="footer-col footer-col-1">
|
9
|
-
<ul class="contact-list">
|
10
|
-
<li>
|
11
|
-
{% if site.author %}
|
12
|
-
{{ site.author | escape }}
|
13
|
-
{% else %}
|
14
|
-
{{ site.title | escape }}
|
15
|
-
{% endif %}
|
1
|
+
<footer class="legend proxima double-top-gap pad-vertically">
|
2
|
+
<div class="flex">
|
3
|
+
<menu class="horizontal-list foot-menu">
|
4
|
+
<li>
|
5
|
+
<a rel="About us" href="https://bubblin.io/about">About</a>
|
16
6
|
</li>
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
7
|
+
<li>
|
8
|
+
<a rel="Frequently Asked Questions" href="https://bubblin.io/faq">FAQs</a>
|
9
|
+
</li>
|
10
|
+
<li class="hide-on-mobiles">
|
11
|
+
<a rel="Writers" href="https://bubblin.io/writers">Writers</a>
|
12
|
+
</li>
|
13
|
+
<li class="hide-on-mobiles">
|
14
|
+
<a rel="Documentation" href="https://bubblin.io/documentation">Documentation</a>
|
15
|
+
</li>
|
16
|
+
<li class="hide-on-mobiles">
|
17
|
+
<a href="{{ '/' | relative_url }}" rel="Official blog">Blog</a>
|
18
|
+
</li>
|
19
|
+
<li>
|
20
|
+
<a rel="Privacy Policy" href="/policy">Policy</a>
|
21
|
+
</li>
|
22
|
+
<li>
|
23
|
+
<a rel="Terms of Service" href="/terms">Terms</a>
|
24
|
+
</li>
|
25
|
+
</menu>
|
26
|
+
<span class="side-gap">
|
27
|
+
<h6 class="small">
|
28
|
+
© 2017+ Bubblin Superbooks Inc.
|
29
|
+
</h6>
|
30
|
+
</span>
|
31
|
+
</div>
|
32
|
+
<div class="one-half center small flex double-top-gap">
|
33
|
+
<span class="lobster faded-text">
|
34
|
+
Made with
|
35
|
+
<i class="heart"></i>
|
36
|
+
in the
|
37
|
+
</span>
|
38
|
+
<div class="usa side-gap"></div>
|
42
39
|
</div>
|
43
|
-
|
44
|
-
</div>
|
45
|
-
|
46
|
-
</footer>
|
40
|
+
</footer>
|
data/_includes/head.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
<head>
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
</head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
|
+
{% seo %}
|
6
|
+
<link rel="stylesheet" href="{{ '/assets/main.css' | relative_url }}">
|
7
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ " /feed.xml " | relative_url }}">
|
8
|
+
{% if jekyll.environment == 'development' and site.google_analytics %}
|
9
|
+
{% include google-analytics.html %}
|
10
|
+
{% endif %}
|
11
|
+
</head>
|
data/_includes/header.html
CHANGED
@@ -1,33 +1,28 @@
|
|
1
|
-
<header class="
|
1
|
+
<header class="fixed mast proxima top" role="banner">
|
2
|
+
<nav class="bar left transparent-white ">
|
3
|
+
{% assign default_paths = site.pages | map: "path" %} {% assign page_paths = site.header_pages | default: default_paths %}
|
4
|
+
<a class="sprite-up logo left ir" role="blog main" href="{{ '/' | relative_url }}">{{ site.title | escape }}</a>
|
5
|
+
<a class="left beta-label super-small" href="{{ '/' | relative_url }}"> beta </a>
|
2
6
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
+
<div class="loader left hidden"></div>
|
8
|
+
<ul class="horizontal-list left navi-menu">
|
9
|
+
{% for path in page_paths %} {% assign my_page = site.pages | where: "path", path | first %} {% if my_page.title %}
|
10
|
+
<li>
|
11
|
+
<a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
12
|
+
</li>
|
13
|
+
{% endif %} {% endfor %}
|
7
14
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
<svg viewBox="0 0 18 15" width="18px" height="15px">
|
14
|
-
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
|
15
|
-
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
|
16
|
-
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
|
17
|
-
</svg>
|
18
|
-
</span>
|
19
|
-
</label>
|
15
|
+
</ul>
|
16
|
+
<ul class="horizontal-list right navi-menu">
|
17
|
+
<li>
|
18
|
+
<a href="https://bubblin.io"> Go to main site </a>
|
19
|
+
</li>
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
</div>
|
30
|
-
</nav>
|
31
|
-
{% endif %}
|
32
|
-
</div>
|
33
|
-
</header>
|
21
|
+
<li class="hide-on-mobiles">
|
22
|
+
<a href="https://bubblin.io/users/new">Sign up</a>
|
23
|
+
</li>
|
24
|
+
<li class="hide-on-mobiles">
|
25
|
+
<a href="https://bubblin.io/login">Login</a>
|
26
|
+
</li>
|
27
|
+
</ul>
|
28
|
+
</header>
|
data/_includes/icon-github.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span
|
1
|
+
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span>: <span class="username">{{ include.username }}</span></a>
|
data/_includes/icon-github.svg
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#444" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
data/_includes/icon-twitter.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span
|
1
|
+
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span>: <span class="username">@{{ include.username }}</span></a>
|
data/_includes/icon-twitter.svg
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#444" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|
data/_layouts/default.html
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: " en " }}">
|
3
3
|
|
4
|
-
|
4
|
+
{% include head.html %}
|
5
5
|
|
6
|
-
|
6
|
+
<body>
|
7
7
|
|
8
8
|
{% include header.html %}
|
9
9
|
|
10
|
-
<main class="
|
11
|
-
<div class="wrapper">
|
10
|
+
<main class="container fold flex" aria-label="Content">
|
12
11
|
{{ content }}
|
13
|
-
</div>
|
14
12
|
</main>
|
15
13
|
|
16
14
|
{% include footer.html %}
|
17
15
|
|
18
|
-
|
16
|
+
</body>
|
19
17
|
|
20
|
-
</html>
|
18
|
+
</html>
|
data/_layouts/home.html
CHANGED
@@ -1,26 +1,30 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
+
<div class="wrapper">
|
4
5
|
|
5
|
-
<
|
6
|
+
<h1 href="{{ "/" | relative_url }}">{{ site.title | escape }}</h1>
|
6
7
|
|
7
|
-
|
8
|
+
<hr>
|
8
9
|
|
9
|
-
|
10
|
+
<p class="right">Subscribe <a href="{{ '/feed.xml' | relative_url }}">via RSS</a></p>
|
10
11
|
|
11
|
-
|
12
|
-
{% for post in site.posts %}
|
13
|
-
<li>
|
14
|
-
{% assign date_format = site.bubblin-jekyll.date_format | default: "%b %-d, %Y" %}
|
15
|
-
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
12
|
+
{{ content }}
|
16
13
|
|
17
|
-
|
18
|
-
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
19
|
-
</h2>
|
20
|
-
</li>
|
21
|
-
{% endfor %}
|
22
|
-
</ul>
|
14
|
+
<h2>Posts</h2>
|
23
15
|
|
24
|
-
|
16
|
+
<ul class="pad-vertically">
|
17
|
+
{% for post in site.posts %}
|
18
|
+
<li>
|
19
|
+
<h3>
|
20
|
+
<a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
21
|
+
</h3>
|
25
22
|
|
26
|
-
|
23
|
+
{% assign date_format = site.bubblin-jekyll.date_format | default: "%b %-d, %Y" %}
|
24
|
+
<span>{{ post.date | date: date_format }}</span>
|
25
|
+
|
26
|
+
</li>
|
27
|
+
{% endfor %}
|
28
|
+
</ul>
|
29
|
+
|
30
|
+
</div>
|
data/_layouts/page.html
CHANGED
@@ -1,14 +1,17 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
<article class="post">
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
<div class="wrapper">
|
6
|
+
<article>
|
7
|
+
<header>
|
8
|
+
<h1>{{ page.title | escape }}</h1>
|
9
|
+
</header>
|
10
|
+
<hr>
|
11
|
+
<div>
|
12
|
+
{{ content }}
|
13
|
+
</div>
|
9
14
|
|
10
|
-
|
11
|
-
{{ content }}
|
12
|
-
</div>
|
15
|
+
</article>
|
13
16
|
|
14
|
-
</
|
17
|
+
</div>
|
data/_layouts/post.html
CHANGED
@@ -1,25 +1,30 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
<
|
9
|
-
<
|
10
|
-
{% assign date_format = site.bubblin-jekyll.date_format | default: "%b %-d, %Y" %}
|
11
|
-
{{ page.date | date: date_format }}
|
12
|
-
</time>
|
13
|
-
{% if page.author %}
|
14
|
-
• <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>
|
15
|
-
{% endif %}</p>
|
16
|
-
</header>
|
5
|
+
<div class="wrapper">
|
6
|
+
<article itemscope itemtype="http://schema.org/BlogPosting">
|
7
|
+
<header>
|
8
|
+
<h1 itemprop="name headline">{{ page.title | escape }}</h1>
|
17
9
|
|
18
|
-
|
19
|
-
|
20
|
-
|
10
|
+
<p>
|
11
|
+
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
12
|
+
{% assign date_format = site.bubblin-jekyll.date_format | default: "%b %-d, %Y" %}
|
13
|
+
{{ page.date | date: date_format }}
|
14
|
+
</time>
|
15
|
+
{% if page.author %}
|
16
|
+
• <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>
|
17
|
+
{% endif %}
|
18
|
+
</p>
|
19
|
+
</header>
|
20
|
+
<hr>
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
22
|
+
<div itemprop="articleBody">
|
23
|
+
{{ content }}
|
24
|
+
</div>
|
25
|
+
|
26
|
+
{% if site.disqus.shortname %}
|
27
|
+
{% include disqus_comments.html %}
|
28
|
+
{% endif %}
|
29
|
+
</article>
|
30
|
+
</div>
|
data/_sass/bubblin-jekyll.scss
CHANGED
@@ -1,46 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
$spacing-unit: 30px !default;
|
8
|
-
|
9
|
-
$text-color: #444 !default;
|
10
|
-
$background-color: #fff !default;
|
11
|
-
$brand-color: #1177ff !default;
|
12
|
-
|
13
|
-
$grey-color: #828282 !default;
|
14
|
-
$grey-color-light: lighten($grey-color, 40%) !default;
|
15
|
-
$grey-color-dark: darken($grey-color, 25%) !default;
|
16
|
-
|
17
|
-
$table-text-align: left !default;
|
18
|
-
|
19
|
-
// Width of the content area
|
20
|
-
$content-width: 800px !default;
|
21
|
-
|
22
|
-
$on-palm: 600px !default;
|
23
|
-
$on-laptop: 800px !default;
|
24
|
-
|
25
|
-
// Use media queries like this:
|
26
|
-
// @include media-query($on-palm) {
|
27
|
-
// .wrapper {
|
28
|
-
// padding-right: $spacing-unit / 2;
|
29
|
-
// padding-left: $spacing-unit / 2;
|
30
|
-
// }
|
31
|
-
// }
|
32
|
-
@mixin media-query($device) {
|
33
|
-
@media screen and (max-width: $device) {
|
34
|
-
@content;
|
35
|
-
}
|
36
|
-
}
|
37
|
-
|
38
|
-
@mixin relative-font-size($ratio) {
|
39
|
-
font-size: $base-font-size * $ratio;
|
40
|
-
}
|
41
|
-
|
42
|
-
// Import partials.
|
43
|
-
@import
|
44
|
-
"scss/base",
|
45
|
-
"scss/layout",
|
46
|
-
"scss/syntax-highlighting";
|
1
|
+
@import "scss/content";
|
2
|
+
@import "scss/footer";
|
3
|
+
@import "scss/header";
|
4
|
+
@import "scss/syntax-highlighting";
|
5
|
+
@import "scss/reusable";
|
@@ -1,71 +1,202 @@
|
|
1
1
|
/**
|
2
2
|
* Syntax highlighting styles
|
3
3
|
*/
|
4
|
-
.highlight {
|
5
|
-
background: #fff;
|
6
|
-
@extend %vertical-rhythm;
|
7
|
-
|
8
|
-
.highlighter-rouge & {
|
9
|
-
background: #eef;
|
10
|
-
}
|
11
4
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
5
|
+
.highlight {
|
6
|
+
background: #fff;
|
7
|
+
.highlighter-rouge & {
|
8
|
+
background: #eef;
|
9
|
+
}
|
10
|
+
.c {
|
11
|
+
color: #998;
|
12
|
+
font-style: italic
|
13
|
+
} // Comment
|
14
|
+
.err {
|
15
|
+
color: #a61717;
|
16
|
+
background-color: #e3d2d2
|
17
|
+
} // Error
|
18
|
+
.k {
|
19
|
+
font-weight: bold
|
20
|
+
} // Keyword
|
21
|
+
.o {
|
22
|
+
font-weight: bold
|
23
|
+
} // Operator
|
24
|
+
.cm {
|
25
|
+
color: #998;
|
26
|
+
font-style: italic
|
27
|
+
} // Comment.Multiline
|
28
|
+
.cp {
|
29
|
+
color: #999;
|
30
|
+
font-weight: bold
|
31
|
+
} // Comment.Preproc
|
32
|
+
.c1 {
|
33
|
+
color: #998;
|
34
|
+
font-style: italic
|
35
|
+
} // Comment.Single
|
36
|
+
.cs {
|
37
|
+
color: #999;
|
38
|
+
font-weight: bold;
|
39
|
+
font-style: italic
|
40
|
+
} // Comment.Special
|
41
|
+
.gd {
|
42
|
+
color: #000;
|
43
|
+
background-color: #fdd
|
44
|
+
} // Generic.Deleted
|
45
|
+
.gd .x {
|
46
|
+
color: #000;
|
47
|
+
background-color: #faa
|
48
|
+
} // Generic.Deleted.Specific
|
49
|
+
.ge {
|
50
|
+
font-style: italic
|
51
|
+
} // Generic.Emph
|
52
|
+
.gr {
|
53
|
+
color: #a00
|
54
|
+
} // Generic.Error
|
55
|
+
.gh {
|
56
|
+
color: #999
|
57
|
+
} // Generic.Heading
|
58
|
+
.gi {
|
59
|
+
color: #000;
|
60
|
+
background-color: #dfd
|
61
|
+
} // Generic.Inserted
|
62
|
+
.gi .x {
|
63
|
+
color: #000;
|
64
|
+
background-color: #afa
|
65
|
+
} // Generic.Inserted.Specific
|
66
|
+
.go {
|
67
|
+
color: #888
|
68
|
+
} // Generic.Output
|
69
|
+
.gp {
|
70
|
+
color: #555
|
71
|
+
} // Generic.Prompt
|
72
|
+
.gs {
|
73
|
+
font-weight: bold
|
74
|
+
} // Generic.Strong
|
75
|
+
.gu {
|
76
|
+
color: #aaa
|
77
|
+
} // Generic.Subheading
|
78
|
+
.gt {
|
79
|
+
color: #a00
|
80
|
+
} // Generic.Traceback
|
81
|
+
.kc {
|
82
|
+
font-weight: bold
|
83
|
+
} // Keyword.Constant
|
84
|
+
.kd {
|
85
|
+
font-weight: bold
|
86
|
+
} // Keyword.Declaration
|
87
|
+
.kp {
|
88
|
+
font-weight: bold
|
89
|
+
} // Keyword.Pseudo
|
90
|
+
.kr {
|
91
|
+
font-weight: bold
|
92
|
+
} // Keyword.Reserved
|
93
|
+
.kt {
|
94
|
+
color: #458;
|
95
|
+
font-weight: bold
|
96
|
+
} // Keyword.Type
|
97
|
+
.m {
|
98
|
+
color: #099
|
99
|
+
} // Literal.Number
|
100
|
+
.s {
|
101
|
+
color: #d14
|
102
|
+
} // Literal.String
|
103
|
+
.na {
|
104
|
+
color: #008080
|
105
|
+
} // Name.Attribute
|
106
|
+
.nb {
|
107
|
+
color: #0086B3
|
108
|
+
} // Name.Builtin
|
109
|
+
.nc {
|
110
|
+
color: #458;
|
111
|
+
font-weight: bold
|
112
|
+
} // Name.Class
|
113
|
+
.no {
|
114
|
+
color: #008080
|
115
|
+
} // Name.Constant
|
116
|
+
.ni {
|
117
|
+
color: #800080
|
118
|
+
} // Name.Entity
|
119
|
+
.ne {
|
120
|
+
color: #900;
|
121
|
+
font-weight: bold
|
122
|
+
} // Name.Exception
|
123
|
+
.nf {
|
124
|
+
color: #900;
|
125
|
+
font-weight: bold
|
126
|
+
} // Name.Function
|
127
|
+
.nn {
|
128
|
+
color: #555
|
129
|
+
} // Name.Namespace
|
130
|
+
.nt {
|
131
|
+
color: #000080
|
132
|
+
} // Name.Tag
|
133
|
+
.nv {
|
134
|
+
color: #008080
|
135
|
+
} // Name.Variable
|
136
|
+
.ow {
|
137
|
+
font-weight: bold
|
138
|
+
} // Operator.Word
|
139
|
+
.w {
|
140
|
+
color: #bbb
|
141
|
+
} // Text.Whitespace
|
142
|
+
.mf {
|
143
|
+
color: #099
|
144
|
+
} // Literal.Number.Float
|
145
|
+
.mh {
|
146
|
+
color: #099
|
147
|
+
} // Literal.Number.Hex
|
148
|
+
.mi {
|
149
|
+
color: #099
|
150
|
+
} // Literal.Number.Integer
|
151
|
+
.mo {
|
152
|
+
color: #099
|
153
|
+
} // Literal.Number.Oct
|
154
|
+
.sb {
|
155
|
+
color: #d14
|
156
|
+
} // Literal.String.Backtick
|
157
|
+
.sc {
|
158
|
+
color: #d14
|
159
|
+
} // Literal.String.Char
|
160
|
+
.sd {
|
161
|
+
color: #d14
|
162
|
+
} // Literal.String.Doc
|
163
|
+
.s2 {
|
164
|
+
color: #d14
|
165
|
+
} // Literal.String.Double
|
166
|
+
.se {
|
167
|
+
color: #d14
|
168
|
+
} // Literal.String.Escape
|
169
|
+
.sh {
|
170
|
+
color: #d14
|
171
|
+
} // Literal.String.Heredoc
|
172
|
+
.si {
|
173
|
+
color: #d14
|
174
|
+
} // Literal.String.Interpol
|
175
|
+
.sx {
|
176
|
+
color: #d14
|
177
|
+
} // Literal.String.Other
|
178
|
+
.sr {
|
179
|
+
color: #009926
|
180
|
+
} // Literal.String.Regex
|
181
|
+
.s1 {
|
182
|
+
color: #d14
|
183
|
+
} // Literal.String.Single
|
184
|
+
.ss {
|
185
|
+
color: #990073
|
186
|
+
} // Literal.String.Symbol
|
187
|
+
.bp {
|
188
|
+
color: #999
|
189
|
+
} // Name.Builtin.Pseudo
|
190
|
+
.vc {
|
191
|
+
color: #008080
|
192
|
+
} // Name.Variable.Class
|
193
|
+
.vg {
|
194
|
+
color: #008080
|
195
|
+
} // Name.Variable.Global
|
196
|
+
.vi {
|
197
|
+
color: #008080
|
198
|
+
} // Name.Variable.Instance
|
199
|
+
.il {
|
200
|
+
color: #099
|
201
|
+
} // Literal.Number.Integer.Long
|
71
202
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bubblin-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marvin Danig
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-10-
|
11
|
+
date: 2017-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|