mere-blog-theme 0.5 → 1.0.1
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/README.md +44 -24
- data/_includes/author-media.html +23 -20
- data/_includes/google-analytics.html +6 -3
- data/_includes/head.html +21 -11
- data/_includes/hero.html +12 -7
- data/_includes/navbar.html +19 -19
- data/_includes/pagination.html +41 -21
- data/_includes/post-item.html +18 -15
- data/_includes/social-buttons.html +25 -26
- data/_layouts/author.html +50 -38
- data/_layouts/default.html +21 -19
- data/_layouts/homepage.html +9 -12
- data/_layouts/post.html +29 -28
- data/_sass/_intro.scss +6 -4
- data/_sass/_layout.scss +29 -18
- data/_sass/_main.scss +17 -18
- data/_sass/syntax.scss +14 -6
- data/assets/css/app.scss +1 -1
- data/assets/js/app.js +9 -11
- data/node_modules/.package-lock.json +4 -4
- data/node_modules/bulma/LICENSE +1 -1
- data/node_modules/bulma/README.md +67 -55
- data/node_modules/bulma/bulma.scss +4 -0
- data/node_modules/bulma/css/bulma.css +18412 -8566
- data/node_modules/bulma/css/bulma.css.map +1 -1
- data/node_modules/bulma/css/bulma.min.css +3 -1
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +19648 -0
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +11136 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers.css +11136 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css +21551 -0
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
- data/node_modules/bulma/package.json +25 -19
- data/node_modules/bulma/sass/_index.scss +10 -0
- data/node_modules/bulma/sass/base/_index.scss +6 -0
- data/node_modules/bulma/sass/base/animations.scss +15 -0
- data/node_modules/bulma/sass/base/generic.scss +239 -0
- data/node_modules/bulma/sass/base/minireset.scss +92 -0
- data/node_modules/bulma/sass/base/skeleton.scss +114 -0
- data/node_modules/bulma/sass/components/_index.scss +13 -0
- data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
- data/node_modules/bulma/sass/components/card.scss +162 -0
- data/node_modules/bulma/sass/components/dropdown.scss +188 -0
- data/node_modules/bulma/sass/components/menu.scss +165 -0
- data/node_modules/bulma/sass/components/message.scss +183 -0
- data/node_modules/bulma/sass/components/modal.scss +164 -0
- data/node_modules/bulma/sass/components/navbar.scss +799 -0
- data/node_modules/bulma/sass/components/pagination.scss +379 -0
- data/node_modules/bulma/sass/components/panel.scss +218 -0
- data/node_modules/bulma/sass/components/tabs.scss +273 -0
- data/node_modules/bulma/sass/elements/_index.scss +16 -0
- data/node_modules/bulma/sass/elements/block.scss +6 -0
- data/node_modules/bulma/sass/elements/box.scss +59 -0
- data/node_modules/bulma/sass/elements/button.scss +647 -0
- data/node_modules/bulma/sass/elements/content.scss +289 -0
- data/node_modules/bulma/sass/elements/delete.scss +6 -0
- data/node_modules/bulma/sass/elements/icon.scss +67 -0
- data/node_modules/bulma/sass/elements/image.scss +62 -0
- data/node_modules/bulma/sass/elements/loader.scss +15 -0
- data/node_modules/bulma/sass/elements/notification.scss +105 -0
- data/node_modules/bulma/sass/elements/progress.scss +115 -0
- data/node_modules/bulma/sass/elements/table.scss +261 -0
- data/node_modules/bulma/sass/elements/tag.scss +219 -0
- data/node_modules/bulma/sass/elements/title.scss +128 -0
- data/node_modules/bulma/sass/form/_index.scss +9 -0
- data/node_modules/bulma/sass/form/checkbox-radio.scss +36 -0
- data/node_modules/bulma/sass/form/file.scss +330 -0
- data/node_modules/bulma/sass/form/input-textarea.scss +113 -0
- data/node_modules/bulma/sass/form/select.scss +144 -0
- data/node_modules/bulma/sass/form/shared.scss +176 -0
- data/node_modules/bulma/sass/form/tools.scss +352 -0
- data/node_modules/bulma/sass/grid/_index.scss +5 -0
- data/node_modules/bulma/sass/grid/columns.scss +961 -0
- data/node_modules/bulma/sass/grid/grid.scss +209 -0
- data/node_modules/bulma/sass/helpers/_index.scss +15 -0
- data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
- data/node_modules/bulma/sass/helpers/border.scss +15 -0
- data/node_modules/bulma/sass/helpers/color.scss +344 -0
- data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
- data/node_modules/bulma/sass/helpers/float.scss +28 -0
- data/node_modules/bulma/sass/helpers/gap.scss +24 -0
- data/node_modules/bulma/sass/helpers/other.scss +19 -0
- data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
- data/node_modules/bulma/sass/helpers/position.scss +19 -0
- data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
- data/node_modules/bulma/sass/helpers/typography.scss +168 -0
- data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
- data/node_modules/bulma/sass/layout/_index.scss +9 -0
- data/node_modules/bulma/sass/layout/container.scss +59 -0
- data/node_modules/bulma/sass/layout/footer.scss +23 -0
- data/node_modules/bulma/sass/layout/hero.scss +270 -0
- data/node_modules/bulma/sass/layout/level.scss +107 -0
- data/node_modules/bulma/sass/layout/media.scss +106 -0
- data/node_modules/bulma/sass/layout/section.scss +38 -0
- data/node_modules/bulma/sass/themes/_index.scss +35 -0
- data/node_modules/bulma/sass/themes/dark.scss +56 -0
- data/node_modules/bulma/sass/themes/light.scss +146 -0
- data/node_modules/bulma/sass/themes/setup.scss +174 -0
- data/node_modules/bulma/sass/utilities/_index.scss +7 -0
- data/node_modules/bulma/sass/utilities/controls.scss +85 -0
- data/node_modules/bulma/sass/utilities/css-variables.scss +426 -0
- data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
- data/node_modules/bulma/sass/utilities/extends.scss +34 -0
- data/node_modules/bulma/sass/utilities/functions.scss +258 -0
- data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
- data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
- data/node_modules/bulma/versions/bulma-no-dark-mode.scss +20 -0
- data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
- data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
- data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
- data/package-lock.json +5 -12
- data/package.json +1 -1
- metadata +107 -80
- data/node_modules/bulma/CHANGELOG.md +0 -1539
- data/node_modules/bulma/bulma.sass +0 -10
- data/node_modules/bulma/css/bulma-rtl.css +0 -11705
- data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
- data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
- data/node_modules/bulma/sass/base/_all.sass +0 -6
- data/node_modules/bulma/sass/base/animations.sass +0 -5
- data/node_modules/bulma/sass/base/generic.sass +0 -145
- data/node_modules/bulma/sass/base/helpers.sass +0 -1
- data/node_modules/bulma/sass/base/minireset.sass +0 -79
- data/node_modules/bulma/sass/components/_all.sass +0 -15
- data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
- data/node_modules/bulma/sass/components/card.sass +0 -102
- data/node_modules/bulma/sass/components/dropdown.sass +0 -83
- data/node_modules/bulma/sass/components/level.sass +0 -79
- data/node_modules/bulma/sass/components/media.sass +0 -59
- data/node_modules/bulma/sass/components/menu.sass +0 -59
- data/node_modules/bulma/sass/components/message.sass +0 -101
- data/node_modules/bulma/sass/components/modal.sass +0 -117
- data/node_modules/bulma/sass/components/navbar.sass +0 -445
- data/node_modules/bulma/sass/components/pagination.sass +0 -158
- data/node_modules/bulma/sass/components/panel.sass +0 -121
- data/node_modules/bulma/sass/components/tabs.sass +0 -176
- data/node_modules/bulma/sass/elements/_all.sass +0 -16
- data/node_modules/bulma/sass/elements/box.sass +0 -26
- data/node_modules/bulma/sass/elements/button.sass +0 -345
- data/node_modules/bulma/sass/elements/container.sass +0 -29
- data/node_modules/bulma/sass/elements/content.sass +0 -157
- data/node_modules/bulma/sass/elements/form.sass +0 -1
- data/node_modules/bulma/sass/elements/icon.sass +0 -40
- data/node_modules/bulma/sass/elements/image.sass +0 -73
- data/node_modules/bulma/sass/elements/notification.sass +0 -52
- data/node_modules/bulma/sass/elements/other.sass +0 -41
- data/node_modules/bulma/sass/elements/progress.sass +0 -73
- data/node_modules/bulma/sass/elements/table.sass +0 -133
- data/node_modules/bulma/sass/elements/tag.sass +0 -140
- data/node_modules/bulma/sass/elements/title.sass +0 -72
- data/node_modules/bulma/sass/form/_all.sass +0 -9
- data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
- data/node_modules/bulma/sass/form/file.sass +0 -182
- data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
- data/node_modules/bulma/sass/form/select.sass +0 -87
- data/node_modules/bulma/sass/form/shared.sass +0 -60
- data/node_modules/bulma/sass/form/tools.sass +0 -215
- data/node_modules/bulma/sass/grid/_all.sass +0 -5
- data/node_modules/bulma/sass/grid/columns.sass +0 -513
- data/node_modules/bulma/sass/grid/tiles.sass +0 -36
- data/node_modules/bulma/sass/helpers/_all.sass +0 -12
- data/node_modules/bulma/sass/helpers/color.sass +0 -39
- data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
- data/node_modules/bulma/sass/helpers/float.sass +0 -10
- data/node_modules/bulma/sass/helpers/other.sass +0 -14
- data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
- data/node_modules/bulma/sass/helpers/position.sass +0 -7
- data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
- data/node_modules/bulma/sass/helpers/typography.sass +0 -100
- data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
- data/node_modules/bulma/sass/layout/_all.sass +0 -6
- data/node_modules/bulma/sass/layout/footer.sass +0 -11
- data/node_modules/bulma/sass/layout/hero.sass +0 -149
- data/node_modules/bulma/sass/layout/section.sass +0 -15
- data/node_modules/bulma/sass/utilities/_all.sass +0 -9
- data/node_modules/bulma/sass/utilities/animations.sass +0 -1
- data/node_modules/bulma/sass/utilities/controls.sass +0 -49
- data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -110
- data/node_modules/bulma/sass/utilities/extends.sass +0 -22
- data/node_modules/bulma/sass/utilities/functions.sass +0 -115
- data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -78
- data/node_modules/bulma/sass/utilities/mixins.sass +0 -268
data/_layouts/default.html
CHANGED
@@ -1,24 +1,26 @@
|
|
1
1
|
<!doctype html>
|
2
|
-
<html
|
3
|
-
{
|
4
|
-
|
5
|
-
|
6
|
-
{%
|
7
|
-
|
8
|
-
{%
|
9
|
-
|
10
|
-
|
2
|
+
<html
|
3
|
+
lang="{{ site.lang | default: 'en' }}"
|
4
|
+
class="{% if site.force_theme %} theme-{{ site.force_theme }} {% endif %}"
|
5
|
+
>
|
6
|
+
{% include head.html %}
|
7
|
+
<body>
|
8
|
+
{% include navbar.html %}
|
9
|
+
{% unless page.hide_hero %}
|
10
|
+
{% include hero.html %}
|
11
|
+
{% endunless %}
|
12
|
+
<section class="section">
|
13
|
+
<div class="container">
|
11
14
|
{{ content }}
|
12
|
-
|
13
|
-
</section>
|
14
|
-
<section class="section">
|
15
|
-
|
15
|
+
</div>
|
16
|
+
</section>
|
17
|
+
<section class="section">
|
18
|
+
<div class="container">
|
16
19
|
<div class="has-text-centered">
|
17
|
-
|
20
|
+
<p>Theme built by <a href="https://www.csrhymes.com">C.S. Rhymes</a></p>
|
18
21
|
</div>
|
19
|
-
|
20
|
-
</section>
|
21
|
-
<script src="{{ site.baseurl }}/assets/js/app.js" type="text/javascript"></script>
|
22
|
-
</body>
|
22
|
+
</div>
|
23
|
+
</section>
|
24
|
+
<script src="{{ site.baseurl }}/assets/js/app.js" type="text/javascript"></script>
|
25
|
+
</body>
|
23
26
|
</html>
|
24
|
-
|
data/_layouts/homepage.html
CHANGED
@@ -1,22 +1,19 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
|
5
|
-
|
6
|
-
{{ content }}
|
4
|
+
<div class="content mb-4">
|
5
|
+
{{ content }}
|
7
6
|
</div>
|
8
7
|
|
9
8
|
<div class="columns is-multiline">
|
10
|
-
|
11
|
-
|
9
|
+
{% assign post_width = '6|6|12|4|4|4' | split: '|' %}
|
10
|
+
{% for post in paginator.posts limit: 6 %}
|
12
11
|
<div class="column is-{{ post_width[forloop.index0] }}">
|
13
|
-
|
12
|
+
{% include post-item.html %}
|
14
13
|
</div>
|
15
|
-
|
14
|
+
{% endfor %}
|
16
15
|
|
17
|
-
|
18
|
-
|
19
|
-
|
16
|
+
<div class="column is-12">
|
17
|
+
{% include pagination.html %}
|
18
|
+
</div>
|
20
19
|
</div>
|
21
|
-
|
22
|
-
|
data/_layouts/post.html
CHANGED
@@ -1,41 +1,42 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
|
5
4
|
{% if page.intro %}
|
6
|
-
<div class="intro">
|
5
|
+
<div class="intro has-background-light">
|
7
6
|
<div class="columns is-centered">
|
8
|
-
|
7
|
+
{% if page.intro_image %}
|
9
8
|
<div class="column is-8-desktop is-6-tablet">
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
</div>
|
14
|
-
{% endif %}
|
15
|
-
<div class="column is-4-desktop is-6-tablet">
|
16
|
-
<p class="title is-1">{{ page.intro }}</p>
|
9
|
+
<figure class="image {% if page.intro_image_ratio %} {{ page.intro_image_ratio }} {% else %} is-16by9 {% endif %}">
|
10
|
+
<img src="{{ page.intro_image | relative_url }}" alt="{{ page.title }}">
|
11
|
+
</figure>
|
17
12
|
</div>
|
13
|
+
{% endif %}
|
14
|
+
<div class="column is-4-desktop is-6-tablet">
|
15
|
+
<p class="title is-1 has-text-dark">{{ page.intro }}</p>
|
16
|
+
</div>
|
18
17
|
</div>
|
19
|
-
</div>
|
18
|
+
</div>
|
20
19
|
{% endif %}
|
21
20
|
|
22
|
-
<div class="columns is-centered">
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
{% for tag in page.tags %}
|
31
|
-
<span class="tag is-primary">{{ tag }}</span>
|
32
|
-
{% endfor %}
|
33
|
-
</div>
|
21
|
+
<div class="columns is-centered is-multiline">
|
22
|
+
<div class="column is-8-desktop is-10-tablet">
|
23
|
+
<div class="content">
|
24
|
+
<p>
|
25
|
+
<strong>Published: {{ page.date | date: '%b %-d, %Y' }} by {{ page.author }}</strong>
|
26
|
+
</p>
|
27
|
+
{{ content }}
|
28
|
+
</div>
|
34
29
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
30
|
+
<div class="tags">
|
31
|
+
{% for tag in page.tags %}
|
32
|
+
<span class="tag is-primary">{{ tag }}</span>
|
33
|
+
{% endfor %}
|
39
34
|
</div>
|
35
|
+
</div>
|
36
|
+
<div class="column is-8-desktop is-10-tablet">
|
37
|
+
{% assign author = site.authors | where: 'name', page.author | first %}
|
38
|
+
{% if author %}
|
39
|
+
{% include author-media.html %}
|
40
|
+
{% endif %}
|
41
|
+
</div>
|
40
42
|
</div>
|
41
|
-
|
data/_sass/_intro.scss
CHANGED
data/_sass/_layout.scss
CHANGED
@@ -1,30 +1,41 @@
|
|
1
1
|
.content {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
ul.pagination-list {
|
3
|
+
list-style: none;
|
4
|
+
margin-left: 0;
|
5
|
+
margin-top: 0;
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
}
|
7
|
+
li + li {
|
8
|
+
margin-top: 0;
|
10
9
|
}
|
10
|
+
}
|
11
11
|
}
|
12
12
|
|
13
13
|
div.highlight {
|
14
|
-
|
14
|
+
margin-bottom: 1rem;
|
15
15
|
}
|
16
16
|
|
17
17
|
@include desktop {
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
}
|
18
|
+
.navbar-item {
|
19
|
+
&.is-hoverable:hover {
|
20
|
+
.navbar-dropdown {
|
21
|
+
display: block;
|
22
|
+
}
|
24
23
|
}
|
24
|
+
}
|
25
25
|
}
|
26
26
|
|
27
|
-
.
|
28
|
-
|
29
|
-
|
30
|
-
|
27
|
+
a:not(.button) {
|
28
|
+
text-decoration: underline;
|
29
|
+
|
30
|
+
&:hover {
|
31
|
+
text-decoration-style: dotted;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
.avatar-link {
|
36
|
+
display: inline-block;
|
37
|
+
&:hover,
|
38
|
+
&:focus {
|
39
|
+
outline: 1px solid $link;
|
40
|
+
}
|
41
|
+
}
|
data/_sass/_main.scss
CHANGED
@@ -1,15 +1,12 @@
|
|
1
1
|
@charset "utf-8";
|
2
2
|
|
3
3
|
// Fonts
|
4
|
-
@import url(
|
5
|
-
$family-sans-serif:
|
6
|
-
$family-serif:
|
4
|
+
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Righteous&display=swap");
|
5
|
+
$family-sans-serif: "Open Sans", sans-serif;
|
6
|
+
$family-serif: "Righteous", cursive;
|
7
7
|
$family-primary: $family-sans-serif;
|
8
8
|
$family-secondary: $family-serif;
|
9
9
|
$title-family: $family-secondary;
|
10
|
-
h1, h2, h3, h4, h5, h6 {
|
11
|
-
font-family: $family-secondary;
|
12
|
-
}
|
13
10
|
|
14
11
|
// Colours
|
15
12
|
$primary: #4fa6a3 !default;
|
@@ -18,22 +15,24 @@ $light: #f6f6f6;
|
|
18
15
|
$white: #ffffff;
|
19
16
|
|
20
17
|
//Cards
|
21
|
-
$card-
|
22
|
-
$card-
|
23
|
-
$card-
|
18
|
+
$card-radius: 2px;
|
19
|
+
// $card-shadow: none;
|
20
|
+
// $card-footer-border-top: none;
|
21
|
+
// $card-background-color: $light;
|
24
22
|
|
25
23
|
// Pagination
|
26
|
-
$pagination-focus-border-color: $dark;
|
27
|
-
$pagination-current-color: $white;
|
28
|
-
$pagination-current-background-color: $dark;
|
29
|
-
$pagination-current-border-color: $dark;
|
24
|
+
// $pagination-focus-border-color: $dark;
|
25
|
+
// $pagination-current-color: $white;
|
26
|
+
// $pagination-current-background-color: $dark;
|
27
|
+
// $pagination-current-border-color: $dark;
|
30
28
|
|
31
29
|
// Radius
|
32
|
-
$radius:
|
33
|
-
$radius-large:
|
34
|
-
$radius-small:
|
30
|
+
$radius: 2px;
|
31
|
+
$radius-large: 2px;
|
32
|
+
$radius-small: 2px;
|
35
33
|
|
36
|
-
@import "../node_modules/bulma/
|
34
|
+
@import "../node_modules/bulma/sass";
|
35
|
+
@import "../node_modules/bulma/sass/utilities/mixins";
|
37
36
|
@import "layout";
|
38
37
|
@import "syntax";
|
39
|
-
@import "intro";
|
38
|
+
@import "intro";
|
data/_sass/syntax.scss
CHANGED
@@ -1,5 +1,9 @@
|
|
1
|
-
.highlight table td {
|
2
|
-
|
1
|
+
.highlight table td {
|
2
|
+
padding: 5px;
|
3
|
+
}
|
4
|
+
.highlight table pre {
|
5
|
+
margin: 0;
|
6
|
+
}
|
3
7
|
.highlight .cm {
|
4
8
|
color: #999988;
|
5
9
|
font-style: italic;
|
@@ -17,7 +21,8 @@
|
|
17
21
|
font-weight: bold;
|
18
22
|
font-style: italic;
|
19
23
|
}
|
20
|
-
.highlight .c,
|
24
|
+
.highlight .c,
|
25
|
+
.highlight .cd {
|
21
26
|
color: #999988;
|
22
27
|
font-style: italic;
|
23
28
|
}
|
@@ -82,7 +87,8 @@
|
|
82
87
|
color: #445588;
|
83
88
|
font-weight: bold;
|
84
89
|
}
|
85
|
-
.highlight .k,
|
90
|
+
.highlight .k,
|
91
|
+
.highlight .kv {
|
86
92
|
color: #000000;
|
87
93
|
font-weight: bold;
|
88
94
|
}
|
@@ -101,7 +107,9 @@
|
|
101
107
|
.highlight .mo {
|
102
108
|
color: #009999;
|
103
109
|
}
|
104
|
-
.highlight .m,
|
110
|
+
.highlight .m,
|
111
|
+
.highlight .mb,
|
112
|
+
.highlight .mx {
|
105
113
|
color: #009999;
|
106
114
|
}
|
107
115
|
.highlight .sb {
|
@@ -147,7 +155,7 @@
|
|
147
155
|
color: #999999;
|
148
156
|
}
|
149
157
|
.highlight .nb {
|
150
|
-
color: #
|
158
|
+
color: #0086b3;
|
151
159
|
}
|
152
160
|
.highlight .nc {
|
153
161
|
color: #445588;
|
data/assets/css/app.scss
CHANGED
data/assets/js/app.js
CHANGED
@@ -1,25 +1,23 @@
|
|
1
|
-
document.addEventListener(
|
2
|
-
|
1
|
+
document.addEventListener("DOMContentLoaded", () => {
|
3
2
|
// Get all "navbar-burger" elements
|
4
|
-
const $navbarBurgers = Array.prototype.slice.call(
|
3
|
+
const $navbarBurgers = Array.prototype.slice.call(
|
4
|
+
document.querySelectorAll(".navbar-burger"),
|
5
|
+
0
|
6
|
+
);
|
5
7
|
|
6
8
|
// Check if there are any navbar burgers
|
7
9
|
if ($navbarBurgers.length > 0) {
|
8
|
-
|
9
10
|
// Add a click event on each of them
|
10
|
-
$navbarBurgers.forEach(
|
11
|
-
el.addEventListener(
|
12
|
-
|
11
|
+
$navbarBurgers.forEach((el) => {
|
12
|
+
el.addEventListener("click", () => {
|
13
13
|
// Get the target from the "data-target" attribute
|
14
14
|
const target = el.dataset.target;
|
15
15
|
const $target = document.getElementById(target);
|
16
16
|
|
17
17
|
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
|
18
|
-
el.classList.toggle(
|
19
|
-
$target.classList.toggle(
|
20
|
-
|
18
|
+
el.classList.toggle("is-active");
|
19
|
+
$target.classList.toggle("is-active");
|
21
20
|
});
|
22
21
|
});
|
23
22
|
}
|
24
|
-
|
25
23
|
});
|
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "artemis-blog-theme",
|
3
3
|
"version": "1.0.0",
|
4
|
-
"lockfileVersion":
|
4
|
+
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"node_modules/bulma": {
|
8
|
-
"version": "0.
|
9
|
-
"resolved": "https://registry.npmjs.org/bulma/-/bulma-0.
|
10
|
-
"integrity": "sha512-
|
8
|
+
"version": "1.0.2",
|
9
|
+
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.2.tgz",
|
10
|
+
"integrity": "sha512-D7GnDuF6seb6HkcnRMM9E739QpEY9chDzzeFrHMyEns/EXyDJuQ0XA0KxbBl/B2NTsKSoDomW61jFGFaAxhK5A=="
|
11
11
|
}
|
12
12
|
}
|
13
13
|
}
|
data/node_modules/bulma/LICENSE
CHANGED
@@ -37,6 +37,7 @@ bower install bulma
|
|
37
37
|
```
|
38
38
|
|
39
39
|
### Import
|
40
|
+
|
40
41
|
After installation, you can import the CSS file into your project using this snippet:
|
41
42
|
|
42
43
|
```sh
|
@@ -53,7 +54,7 @@ Feel free to raise an issue or submit a pull request.
|
|
53
54
|
|
54
55
|
Bulma is a **CSS** framework. As such, the sole output is a single CSS file: [bulma.css](https://github.com/jgthms/bulma/blob/master/css/bulma.css)
|
55
56
|
|
56
|
-
You can either use that file, "out of the box", or download the Sass source files to customize the [variables](https://bulma.io/documentation/
|
57
|
+
You can either use that file, "out of the box", or download the Sass source files to customize the [variables](https://bulma.io/documentation/customize/#docsNav).
|
57
58
|
|
58
59
|
There is **no** JavaScript included. People generally want to use their own JS implementation (and usually already have one). Bulma can be considered "environment agnostic": it's just the style layer on top of the logic.
|
59
60
|
|
@@ -61,11 +62,11 @@ There is **no** JavaScript included. People generally want to use their own JS i
|
|
61
62
|
|
62
63
|
Bulma uses [autoprefixer](https://github.com/postcss/autoprefixer) to make (most) Flexbox features compatible with earlier browser versions. According to [Can I use](https://caniuse.com/#feat=flexbox), Bulma is compatible with **recent** versions of:
|
63
64
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
65
|
+
- Chrome
|
66
|
+
- Edge
|
67
|
+
- Firefox
|
68
|
+
- Opera
|
69
|
+
- Safari
|
69
70
|
|
70
71
|
Internet Explorer (10+) is only partially supported.
|
71
72
|
|
@@ -73,61 +74,72 @@ Internet Explorer (10+) is only partially supported.
|
|
73
74
|
|
74
75
|
The documentation resides in the [docs](docs) directory, and is built with the Ruby-based [Jekyll](https://jekyllrb.com/) tool.
|
75
76
|
|
76
|
-
Browse the [online documentation here.](https://bulma.io/documentation/overview/
|
77
|
+
Browse the [online documentation here.](https://bulma.io/documentation/start/overview/)
|
77
78
|
|
78
79
|
## Related projects
|
79
80
|
|
80
|
-
| Project | Description
|
81
|
-
|
82
|
-
| [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors
|
83
|
-
| [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline
|
84
|
-
| [
|
85
|
-
| [
|
86
|
-
| [
|
87
|
-
| [
|
88
|
-
| [
|
89
|
-
| [
|
90
|
-
| [
|
91
|
-
| [
|
92
|
-
| [
|
93
|
-
| [
|
94
|
-
| [Bulma
|
95
|
-
| [Bulma
|
96
|
-
| [
|
97
|
-
| [elm-bulma
|
98
|
-
| [
|
99
|
-
| [
|
100
|
-
| [
|
101
|
-
| [
|
102
|
-
| [Bulma
|
103
|
-
| [
|
104
|
-
| [
|
105
|
-
| [
|
106
|
-
| [
|
107
|
-
| [
|
108
|
-
| [
|
109
|
-
| [bulma-
|
110
|
-
| [bulma-
|
111
|
-
| [
|
112
|
-
| [
|
113
|
-
| [
|
114
|
-
| [
|
115
|
-
| [
|
116
|
-
| [
|
117
|
-
| [
|
118
|
-
| [
|
119
|
-
| [
|
120
|
-
| [
|
121
|
-
| [
|
122
|
-
| [
|
123
|
-
| [Bulma
|
124
|
-
| [Bulma
|
125
|
-
| [
|
81
|
+
| Project | Description |
|
82
|
+
| ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- |
|
83
|
+
| [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors |
|
84
|
+
| [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline |
|
85
|
+
| [BulmaRazor](https://github.com/loogn/bulmarazor) | A lightweight component library based on Bulma and Blazor. |
|
86
|
+
| [Vue Admin (dead)](https://github.com/vue-bulma/vue-admin) | Vue Admin framework powered by Bulma |
|
87
|
+
| [Bulmaswatch](https://github.com/jenil/bulmaswatch) | Free themes for Bulma |
|
88
|
+
| [Goldfish (read-only)](https://github.com/Caiyeon/goldfish) | Vault UI with Bulma, Golang, and Vue Admin |
|
89
|
+
| [ember-bulma](https://github.com/open-tux/ember-bulma) | Ember addon providing a collection of UI components for Bulma |
|
90
|
+
| [Bloomer](https://bloomer.js.org) | A set of React components for Bulma |
|
91
|
+
| [React-bulma](https://github.com/kulakowka/react-bulma) | React.js components for Bulma |
|
92
|
+
| [Buefy](https://buefy.org/) | Lightweight UI components for Vue.js based on Bulma |
|
93
|
+
| [vue-bulma-components](https://github.com/vouill/vue-bulma-components) | Bulma components for Vue.js with straightforward syntax |
|
94
|
+
| [BulmaJS](https://github.com/VizuaaLOG/BulmaJS) | Javascript integration for Bulma. Written in ES6 with a data-\* API |
|
95
|
+
| [Bulma-modal-fx](https://github.com/postare/bulma-modal-fx) | A set of modal window effects with CSS transitions and animations for Bulma |
|
96
|
+
| [Bulma Stylus](https://github.com/groenroos/bulma-stylus) | Up-to-date 1:1 translation to Stylus |
|
97
|
+
| [Bulma.styl (read-only)](https://github.com/log1x/bulma.styl) | 1:1 Stylus translation of Bulma 0.6.11 |
|
98
|
+
| [elm-bulma](https://github.com/surprisetalk/elm-bulma) | Bulma + Elm |
|
99
|
+
| [elm-bulma-classes](https://github.com/ahstro/elm-bulma-classes) | Bulma classes prepared for usage with Elm |
|
100
|
+
| [Bulma Customizer](https://bulma-customizer.bstash.io/) | Bulma Customizer – Create your own **bespoke** Bulma build |
|
101
|
+
| [Fulma](https://fulma.github.io/Fulma/) | Wrapper around Bulma for [fable-react](https://github.com/fable-compiler/fable-react) |
|
102
|
+
| [Laravel Enso](https://github.com/laravel-enso/enso) | SPA Admin Panel built with Bulma, VueJS and Laravel |
|
103
|
+
| [Django Bulma](https://github.com/timonweb/django-bulma) | Integrates Bulma with Django |
|
104
|
+
| [Bulma Templates](https://github.com/dansup/bulma-templates) | Free Templates for Bulma |
|
105
|
+
| [React Bulma Components](https://github.com/couds/react-bulma-components) | Another React wrap on React for Bulma.io |
|
106
|
+
| [purescript-bulma](https://github.com/sectore/purescript-bulma) | PureScript bindings for Bulma |
|
107
|
+
| [Vue Datatable](https://github.com/laravel-enso/vuedatatable) | Bulma themed datatable based on Vue, Laravel & JSON templates |
|
108
|
+
| [bulma-fluent](https://mubaidr.github.io/bulma-fluent/) | Fluent Design Theme for Bulma inspired by Microsoft’s Fluent Design System |
|
109
|
+
| [csskrt-csskrt](https://github.com/4d11/csskrt-csskrt) | Automatically add Bulma classes to HTML files |
|
110
|
+
| [bulma-pagination-react](https://github.com/hipstersmoothie/bulma-pagination-react) | Bulma pagination as a react component |
|
111
|
+
| [bulma-helpers](https://github.com/jmaczan/bulma-helpers) | Functional / Atomic CSS classes for Bulma |
|
112
|
+
| [bulma-swatch-hook](https://github.com/hipstersmoothie/bulma-swatch-hook) | Bulma swatches as a react hook and a component |
|
113
|
+
| [BulmaWP (read-only)](https://github.com/tomhrtly/BulmaWP) | Starter WordPress theme for Bulma |
|
114
|
+
| [Ralma](https://github.com/aldi/ralma) | Stateless Ractive.js Components for Bulma |
|
115
|
+
| [Django Simple Bulma](https://github.com/python-discord/django-simple-bulma) | Lightweight integration of Bulma and Bulma-Extensions for your Django app |
|
116
|
+
| [rbx](https://dfee.github.io/rbx) | Comprehensive React UI Framework written in TypeScript |
|
117
|
+
| [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) | Free real-world Templates built with Bulma |
|
118
|
+
| [Trunx](https://github.com/fibo/trunx) | Super Saiyan React components, son of awesome Bulma |
|
119
|
+
| [@aybolit/bulma](https://github.com/web-padawan/aybolit/tree/master/packages/bulma) | Web Components library inspired by Bulma and Bulma-extensions |
|
120
|
+
| [Drulma](https://www.drupal.org/project/drulma) | Drupal theme for Bulma. |
|
121
|
+
| [Bulrush](https://github.com/textbook/bulrush) | A Bulma-based Python Pelican blog theme |
|
122
|
+
| [Bulma Variable Export](https://github.com/service-paradis/bulma-variables-export) | Access Bulma Variables in Javascript/Typescript in project using Webpack |
|
123
|
+
| [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
|
124
|
+
| [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
|
125
|
+
| [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
|
126
|
+
| [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
|
127
|
+
| [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
|
128
|
+
| [Blazorise](https://github.com/Megabit/Blazorise) | Blazor component library with the support for Bulma CSS framework |
|
129
|
+
| [Oruga-Bulma](https://github.com/oruga-ui/theme-bulma) | Bulma theme for [Oruga UI](https://oruga.io) |
|
130
|
+
| [@bulvar/bulma](https://github.com/daniil4udo/bulvar/tree/master/packages/bulma) | Bulma with [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) support |
|
131
|
+
| [@angular-bulma](https://quinnjr.github.io/angular-bulma) | [Angular](https://angular.io/) directives and components to use in your Bulma projects |
|
132
|
+
| [Bulma CSS Class Completion](https://github.com/eliutdev/bulma-css-class-completion) | CSS class name completion for the HTML class attribute based on Bulma CSS classes. |
|
133
|
+
| [Crispy-Bulma](https://github.com/ckrybus/crispy-bulma) | Bulma template pack for django-crispy-forms |
|
134
|
+
| [CASE](https://case.app) | CASE is Lightweight Backend-as-a-Service with essential features: DB, Admin panel, API, JS SDK |
|
135
|
+
| [Reactive Bulma](https://github.com/NicolasOmar/reactive-bulma) | A component library based on React, Bulma, Typescript and Rollup |
|
136
|
+
|
137
|
+
<p>Browser testing via <a href="https://www.lambdatest.com/" target="_blank"><img src="https://www.lambdatest.com/resources/images/logo-white.svg" style="vertical-align: middle;margin-left:5px" width="147" height="26" /></a></p>
|
126
138
|
|
127
139
|
## Copyright and license 
|
128
140
|
|
129
|
-
Code copyright
|
141
|
+
Code copyright 2023 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
|
130
142
|
|
131
143
|
[npm-link]: https://www.npmjs.com/package/bulma
|
132
|
-
[awesome-link]:
|
144
|
+
[awesome-link]: https://github.com/awesome-css-group/awesome-css
|
133
145
|
[awesome-badge]: https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg
|