create-berna-stencil 1.0.51 → 1.0.53
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.
- package/.eleventy.js +1 -1
- package/_tools/assistant.js +94 -83
- package/_tools/modules/updateData.js +79 -15
- package/_tools/modules/updateIncludes.js +51 -18
- package/_tools/modules/updateOutputPath.js +34 -25
- package/_tools/modules/updatePage.js +45 -39
- package/_tools/modules/utils.js +12 -0
- package/docs/Assistant CLI.md +45 -22
- package/docs/Backend.md +210 -0
- package/docs/Head and SEO.md +2 -2
- package/docs/Javascript.md +40 -24
- package/docs/Styling with SCSS.md +53 -53
- package/package.json +6 -6
- package/src/frontend/js/modules/forms/textAreaAutoExpand.js +2 -2
- package/src/frontend/scss/modules/frameworks/_bootstrap.scss +66 -66
- package/src/frontend/scss/modules/frameworks/_bulma.scss +65 -65
- package/src/frontend/scss/modules/frameworks/_foundation.scss +98 -98
- package/src/frontend/scss/modules/frameworks/_uikit.scss +79 -79
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-berna-stencil",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.53",
|
|
4
4
|
"description": "Eleventy boilerplate with per-page SCSS/JS pipeline, esbuild bundling, multi-framework CSS support and a built-in page management CLI",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Michele Garofalo",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"sass": "^1.77.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
|
-
"build:css": "sass src/frontend/scss:out/css --no-source-map --style=compressed --quiet
|
|
48
|
-
"build:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=out/js/pages --minify",
|
|
47
|
+
"build:css": "sass src/frontend/scss:c:/laragon/www/Berna-Stencil-out/css --no-source-map --style=compressed --quiet",
|
|
48
|
+
"build:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=c:/laragon/www/Berna-Stencil-out/js/pages --minify",
|
|
49
49
|
"build:11ty": "eleventy",
|
|
50
|
-
"build": "npm run build:css && npm run build:js && npm run build:11ty",
|
|
51
|
-
"serve:css": "sass --watch src/frontend/scss:out/css --no-source-map --quiet
|
|
52
|
-
"serve:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=out/js/pages --watch",
|
|
50
|
+
"build": "npm run clean && npm run build:css && npm run build:js && npm run build:11ty",
|
|
51
|
+
"serve:css": "sass --watch src/frontend/scss:c:/laragon/www/Berna-Stencil-out/css --no-source-map --quiet",
|
|
52
|
+
"serve:js": "esbuild \"src/frontend/js/pages/*.js\" --bundle --outdir=c:/laragon/www/Berna-Stencil-out/js/pages --watch",
|
|
53
53
|
"serve:11ty": "eleventy --serve --quiet",
|
|
54
54
|
"clean": "node _tools/cleanOutput.js",
|
|
55
55
|
"serve": "npm run clean && concurrently \"npm run serve:11ty\" \"npm run serve:css\" \"npm run serve:js\"",
|
|
@@ -14,14 +14,14 @@ export function initTextAreaAutoExpand() {
|
|
|
14
14
|
element.addEventListener("input", () => expand(element));
|
|
15
15
|
if (element.value) expand(element);
|
|
16
16
|
}
|
|
17
|
-
|
|
17
|
+
|
|
18
18
|
function expand(element) {
|
|
19
19
|
element.rows = element.dataset.minRows;
|
|
20
20
|
while (element.scrollHeight > element.clientHeight && element.rows < MAX_ROWS) {
|
|
21
21
|
element.rows += 1;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
document.querySelectorAll("textarea").forEach(setup);
|
|
26
26
|
|
|
27
27
|
const observer = new MutationObserver((mutations) => {
|
|
@@ -1,110 +1,110 @@
|
|
|
1
1
|
// ╔══════════════════════════════════════════════════════╗
|
|
2
|
-
// ║ BOOTSTRAP MODULES ║
|
|
2
|
+
// ║ ../../../../../node_modules/BOOTSTRAP MODULES ║
|
|
3
3
|
// ║ Comment out any module you don't need to improve ║
|
|
4
4
|
// ║ performance. Core section is required by all others ║
|
|
5
5
|
// ╚══════════════════════════════════════════════════════╝
|
|
6
6
|
|
|
7
7
|
// Imports can be filtered by commenting them
|
|
8
8
|
// Example:
|
|
9
|
-
// @import "bootstrap/scss/example
|
|
9
|
+
// @import "../../../../../node_modules/bootstrap/scss/example-../../../../../node_modules/bootstrap-module";
|
|
10
10
|
|
|
11
11
|
//==========================
|
|
12
12
|
// 1️⃣ CORE – Functions and variables
|
|
13
13
|
// ⚠️ Do not comment these out — required by all other modules
|
|
14
14
|
//==========================
|
|
15
|
-
@import "bootstrap/scss/functions"; // Bootstrap SCSS functions
|
|
16
|
-
@import "bootstrap/scss/variables"; // Core variables (colors, spacing, fonts)
|
|
17
|
-
@import "bootstrap/scss/variables-dark"; // Dark theme variables
|
|
18
|
-
@import "bootstrap/scss/maps"; // Maps for spacing, colors, breakpoints
|
|
19
|
-
@import "bootstrap/scss/mixins"; // Reusable SCSS mixins
|
|
20
|
-
@import "bootstrap/scss/utilities"; // Utility helpers
|
|
21
|
-
@import "bootstrap/scss/root"; // Root CSS (custom properties)
|
|
22
|
-
@import "bootstrap/scss/placeholders"; // Placeholder selectors
|
|
15
|
+
@import "../../../../../node_modules/bootstrap/scss/functions"; // ../../../../../node_modules/Bootstrap SCSS functions
|
|
16
|
+
@import "../../../../../node_modules/bootstrap/scss/variables"; // Core variables (colors, spacing, fonts)
|
|
17
|
+
@import "../../../../../node_modules/bootstrap/scss/variables-dark"; // Dark theme variables
|
|
18
|
+
@import "../../../../../node_modules/bootstrap/scss/maps"; // Maps for spacing, colors, breakpoints
|
|
19
|
+
@import "../../../../../node_modules/bootstrap/scss/mixins"; // Reusable SCSS mixins
|
|
20
|
+
@import "../../../../../node_modules/bootstrap/scss/utilities"; // Utility helpers
|
|
21
|
+
@import "../../../../../node_modules/bootstrap/scss/root"; // Root CSS (custom properties)
|
|
22
|
+
@import "../../../../../node_modules/bootstrap/scss/placeholders"; // Placeholder selectors
|
|
23
23
|
|
|
24
24
|
//==========================
|
|
25
25
|
// 2️⃣ VENDOR
|
|
26
26
|
//==========================
|
|
27
|
-
@import "bootstrap/scss/vendor/rfs"; // Responsive font sizes
|
|
27
|
+
@import "../../../../../node_modules/bootstrap/scss/vendor/rfs"; // Responsive font sizes
|
|
28
28
|
|
|
29
29
|
//==========================
|
|
30
30
|
// 3️⃣ BASE – Base styles
|
|
31
31
|
//==========================
|
|
32
|
-
@import "bootstrap/scss/reboot"; // CSS reset / normalize
|
|
33
|
-
@import "bootstrap/scss/type"; // Typography (headings, paragraphs)
|
|
34
|
-
@import "bootstrap/scss/images"; // Image styles
|
|
35
|
-
@import "bootstrap/scss/containers"; // Containers
|
|
36
|
-
@import "bootstrap/scss/transitions"; // CSS transitions
|
|
32
|
+
@import "../../../../../node_modules/bootstrap/scss/reboot"; // CSS reset / normalize
|
|
33
|
+
@import "../../../../../node_modules/bootstrap/scss/type"; // Typography (headings, paragraphs)
|
|
34
|
+
@import "../../../../../node_modules/bootstrap/scss/images"; // Image styles
|
|
35
|
+
@import "../../../../../node_modules/bootstrap/scss/containers"; // Containers
|
|
36
|
+
@import "../../../../../node_modules/bootstrap/scss/transitions"; // CSS transitions
|
|
37
37
|
|
|
38
38
|
//==========================
|
|
39
39
|
// 4️⃣ LAYOUT – Layout helpers
|
|
40
40
|
//==========================
|
|
41
|
-
@import "bootstrap/scss/grid"; // Grid system
|
|
42
|
-
@import "bootstrap/scss/helpers"; // Helper classes
|
|
41
|
+
@import "../../../../../node_modules/bootstrap/scss/grid"; // Grid system
|
|
42
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers"; // Helper classes
|
|
43
43
|
|
|
44
44
|
//==========================
|
|
45
45
|
// 5️⃣ HELPERS – Sub-modules
|
|
46
46
|
//==========================
|
|
47
|
-
@import "bootstrap/scss/helpers/clearfix"; // Clearfix
|
|
48
|
-
@import "bootstrap/scss/helpers/color-bg"; // Color background
|
|
49
|
-
@import "bootstrap/scss/helpers/colored-links"; // Colored links
|
|
50
|
-
@import "bootstrap/scss/helpers/focus-ring"; // Focus ring
|
|
51
|
-
@import "bootstrap/scss/helpers/icon-link"; // Icon links
|
|
52
|
-
@import "bootstrap/scss/helpers/position"; // Position helpers
|
|
53
|
-
@import "bootstrap/scss/helpers/ratio"; // Aspect ratio
|
|
54
|
-
@import "bootstrap/scss/helpers/stacks"; // Stack helpers
|
|
55
|
-
@import "bootstrap/scss/helpers/stretched-link"; // Stretched link
|
|
56
|
-
@import "bootstrap/scss/helpers/text-truncation"; // Text truncation
|
|
57
|
-
@import "bootstrap/scss/helpers/visually-hidden"; // Visually hidden
|
|
58
|
-
@import "bootstrap/scss/helpers/vr"; // Vertical rule
|
|
47
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/clearfix"; // Clearfix
|
|
48
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/color-bg"; // Color background
|
|
49
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/colored-links"; // Colored links
|
|
50
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/focus-ring"; // Focus ring
|
|
51
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/icon-link"; // Icon links
|
|
52
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/position"; // Position helpers
|
|
53
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/ratio"; // Aspect ratio
|
|
54
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/stacks"; // Stack helpers
|
|
55
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/stretched-link"; // Stretched link
|
|
56
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/text-truncation"; // Text truncation
|
|
57
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/visually-hidden"; // Visually hidden
|
|
58
|
+
@import "../../../../../node_modules/bootstrap/scss/helpers/vr"; // Vertical rule
|
|
59
59
|
|
|
60
60
|
//==========================
|
|
61
61
|
// 6️⃣ UTILITIES – Sub-modules
|
|
62
62
|
//==========================
|
|
63
|
-
@import "bootstrap/scss/utilities/api"; // Utilities API
|
|
63
|
+
@import "../../../../../node_modules/bootstrap/scss/utilities/api"; // Utilities API
|
|
64
64
|
|
|
65
65
|
//==========================
|
|
66
66
|
// 7️⃣ FORMS – Sub-modules
|
|
67
67
|
//==========================
|
|
68
|
-
@import "bootstrap/scss/forms"; // Forms loader
|
|
69
|
-
@import "bootstrap/scss/forms/labels"; // Labels
|
|
70
|
-
@import "bootstrap/scss/forms/form-text"; // Form text
|
|
71
|
-
@import "bootstrap/scss/forms/form-control"; // Inputs and textareas
|
|
72
|
-
@import "bootstrap/scss/forms/form-select"; // Select dropdowns
|
|
73
|
-
@import "bootstrap/scss/forms/form-check"; // Checkboxes and radios
|
|
74
|
-
@import "bootstrap/scss/forms/form-range"; // Range sliders
|
|
75
|
-
@import "bootstrap/scss/forms/floating-labels"; // Floating labels
|
|
76
|
-
@import "bootstrap/scss/forms/input-group"; // Input groups
|
|
77
|
-
@import "bootstrap/scss/forms/validation"; // Validation states
|
|
68
|
+
@import "../../../../../node_modules/bootstrap/scss/forms"; // Forms loader
|
|
69
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/labels"; // Labels
|
|
70
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/form-text"; // Form text
|
|
71
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/form-control"; // Inputs and textareas
|
|
72
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/form-select"; // Select dropdowns
|
|
73
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/form-check"; // Checkboxes and radios
|
|
74
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/form-range"; // Range sliders
|
|
75
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/floating-labels"; // Floating labels
|
|
76
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/input-group"; // Input groups
|
|
77
|
+
@import "../../../../../node_modules/bootstrap/scss/forms/validation"; // Validation states
|
|
78
78
|
|
|
79
79
|
//==========================
|
|
80
|
-
// 8️⃣ COMPONENTS – All Bootstrap components
|
|
81
|
-
//==========================
|
|
82
|
-
@import "bootstrap/scss/alert"; // Alerts
|
|
83
|
-
@import "bootstrap/scss/badge"; // Badges
|
|
84
|
-
@import "bootstrap/scss/breadcrumb"; // Breadcrumbs
|
|
85
|
-
@import "bootstrap/scss/buttons"; // Buttons
|
|
86
|
-
@import "bootstrap/scss/button-group"; // Button groups
|
|
87
|
-
@import "bootstrap/scss/card"; // Cards
|
|
88
|
-
@import "bootstrap/scss/carousel"; // Carousel
|
|
89
|
-
@import "bootstrap/scss/close"; // Close (×) button
|
|
90
|
-
@import "bootstrap/scss/dropdown"; // Dropdowns
|
|
91
|
-
@import "bootstrap/scss/list-group"; // List groups
|
|
92
|
-
@import "bootstrap/scss/modal"; // Modals
|
|
93
|
-
@import "bootstrap/scss/nav"; // Nav
|
|
94
|
-
@import "bootstrap/scss/navbar"; // Navbar
|
|
95
|
-
@import "bootstrap/scss/offcanvas"; // Offcanvas component
|
|
96
|
-
@import "bootstrap/scss/pagination"; // Pagination
|
|
97
|
-
@import "bootstrap/scss/popover"; // Popovers
|
|
98
|
-
@import "bootstrap/scss/progress"; // Progress bars
|
|
99
|
-
@import "bootstrap/scss/spinners"; // Spinners
|
|
100
|
-
@import "bootstrap/scss/toasts"; // Toasts
|
|
101
|
-
@import "bootstrap/scss/tooltip"; // Tooltips
|
|
102
|
-
@import "bootstrap/scss/accordion"; // Accordion
|
|
103
|
-
@import "bootstrap/scss/tables"; // Tables
|
|
80
|
+
// 8️⃣ COMPONENTS – All ../../../../../node_modules/Bootstrap components
|
|
81
|
+
//==========================
|
|
82
|
+
@import "../../../../../node_modules/bootstrap/scss/alert"; // Alerts
|
|
83
|
+
@import "../../../../../node_modules/bootstrap/scss/badge"; // Badges
|
|
84
|
+
@import "../../../../../node_modules/bootstrap/scss/breadcrumb"; // Breadcrumbs
|
|
85
|
+
@import "../../../../../node_modules/bootstrap/scss/buttons"; // Buttons
|
|
86
|
+
@import "../../../../../node_modules/bootstrap/scss/button-group"; // Button groups
|
|
87
|
+
@import "../../../../../node_modules/bootstrap/scss/card"; // Cards
|
|
88
|
+
@import "../../../../../node_modules/bootstrap/scss/carousel"; // Carousel
|
|
89
|
+
@import "../../../../../node_modules/bootstrap/scss/close"; // Close (×) button
|
|
90
|
+
@import "../../../../../node_modules/bootstrap/scss/dropdown"; // Dropdowns
|
|
91
|
+
@import "../../../../../node_modules/bootstrap/scss/list-group"; // List groups
|
|
92
|
+
@import "../../../../../node_modules/bootstrap/scss/modal"; // Modals
|
|
93
|
+
@import "../../../../../node_modules/bootstrap/scss/nav"; // Nav
|
|
94
|
+
@import "../../../../../node_modules/bootstrap/scss/navbar"; // Navbar
|
|
95
|
+
@import "../../../../../node_modules/bootstrap/scss/offcanvas"; // Offcanvas component
|
|
96
|
+
@import "../../../../../node_modules/bootstrap/scss/pagination"; // Pagination
|
|
97
|
+
@import "../../../../../node_modules/bootstrap/scss/popover"; // Popovers
|
|
98
|
+
@import "../../../../../node_modules/bootstrap/scss/progress"; // Progress bars
|
|
99
|
+
@import "../../../../../node_modules/bootstrap/scss/spinners"; // Spinners
|
|
100
|
+
@import "../../../../../node_modules/bootstrap/scss/toasts"; // Toasts
|
|
101
|
+
@import "../../../../../node_modules/bootstrap/scss/tooltip"; // Tooltips
|
|
102
|
+
@import "../../../../../node_modules/bootstrap/scss/accordion"; // Accordion
|
|
103
|
+
@import "../../../../../node_modules/bootstrap/scss/tables"; // Tables
|
|
104
104
|
|
|
105
105
|
//==========================
|
|
106
106
|
// 9️⃣ ICONS
|
|
107
107
|
//==========================
|
|
108
108
|
$bootstrap-icons-font-src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
|
|
109
109
|
url("../fonts/bootstrap-icons.woff") format("woff");
|
|
110
|
-
@import "bootstrap-icons/font/bootstrap-icons";
|
|
110
|
+
@import "../../../../../node_modules/bootstrap-icons/font/bootstrap-icons";
|
|
@@ -1,109 +1,109 @@
|
|
|
1
1
|
// ╔══════════════════════════════════════════════════════╗
|
|
2
|
-
// ║ BULMA MODULES ║
|
|
2
|
+
// ║ ../../../../../node_modules/BULMA MODULES ║
|
|
3
3
|
// ║ Comment out any module you don't need to improve ║
|
|
4
4
|
// ║ performance. Core section is required by all others ║
|
|
5
5
|
// ╚══════════════════════════════════════════════════════╝
|
|
6
6
|
|
|
7
7
|
// Imports can be filtered by commenting them
|
|
8
8
|
// Example:
|
|
9
|
-
// @import "bulma/sass/example
|
|
9
|
+
// @import "../../../../../node_modules/bulma/sass/example-../../../../../node_modules/bulma-module";
|
|
10
10
|
|
|
11
11
|
//==========================
|
|
12
12
|
// 1️⃣ CORE – Utilities and variables
|
|
13
13
|
// ⚠️ Do not comment these out — required by all other modules
|
|
14
14
|
//==========================
|
|
15
|
-
@import "bulma/sass/utilities/initial-variables"; // Base variables (colors, sizes, fonts)
|
|
16
|
-
@import "bulma/sass/utilities/functions"; // SCSS functions
|
|
17
|
-
@import "bulma/sass/utilities/derived-variables"; // Variables derived from initial ones
|
|
18
|
-
@import "bulma/sass/utilities/css-variables"; // CSS custom properties
|
|
19
|
-
@import "bulma/sass/utilities/controls"; // Control base styles (inputs, buttons)
|
|
20
|
-
@import "bulma/sass/utilities/extends"; // Shared extends
|
|
21
|
-
@import "bulma/sass/utilities/mixins"; // Reusable SCSS mixins
|
|
15
|
+
@import "../../../../../node_modules/bulma/sass/utilities/initial-variables"; // Base variables (colors, sizes, fonts)
|
|
16
|
+
@import "../../../../../node_modules/bulma/sass/utilities/functions"; // SCSS functions
|
|
17
|
+
@import "../../../../../node_modules/bulma/sass/utilities/derived-variables"; // Variables derived from initial ones
|
|
18
|
+
@import "../../../../../node_modules/bulma/sass/utilities/css-variables"; // CSS custom properties
|
|
19
|
+
@import "../../../../../node_modules/bulma/sass/utilities/controls"; // Control base styles (inputs, buttons)
|
|
20
|
+
@import "../../../../../node_modules/bulma/sass/utilities/extends"; // Shared extends
|
|
21
|
+
@import "../../../../../node_modules/bulma/sass/utilities/mixins"; // Reusable SCSS mixins
|
|
22
22
|
|
|
23
23
|
//==========================
|
|
24
24
|
// 2️⃣ BASE – Reset and base styles
|
|
25
25
|
//==========================
|
|
26
|
-
@import "bulma/sass/base/minireset"; // CSS reset
|
|
27
|
-
@import "bulma/sass/base/generic"; // Generic base styles
|
|
28
|
-
@import "bulma/sass/base/animations"; // Built-in animations
|
|
29
|
-
@import "bulma/sass/base/skeleton"; // Skeleton loading styles
|
|
26
|
+
@import "../../../../../node_modules/bulma/sass/base/minireset"; // CSS reset
|
|
27
|
+
@import "../../../../../node_modules/bulma/sass/base/generic"; // Generic base styles
|
|
28
|
+
@import "../../../../../node_modules/bulma/sass/base/animations"; // Built-in animations
|
|
29
|
+
@import "../../../../../node_modules/bulma/sass/base/skeleton"; // Skeleton loading styles
|
|
30
30
|
|
|
31
31
|
//==========================
|
|
32
32
|
// 3️⃣ THEMES
|
|
33
33
|
//==========================
|
|
34
|
-
@import "bulma/sass/themes/setup"; // Theme setup (required)
|
|
35
|
-
@import "bulma/sass/themes/light"; // Light theme
|
|
36
|
-
// @import "bulma/sass/themes/dark";// Dark theme
|
|
34
|
+
@import "../../../../../node_modules/bulma/sass/themes/setup"; // Theme setup (required)
|
|
35
|
+
@import "../../../../../node_modules/bulma/sass/themes/light"; // Light theme
|
|
36
|
+
// @import "../../../../../node_modules/bulma/sass/themes/dark";// Dark theme
|
|
37
37
|
|
|
38
38
|
//==========================
|
|
39
39
|
// 4️⃣ LAYOUT
|
|
40
40
|
//==========================
|
|
41
|
-
@import "bulma/sass/layout/container"; // Containers
|
|
42
|
-
@import "bulma/sass/layout/section"; // Sections
|
|
43
|
-
@import "bulma/sass/layout/footer"; // Footer
|
|
44
|
-
@import "bulma/sass/layout/hero"; // Hero banners
|
|
45
|
-
@import "bulma/sass/layout/level"; // Level (horizontal layout)
|
|
46
|
-
@import "bulma/sass/layout/media"; // Media object
|
|
41
|
+
@import "../../../../../node_modules/bulma/sass/layout/container"; // Containers
|
|
42
|
+
@import "../../../../../node_modules/bulma/sass/layout/section"; // Sections
|
|
43
|
+
@import "../../../../../node_modules/bulma/sass/layout/footer"; // Footer
|
|
44
|
+
@import "../../../../../node_modules/bulma/sass/layout/hero"; // Hero banners
|
|
45
|
+
@import "../../../../../node_modules/bulma/sass/layout/level"; // Level (horizontal layout)
|
|
46
|
+
@import "../../../../../node_modules/bulma/sass/layout/media"; // Media object
|
|
47
47
|
|
|
48
48
|
//==========================
|
|
49
49
|
// 5️⃣ GRID
|
|
50
50
|
//==========================
|
|
51
|
-
@import "bulma/sass/grid/columns"; // Flexbox column grid
|
|
52
|
-
@import "bulma/sass/grid/grid"; // CSS grid
|
|
51
|
+
@import "../../../../../node_modules/bulma/sass/grid/columns"; // Flexbox column grid
|
|
52
|
+
@import "../../../../../node_modules/bulma/sass/grid/grid"; // CSS grid
|
|
53
53
|
|
|
54
54
|
//==========================
|
|
55
55
|
// 6️⃣ ELEMENTS – Basic HTML elements
|
|
56
56
|
//==========================
|
|
57
|
-
@import "bulma/sass/elements/block"; // Block spacing
|
|
58
|
-
@import "bulma/sass/elements/box"; // Box container
|
|
59
|
-
@import "bulma/sass/elements/button"; // Buttons
|
|
60
|
-
@import "bulma/sass/elements/content"; // Rich text content
|
|
61
|
-
@import "bulma/sass/elements/delete"; // Delete/close button
|
|
62
|
-
@import "bulma/sass/elements/icon"; // Icons
|
|
63
|
-
@import "bulma/sass/elements/image"; // Images
|
|
64
|
-
@import "bulma/sass/elements/loader"; // Loader spinner
|
|
65
|
-
@import "bulma/sass/elements/notification"; // Notifications
|
|
66
|
-
@import "bulma/sass/elements/progress"; // Progress bars
|
|
67
|
-
@import "bulma/sass/elements/table"; // Tables
|
|
68
|
-
@import "bulma/sass/elements/tag"; // Tags/badges
|
|
69
|
-
@import "bulma/sass/elements/title"; // Titles and subtitles
|
|
57
|
+
@import "../../../../../node_modules/bulma/sass/elements/block"; // Block spacing
|
|
58
|
+
@import "../../../../../node_modules/bulma/sass/elements/box"; // Box container
|
|
59
|
+
@import "../../../../../node_modules/bulma/sass/elements/button"; // Buttons
|
|
60
|
+
@import "../../../../../node_modules/bulma/sass/elements/content"; // Rich text content
|
|
61
|
+
@import "../../../../../node_modules/bulma/sass/elements/delete"; // Delete/close button
|
|
62
|
+
@import "../../../../../node_modules/bulma/sass/elements/icon"; // Icons
|
|
63
|
+
@import "../../../../../node_modules/bulma/sass/elements/image"; // Images
|
|
64
|
+
@import "../../../../../node_modules/bulma/sass/elements/loader"; // Loader spinner
|
|
65
|
+
@import "../../../../../node_modules/bulma/sass/elements/notification"; // Notifications
|
|
66
|
+
@import "../../../../../node_modules/bulma/sass/elements/progress"; // Progress bars
|
|
67
|
+
@import "../../../../../node_modules/bulma/sass/elements/table"; // Tables
|
|
68
|
+
@import "../../../../../node_modules/bulma/sass/elements/tag"; // Tags/badges
|
|
69
|
+
@import "../../../../../node_modules/bulma/sass/elements/title"; // Titles and subtitles
|
|
70
70
|
|
|
71
71
|
//==========================
|
|
72
72
|
// 7️⃣ FORM
|
|
73
73
|
//==========================
|
|
74
|
-
@import "bulma/sass/form/shared"; // Shared form styles
|
|
75
|
-
@import "bulma/sass/form/tools"; // Form tools and field wrappers
|
|
76
|
-
@import "bulma/sass/form/input-textarea"; // Inputs and textareas
|
|
77
|
-
@import "bulma/sass/form/select"; // Select dropdowns
|
|
78
|
-
@import "bulma/sass/form/checkbox-radio"; // Checkboxes and radios
|
|
79
|
-
@import "bulma/sass/form/file"; // File upload
|
|
74
|
+
@import "../../../../../node_modules/bulma/sass/form/shared"; // Shared form styles
|
|
75
|
+
@import "../../../../../node_modules/bulma/sass/form/tools"; // Form tools and field wrappers
|
|
76
|
+
@import "../../../../../node_modules/bulma/sass/form/input-textarea"; // Inputs and textareas
|
|
77
|
+
@import "../../../../../node_modules/bulma/sass/form/select"; // Select dropdowns
|
|
78
|
+
@import "../../../../../node_modules/bulma/sass/form/checkbox-radio"; // Checkboxes and radios
|
|
79
|
+
@import "../../../../../node_modules/bulma/sass/form/file"; // File upload
|
|
80
80
|
|
|
81
81
|
//==========================
|
|
82
82
|
// 8️⃣ COMPONENTS
|
|
83
83
|
//==========================
|
|
84
|
-
@import "bulma/sass/components/breadcrumb"; // Breadcrumbs
|
|
85
|
-
@import "bulma/sass/components/card"; // Cards
|
|
86
|
-
@import "bulma/sass/components/dropdown"; // Dropdowns
|
|
87
|
-
@import "bulma/sass/components/menu"; // Vertical menu
|
|
88
|
-
@import "bulma/sass/components/message"; // Message boxes
|
|
89
|
-
@import "bulma/sass/components/modal"; // Modals
|
|
90
|
-
@import "bulma/sass/components/navbar"; // Navbar
|
|
91
|
-
@import "bulma/sass/components/pagination"; // Pagination
|
|
92
|
-
@import "bulma/sass/components/panel"; // Panel
|
|
93
|
-
@import "bulma/sass/components/tabs"; // Tabs
|
|
84
|
+
@import "../../../../../node_modules/bulma/sass/components/breadcrumb"; // Breadcrumbs
|
|
85
|
+
@import "../../../../../node_modules/bulma/sass/components/card"; // Cards
|
|
86
|
+
@import "../../../../../node_modules/bulma/sass/components/dropdown"; // Dropdowns
|
|
87
|
+
@import "../../../../../node_modules/bulma/sass/components/menu"; // Vertical menu
|
|
88
|
+
@import "../../../../../node_modules/bulma/sass/components/message"; // Message boxes
|
|
89
|
+
@import "../../../../../node_modules/bulma/sass/components/modal"; // Modals
|
|
90
|
+
@import "../../../../../node_modules/bulma/sass/components/navbar"; // Navbar
|
|
91
|
+
@import "../../../../../node_modules/bulma/sass/components/pagination"; // Pagination
|
|
92
|
+
@import "../../../../../node_modules/bulma/sass/components/panel"; // Panel
|
|
93
|
+
@import "../../../../../node_modules/bulma/sass/components/tabs"; // Tabs
|
|
94
94
|
|
|
95
95
|
//==========================
|
|
96
96
|
// 9️⃣ HELPERS
|
|
97
97
|
//==========================
|
|
98
|
-
@import "bulma/sass/helpers/aspect-ratio"; // Aspect ratio
|
|
99
|
-
@import "bulma/sass/helpers/border"; // Border utilities
|
|
100
|
-
@import "bulma/sass/helpers/color"; // Color utilities
|
|
101
|
-
@import "bulma/sass/helpers/flexbox"; // Flexbox utilities
|
|
102
|
-
@import "bulma/sass/helpers/float"; // Float utilities
|
|
103
|
-
@import "bulma/sass/helpers/gap"; // Gap utilities
|
|
104
|
-
@import "bulma/sass/helpers/other"; // Other utilities
|
|
105
|
-
@import "bulma/sass/helpers/overflow"; // Overflow utilities
|
|
106
|
-
@import "bulma/sass/helpers/position"; // Position utilities
|
|
107
|
-
@import "bulma/sass/helpers/spacing"; // Spacing utilities (m-, p-)
|
|
108
|
-
@import "bulma/sass/helpers/typography"; // Typography utilities
|
|
109
|
-
@import "bulma/sass/helpers/visibility"; // Visibility utilities
|
|
98
|
+
@import "../../../../../node_modules/bulma/sass/helpers/aspect-ratio"; // Aspect ratio
|
|
99
|
+
@import "../../../../../node_modules/bulma/sass/helpers/border"; // Border utilities
|
|
100
|
+
@import "../../../../../node_modules/bulma/sass/helpers/color"; // Color utilities
|
|
101
|
+
@import "../../../../../node_modules/bulma/sass/helpers/flexbox"; // Flexbox utilities
|
|
102
|
+
@import "../../../../../node_modules/bulma/sass/helpers/float"; // Float utilities
|
|
103
|
+
@import "../../../../../node_modules/bulma/sass/helpers/gap"; // Gap utilities
|
|
104
|
+
@import "../../../../../node_modules/bulma/sass/helpers/other"; // Other utilities
|
|
105
|
+
@import "../../../../../node_modules/bulma/sass/helpers/overflow"; // Overflow utilities
|
|
106
|
+
@import "../../../../../node_modules/bulma/sass/helpers/position"; // Position utilities
|
|
107
|
+
@import "../../../../../node_modules/bulma/sass/helpers/spacing"; // Spacing utilities (m-, p-)
|
|
108
|
+
@import "../../../../../node_modules/bulma/sass/helpers/typography"; // Typography utilities
|
|
109
|
+
@import "../../../../../node_modules/bulma/sass/helpers/visibility"; // Visibility utilities
|