bulma-clean-theme 1.0.2 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/cookie-banner.html +3 -3
- data/_includes/newsletter.html +12 -0
- data/_includes/review.html +2 -2
- data/_includes/tiktok.html +6 -0
- data/_layouts/product-category.html +5 -1
- data/_layouts/promo-page.html +105 -0
- data/_sass/_main.scss +1 -0
- data/_sass/_promo-page.scss +8 -0
- data/node_modules/.package-lock.json +3 -206
- data/node_modules/bulma/README.md +4 -2
- data/node_modules/bulma/bulma.scss +1 -1
- data/node_modules/bulma/css/bulma.css +1988 -2874
- data/node_modules/bulma/css/bulma.css.map +1 -1
- data/node_modules/bulma/css/bulma.min.css +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css +21550 -2
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -1
- data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
- data/node_modules/bulma/package.json +12 -11
- data/node_modules/bulma/sass/base/skeleton.scss +0 -12
- data/node_modules/bulma/sass/components/navbar.scss +41 -30
- data/node_modules/bulma/sass/components/panel.scss +2 -2
- data/node_modules/bulma/sass/elements/button.scss +9 -2
- data/node_modules/bulma/sass/elements/content.scss +8 -2
- data/node_modules/bulma/sass/form/checkbox-radio.scss +7 -3
- data/node_modules/bulma/sass/form/input-textarea.scss +0 -10
- data/node_modules/bulma/sass/form/select.scss +1 -0
- data/node_modules/bulma/sass/form/shared.scss +5 -1
- data/node_modules/bulma/sass/form/tools.scss +23 -12
- data/node_modules/bulma/sass/grid/columns.scss +109 -25
- data/node_modules/bulma/sass/grid/grid.scss +3 -3
- data/node_modules/bulma/sass/helpers/color.scss +166 -186
- data/node_modules/bulma/sass/layout/container.scss +16 -8
- data/node_modules/bulma/sass/layout/section.scss +4 -0
- data/node_modules/bulma/sass/themes/light.scss +1 -0
- data/node_modules/bulma/sass/utilities/css-variables.scss +3 -2
- data/node_modules/bulma/sass/utilities/functions.scss +2 -2
- data/node_modules/bulma/sass/utilities/initial-variables.scss +4 -4
- data/node_modules/bulma/sass/utilities/mixins.scss +1 -1
- data/node_modules/bulma/versions/bulma-no-dark-mode.scss +2 -1
- data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +1 -1
- data/node_modules/bulma/versions/bulma-no-helpers.scss +1 -1
- data/node_modules/bulma/versions/bulma-prefixed.scss +1 -1
- data/package-lock.json +6 -343
- metadata +13 -6
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css.map +0 -1
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map +0 -1
- data/node_modules/bulma/css/versions/bulma-no-helpers.min.css.map +0 -1
- data/node_modules/bulma/sass/grid/columns-v2.scss +0 -957
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6c905d58056c0dfc0de81708874e6aa097d2db641e86021f82040f14e400f36
|
4
|
+
data.tar.gz: 66f45fe696f79c466ef1f46cc6366294ce2d5139160799b627aba46c782c703d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3683d887217304a6fd70ff6a179c9a26d38bfc597aef62aae156aef8311109dd2d833031120601503535419f1e2e0ed76d60f06610e4a4dd85d016b56bb92361
|
7
|
+
data.tar.gz: 5c6de3bd7969086649282f6c6f062759a900503214ec2d6283aff25f2bc6569dfbe23e49f8ad135e3565bf5833ec5944d22db9d05028b6cf9947207b07d9ed04
|
@@ -23,13 +23,13 @@
|
|
23
23
|
{% if site.google_analytics %}
|
24
24
|
consentGrantedAdStorage();
|
25
25
|
{% endif %}
|
26
|
-
Cookies.set('showCookieBanner', 'false', { expires:
|
27
|
-
Cookies.set('cookiesAccepted', 'true', {expires:
|
26
|
+
Cookies.set('showCookieBanner', 'false', { expires: 365, path: '/' });
|
27
|
+
Cookies.set('cookiesAccepted', 'true', {expires: 365, path: '/'});
|
28
28
|
toggleCookieBanner();
|
29
29
|
}
|
30
30
|
|
31
31
|
function rejectCookies() {
|
32
|
-
Cookies.set('showCookieBanner', 'false', { expires:
|
32
|
+
Cookies.set('showCookieBanner', 'false', { expires: 365, path: '/' });
|
33
33
|
toggleCookieBanner();
|
34
34
|
}
|
35
35
|
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<h2 class="title mb-4 has-text-centered">Subscribe to the newsletter</h2>
|
2
|
+
<form>
|
3
|
+
<label class="label">Email</label>
|
4
|
+
<div class="field has-addons">
|
5
|
+
<div class="control is-expanded">
|
6
|
+
<input class="input is-medium" type="text" type="email">
|
7
|
+
</div>
|
8
|
+
<div class="control">
|
9
|
+
<button class="button is-medium is-primary">Submit</button>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
</form>
|
data/_includes/review.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
<figure class="media-left">
|
3
3
|
{% if review.avatar %}
|
4
4
|
<p class="image is-48x48">
|
5
|
-
<img src="
|
5
|
+
<img src="{{ review.avatar }}" alt="{{ review.name }}" class="is-rounded">
|
6
6
|
</p>
|
7
7
|
{% else %}
|
8
8
|
<div class="icon is-large">
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<p>
|
16
16
|
<strong>{{ review.name }}</strong> <small>{{ review.date }}</small>
|
17
17
|
<br>
|
18
|
-
{{ review.title }}
|
18
|
+
<strong>{{ review.title }}</strong>
|
19
19
|
<br>
|
20
20
|
{{ review.description }}
|
21
21
|
</p>
|
@@ -7,7 +7,11 @@ show_sidebar: false
|
|
7
7
|
{{ page.content }}
|
8
8
|
</div>
|
9
9
|
|
10
|
-
{%
|
10
|
+
{% if page.collection %}
|
11
|
+
{% assign sorted_products = site.[page.collection] | sort: page.sort %}
|
12
|
+
{% else %}
|
13
|
+
{% assign sorted_products = site.products | sort: page.sort %}
|
14
|
+
{% endif %}
|
11
15
|
|
12
16
|
{% for product in sorted_products %}
|
13
17
|
<div class="column is-4-desktop is-6-tablet">
|
@@ -0,0 +1,105 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html
|
3
|
+
dir="{{ site.direction | default: 'ltr' }}"
|
4
|
+
lang="{{ site.lang | default: 'en' }}"
|
5
|
+
class="{% if site.fixed_navbar %} has-navbar-fixed-{{ site.fixed_navbar }} {% endif %} {% if site.force_theme %} theme-{{ site.force_theme }} {% endif %}"
|
6
|
+
>
|
7
|
+
{% include head.html %}
|
8
|
+
<body>
|
9
|
+
{% if site.cookie_policy %}
|
10
|
+
{% include cookie-banner.html %}
|
11
|
+
{% endif %}
|
12
|
+
{% include header.html %}
|
13
|
+
<section class="hero hero-banner is-primary">
|
14
|
+
<div class="hero-body">
|
15
|
+
<div class="container">
|
16
|
+
<div class="columns is-centered">
|
17
|
+
<div class="column is-6-tablet is-6-desktop">
|
18
|
+
<h1 class="title is-1">{{ page.title }}</h1>
|
19
|
+
{% if page.subtitle %}
|
20
|
+
<p class="subtitle is-1">{{ page.subtitle }}</p>
|
21
|
+
{% endif %}
|
22
|
+
|
23
|
+
<div class="card mt-6">
|
24
|
+
<div class="card-content">
|
25
|
+
<div class="content">
|
26
|
+
{{ page.snippet | markdownify }}
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
<div class="card-footer">
|
30
|
+
{% if page.hero_link %}
|
31
|
+
<div class="card-footer-item">
|
32
|
+
<a href="{{ page.hero_link }}" class="button is-large is-primary">
|
33
|
+
{{- page.hero_link_text -}}
|
34
|
+
</a>
|
35
|
+
</div>
|
36
|
+
{% endif %}
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
<div class="column is-6-tablet is-6-desktop is-relative">
|
41
|
+
<figure class="image {{ page.hero_image_ratio | default: 'is-4by3' }}">
|
42
|
+
<img src="{{ page.hero_image }}" alt="{{ page.hero_image_alt }}">
|
43
|
+
</figure>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
</section>
|
49
|
+
{% if site.data.reviews[page.product_code] %}
|
50
|
+
<section class="section mt-6">
|
51
|
+
<div class="container">
|
52
|
+
<div class="columns is-centered is-multiline">
|
53
|
+
<div class="column is-full">
|
54
|
+
<h2 class="title is-3 mb-3 has-text-centered">Reviews</h2>
|
55
|
+
</div>
|
56
|
+
{% for review in site.data.reviews[page.product_code] %}
|
57
|
+
<div class="column is-4-desktop is-6-tablet">
|
58
|
+
<div class="card">
|
59
|
+
<div class="card-content">
|
60
|
+
{% include review.html %}
|
61
|
+
</div>
|
62
|
+
</div>
|
63
|
+
</div>
|
64
|
+
{% endfor %}
|
65
|
+
</div>
|
66
|
+
</div>
|
67
|
+
</section>
|
68
|
+
{% endif %}
|
69
|
+
<section class="hero is-light mt-6">
|
70
|
+
<div class="hero-body">
|
71
|
+
<div class="container">
|
72
|
+
<div class="columns is-centered">
|
73
|
+
<div class="column is-6">
|
74
|
+
{% include newsletter.html %}
|
75
|
+
</div>
|
76
|
+
</div>
|
77
|
+
</div>
|
78
|
+
</div>
|
79
|
+
</section>
|
80
|
+
<section class="section my-6">
|
81
|
+
<div class="container">
|
82
|
+
<div class="columns is-multiline is-centered">
|
83
|
+
<div class="column is-full">
|
84
|
+
<h2 class="title is-3 mb-3 has-text-centered">{{ page.about_title }}</h2>
|
85
|
+
</div>
|
86
|
+
<div class="column is-4-tablet is-3-desktop">
|
87
|
+
<figure class="image is-square">
|
88
|
+
<img class="is-rounded" src="{{ page.about_image }}" alt="{{ page.about_image_alt }}">
|
89
|
+
</figure>
|
90
|
+
</div>
|
91
|
+
<div class="column is-8-tablet is-6-desktop">
|
92
|
+
<div class="content">
|
93
|
+
{{ content }}
|
94
|
+
</div>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
</div>
|
98
|
+
</section>
|
99
|
+
{% unless page.hide_footer %}
|
100
|
+
{% include footer.html %}
|
101
|
+
{% endunless %}
|
102
|
+
<script src="{{ site.baseurl }}/assets/js/app.js" type="text/javascript"></script>
|
103
|
+
{%- include footer-scripts.html -%}
|
104
|
+
</body>
|
105
|
+
</html>
|
data/_sass/_main.scss
CHANGED
@@ -4,213 +4,10 @@
|
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
|
-
"node_modules/anymatch": {
|
8
|
-
"version": "3.1.3",
|
9
|
-
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
10
|
-
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
11
|
-
"dependencies": {
|
12
|
-
"normalize-path": "^3.0.0",
|
13
|
-
"picomatch": "^2.0.4"
|
14
|
-
},
|
15
|
-
"engines": {
|
16
|
-
"node": ">= 8"
|
17
|
-
}
|
18
|
-
},
|
19
|
-
"node_modules/binary-extensions": {
|
20
|
-
"version": "2.3.0",
|
21
|
-
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
22
|
-
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
23
|
-
"engines": {
|
24
|
-
"node": ">=8"
|
25
|
-
},
|
26
|
-
"funding": {
|
27
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
28
|
-
}
|
29
|
-
},
|
30
|
-
"node_modules/braces": {
|
31
|
-
"version": "3.0.2",
|
32
|
-
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
33
|
-
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
34
|
-
"dependencies": {
|
35
|
-
"fill-range": "^7.0.1"
|
36
|
-
},
|
37
|
-
"engines": {
|
38
|
-
"node": ">=8"
|
39
|
-
}
|
40
|
-
},
|
41
7
|
"node_modules/bulma": {
|
42
|
-
"version": "1.0.
|
43
|
-
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.
|
44
|
-
"integrity": "sha512-
|
45
|
-
"dependencies": {
|
46
|
-
"sass": "^1.71.1"
|
47
|
-
}
|
48
|
-
},
|
49
|
-
"node_modules/chokidar": {
|
50
|
-
"version": "3.6.0",
|
51
|
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
52
|
-
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
53
|
-
"dependencies": {
|
54
|
-
"anymatch": "~3.1.2",
|
55
|
-
"braces": "~3.0.2",
|
56
|
-
"glob-parent": "~5.1.2",
|
57
|
-
"is-binary-path": "~2.1.0",
|
58
|
-
"is-glob": "~4.0.1",
|
59
|
-
"normalize-path": "~3.0.0",
|
60
|
-
"readdirp": "~3.6.0"
|
61
|
-
},
|
62
|
-
"engines": {
|
63
|
-
"node": ">= 8.10.0"
|
64
|
-
},
|
65
|
-
"funding": {
|
66
|
-
"url": "https://paulmillr.com/funding/"
|
67
|
-
},
|
68
|
-
"optionalDependencies": {
|
69
|
-
"fsevents": "~2.3.2"
|
70
|
-
}
|
71
|
-
},
|
72
|
-
"node_modules/fill-range": {
|
73
|
-
"version": "7.0.1",
|
74
|
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
75
|
-
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
76
|
-
"dependencies": {
|
77
|
-
"to-regex-range": "^5.0.1"
|
78
|
-
},
|
79
|
-
"engines": {
|
80
|
-
"node": ">=8"
|
81
|
-
}
|
82
|
-
},
|
83
|
-
"node_modules/fsevents": {
|
84
|
-
"version": "2.3.3",
|
85
|
-
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
86
|
-
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
87
|
-
"hasInstallScript": true,
|
88
|
-
"optional": true,
|
89
|
-
"os": [
|
90
|
-
"darwin"
|
91
|
-
],
|
92
|
-
"engines": {
|
93
|
-
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
94
|
-
}
|
95
|
-
},
|
96
|
-
"node_modules/glob-parent": {
|
97
|
-
"version": "5.1.2",
|
98
|
-
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
99
|
-
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
100
|
-
"dependencies": {
|
101
|
-
"is-glob": "^4.0.1"
|
102
|
-
},
|
103
|
-
"engines": {
|
104
|
-
"node": ">= 6"
|
105
|
-
}
|
106
|
-
},
|
107
|
-
"node_modules/immutable": {
|
108
|
-
"version": "4.3.5",
|
109
|
-
"resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz",
|
110
|
-
"integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw=="
|
111
|
-
},
|
112
|
-
"node_modules/is-binary-path": {
|
113
|
-
"version": "2.1.0",
|
114
|
-
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
115
|
-
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
116
|
-
"dependencies": {
|
117
|
-
"binary-extensions": "^2.0.0"
|
118
|
-
},
|
119
|
-
"engines": {
|
120
|
-
"node": ">=8"
|
121
|
-
}
|
122
|
-
},
|
123
|
-
"node_modules/is-extglob": {
|
124
|
-
"version": "2.1.1",
|
125
|
-
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
126
|
-
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
127
|
-
"engines": {
|
128
|
-
"node": ">=0.10.0"
|
129
|
-
}
|
130
|
-
},
|
131
|
-
"node_modules/is-glob": {
|
132
|
-
"version": "4.0.3",
|
133
|
-
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
134
|
-
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
135
|
-
"dependencies": {
|
136
|
-
"is-extglob": "^2.1.1"
|
137
|
-
},
|
138
|
-
"engines": {
|
139
|
-
"node": ">=0.10.0"
|
140
|
-
}
|
141
|
-
},
|
142
|
-
"node_modules/is-number": {
|
143
|
-
"version": "7.0.0",
|
144
|
-
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
145
|
-
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
146
|
-
"engines": {
|
147
|
-
"node": ">=0.12.0"
|
148
|
-
}
|
149
|
-
},
|
150
|
-
"node_modules/normalize-path": {
|
151
|
-
"version": "3.0.0",
|
152
|
-
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
153
|
-
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
154
|
-
"engines": {
|
155
|
-
"node": ">=0.10.0"
|
156
|
-
}
|
157
|
-
},
|
158
|
-
"node_modules/picomatch": {
|
159
|
-
"version": "2.3.1",
|
160
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
161
|
-
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
162
|
-
"engines": {
|
163
|
-
"node": ">=8.6"
|
164
|
-
},
|
165
|
-
"funding": {
|
166
|
-
"url": "https://github.com/sponsors/jonschlinkert"
|
167
|
-
}
|
168
|
-
},
|
169
|
-
"node_modules/readdirp": {
|
170
|
-
"version": "3.6.0",
|
171
|
-
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
172
|
-
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
173
|
-
"dependencies": {
|
174
|
-
"picomatch": "^2.2.1"
|
175
|
-
},
|
176
|
-
"engines": {
|
177
|
-
"node": ">=8.10.0"
|
178
|
-
}
|
179
|
-
},
|
180
|
-
"node_modules/sass": {
|
181
|
-
"version": "1.76.0",
|
182
|
-
"resolved": "https://registry.npmjs.org/sass/-/sass-1.76.0.tgz",
|
183
|
-
"integrity": "sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==",
|
184
|
-
"dependencies": {
|
185
|
-
"chokidar": ">=3.0.0 <4.0.0",
|
186
|
-
"immutable": "^4.0.0",
|
187
|
-
"source-map-js": ">=0.6.2 <2.0.0"
|
188
|
-
},
|
189
|
-
"bin": {
|
190
|
-
"sass": "sass.js"
|
191
|
-
},
|
192
|
-
"engines": {
|
193
|
-
"node": ">=14.0.0"
|
194
|
-
}
|
195
|
-
},
|
196
|
-
"node_modules/source-map-js": {
|
197
|
-
"version": "1.2.0",
|
198
|
-
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
|
199
|
-
"integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
|
200
|
-
"engines": {
|
201
|
-
"node": ">=0.10.0"
|
202
|
-
}
|
203
|
-
},
|
204
|
-
"node_modules/to-regex-range": {
|
205
|
-
"version": "5.0.1",
|
206
|
-
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
207
|
-
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
208
|
-
"dependencies": {
|
209
|
-
"is-number": "^7.0.0"
|
210
|
-
},
|
211
|
-
"engines": {
|
212
|
-
"node": ">=8.0"
|
213
|
-
}
|
8
|
+
"version": "1.0.2",
|
9
|
+
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.2.tgz",
|
10
|
+
"integrity": "sha512-D7GnDuF6seb6HkcnRMM9E739QpEY9chDzzeFrHMyEns/EXyDJuQ0XA0KxbBl/B2NTsKSoDomW61jFGFaAxhK5A=="
|
214
11
|
}
|
215
12
|
}
|
216
13
|
}
|
@@ -54,7 +54,7 @@ Feel free to raise an issue or submit a pull request.
|
|
54
54
|
|
55
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)
|
56
56
|
|
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/
|
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).
|
58
58
|
|
59
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.
|
60
60
|
|
@@ -74,7 +74,7 @@ Internet Explorer (10+) is only partially supported.
|
|
74
74
|
|
75
75
|
The documentation resides in the [docs](docs) directory, and is built with the Ruby-based [Jekyll](https://jekyllrb.com/) tool.
|
76
76
|
|
77
|
-
Browse the [online documentation here.](https://bulma.io/documentation/overview/
|
77
|
+
Browse the [online documentation here.](https://bulma.io/documentation/start/overview/)
|
78
78
|
|
79
79
|
## Related projects
|
80
80
|
|
@@ -134,6 +134,8 @@ Browse the [online documentation here.](https://bulma.io/documentation/overview/
|
|
134
134
|
| [CASE](https://case.app) | CASE is Lightweight Backend-as-a-Service with essential features: DB, Admin panel, API, JS SDK |
|
135
135
|
| [Reactive Bulma](https://github.com/NicolasOmar/reactive-bulma) | A component library based on React, Bulma, Typescript and Rollup |
|
136
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>
|
138
|
+
|
137
139
|
## Copyright and license ![Github](https://img.shields.io/github/license/jgthms/bulma?logo=Github)
|
138
140
|
|
139
141
|
Code copyright 2023 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
|