create-berna-stencil 1.0.49 → 1.0.51
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/_tools/modules/updateIncludes.js +1 -1
- package/bin/create.js +2 -2
- package/docs/Components.md +54 -33
- package/docs/Head and SEO.md +33 -6
- package/docs/Styling with SCSS.md +8 -6
- package/package.json +58 -62
- package/src/backend/_core/vendor/composer/autoload_static.php +10 -10
- package/src/backend/_core/vendor/composer/installed.json +6 -6
- package/src/backend/_core/vendor/composer/installed.php +2 -2
- package/src/backend/_core/vendor/graham-campbell/result-type/.gitattributes +9 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/CONTRIBUTING.md +31 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/FUNDING.yml +2 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/SECURITY.md +14 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/workflows/stale.yml +11 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/.github/workflows/tests.yml +40 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/CHANGELOG.md +53 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/LICENSE +21 -21
- package/src/backend/_core/vendor/graham-campbell/result-type/README.md +42 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/composer.json +33 -33
- package/src/backend/_core/vendor/graham-campbell/result-type/phpunit.xml.dist +13 -0
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Error.php +121 -121
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Result.php +69 -69
- package/src/backend/_core/vendor/graham-campbell/result-type/src/Success.php +120 -120
- package/src/backend/_core/vendor/graham-campbell/result-type/tests/ResultTest.php +95 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.gitattributes +13 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/CONTRIBUTING.md +30 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/FUNDING.yml +2 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/SECURITY.md +14 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/workflows/static.yml +40 -0
- package/src/backend/_core/vendor/phpoption/phpoption/.github/workflows/tests.yml +40 -0
- package/src/backend/_core/vendor/phpoption/phpoption/LICENSE +200 -200
- package/src/backend/_core/vendor/phpoption/phpoption/Makefile +17 -0
- package/src/backend/_core/vendor/phpoption/phpoption/README.md +201 -0
- package/src/backend/_core/vendor/phpoption/phpoption/composer.json +50 -50
- package/src/backend/_core/vendor/phpoption/phpoption/phpstan-baseline.neon +44 -0
- package/src/backend/_core/vendor/phpoption/phpoption/phpstan.neon.dist +7 -0
- package/src/backend/_core/vendor/phpoption/phpoption/phpunit.xml.dist +13 -0
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/LazyOption.php +175 -175
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/None.php +136 -136
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/Option.php +434 -434
- package/src/backend/_core/vendor/phpoption/phpoption/src/PhpOption/Some.php +169 -169
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/EnsureTest.php +72 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/LazyOptionTest.php +357 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/NoneTest.php +153 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/OptionTest.php +166 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/PhpOption/Tests/SomeTest.php +194 -0
- package/src/backend/_core/vendor/phpoption/phpoption/tests/bootstrap.php +8 -0
- package/src/backend/_core/vendor/phpoption/phpoption/vendor-bin/phpstan/composer.json +8 -0
- package/src/backend/_core/vendor/symfony/polyfill-ctype/Ctype.php +232 -232
- package/src/backend/_core/vendor/symfony/polyfill-ctype/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-ctype/README.md +12 -12
- package/src/backend/_core/vendor/symfony/polyfill-ctype/bootstrap.php +50 -50
- package/src/backend/_core/vendor/symfony/polyfill-ctype/bootstrap80.php +46 -46
- package/src/backend/_core/vendor/symfony/polyfill-ctype/composer.json +38 -38
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Mbstring.php +1077 -1077
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/README.md +13 -13
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/caseFolding.php +119 -119
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php +1397 -1397
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php +5 -5
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php +1489 -1489
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/bootstrap.php +171 -171
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/bootstrap80.php +167 -167
- package/src/backend/_core/vendor/symfony/polyfill-mbstring/composer.json +39 -39
- package/src/backend/_core/vendor/symfony/polyfill-php80/LICENSE +19 -19
- package/src/backend/_core/vendor/symfony/polyfill-php80/Php80.php +115 -115
- package/src/backend/_core/vendor/symfony/polyfill-php80/PhpToken.php +106 -106
- package/src/backend/_core/vendor/symfony/polyfill-php80/README.md +25 -25
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php +31 -31
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php +20 -20
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php +16 -16
- package/src/backend/_core/vendor/symfony/polyfill-php80/bootstrap.php +42 -42
- package/src/backend/_core/vendor/symfony/polyfill-php80/composer.json +37 -37
- package/src/backend/_core/vendor/vlucas/phpdotenv/.editorconfig +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.gitattributes +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/CODE_OF_CONDUCT.md +132 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/CONTRIBUTING.md +30 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/FUNDING.yml +2 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/SECURITY.md +14 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/workflows/static.yml +40 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/.github/workflows/tests.yml +70 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/LICENSE +30 -30
- package/src/backend/_core/vendor/vlucas/phpdotenv/Makefile +17 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/README.md +370 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/UPGRADING.md +196 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/composer.json +60 -60
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpstan-baseline.neon +157 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpstan.neon.dist +7 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/phpunit.xml.dist +13 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Dotenv.php +267 -267
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidEncodingException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/InvalidPathException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php +12 -12
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/Loader.php +48 -48
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/LoaderInterface.php +20 -20
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Loader/Resolver.php +65 -65
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Entry.php +59 -59
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/EntryParser.php +299 -299
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Lexer.php +58 -58
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Lines.php +127 -127
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Parser.php +53 -53
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/ParserInterface.php +19 -19
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Parser/Value.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/AdapterInterface.php +15 -15
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ApacheAdapter.php +89 -89
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ArrayAdapter.php +80 -80
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/EnvConstAdapter.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/GuardedWriter.php +85 -85
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ImmutableWriter.php +110 -110
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiReader.php +48 -48
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/MultiWriter.php +64 -64
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/PutenvAdapter.php +91 -91
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReaderInterface.php +17 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ReplacingWriter.php +104 -104
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/ServerConstAdapter.php +88 -88
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/Adapter/WriterInterface.php +27 -27
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/AdapterRepository.php +107 -107
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/RepositoryBuilder.php +272 -272
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Repository/RepositoryInterface.php +51 -51
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/File/Paths.php +44 -44
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/File/Reader.php +81 -81
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/FileStore.php +72 -72
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StoreBuilder.php +141 -141
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StoreInterface.php +17 -17
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Store/StringStore.php +37 -37
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Util/Regex.php +112 -112
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Util/Str.php +108 -108
- package/src/backend/_core/vendor/vlucas/phpdotenv/src/Validator.php +207 -207
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/DotenvTest.php +387 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Loader/LoaderTest.php +86 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/EntryParserTest.php +234 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LexerTest.php +40 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/LinesTest.php +53 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Parser/ParserTest.php +98 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ArrayAdapterTest.php +57 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/EnvConstAdapterTest.php +75 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/PutenvAdapterTest.php +52 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/Adapter/ServerConstAdapterTest.php +75 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Repository/RepositoryTest.php +305 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/Store/StoreTest.php +141 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/Dotenv/ValidatorTest.php +479 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/.env +5 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/assertions.env +18 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/booleans.env +33 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/commented.env +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/empty.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/example.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/exported.env +7 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/immutable.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/integers.env +17 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/large.env +2 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multibyte.env +3 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiline.env +14 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/multiple.env +4 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/mutable.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/nested.env +15 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/quoted.env +11 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/specialchars.env +8 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/unicodevarnames.env +2 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/utf8-with-bom-encoding.env +3 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/tests/fixtures/env/windows.env +1 -0
- package/src/backend/_core/vendor/vlucas/phpdotenv/vendor-bin/phpstan/composer.json +15 -0
- package/src/frontend/components/layouts/includes.njk +1 -0
- package/src/frontend/data/site.json +43 -43
- package/src/frontend/llms.njk +18 -0
- package/src/frontend/robots.njk +8 -0
- package/src/frontend/scss/modules/frameworks/_bootstrap.scss +63 -63
- package/src/frontend/scss/modules/frameworks/_bulma.scss +64 -64
- package/src/frontend/scss/modules/frameworks/_foundation.scss +97 -97
- package/src/frontend/scss/modules/frameworks/_uikit.scss +78 -78
- package/src/frontend/robots.txt +0 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MBW="��"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"require": {
|
|
3
|
+
"php": "^8.5",
|
|
4
|
+
"phpstan/phpstan": "2.1.33",
|
|
5
|
+
"phpstan/extension-installer": "1.4.3",
|
|
6
|
+
"phpstan/phpstan-deprecation-rules": "2.0.3",
|
|
7
|
+
"phpstan/phpstan-strict-rules": "2.0.7"
|
|
8
|
+
},
|
|
9
|
+
"config": {
|
|
10
|
+
"preferred-install": "dist",
|
|
11
|
+
"allow-plugins": {
|
|
12
|
+
"phpstan/extension-installer": true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"site_name": "Site name",
|
|
3
|
-
"title": "Site title",
|
|
4
|
-
"description": "Site description",
|
|
5
|
-
"keywords": "keyword1, keyword2, keyword3",
|
|
6
|
-
"domain": "yoursite.com",
|
|
7
|
-
"url": "https://yoursite.com",
|
|
8
|
-
"lang": "en",
|
|
9
|
-
"author": "Name and surname",
|
|
10
|
-
"data_bs_theme": "dark",
|
|
11
|
-
"favicon": "/assets/brand/favicon.svg",
|
|
12
|
-
"logo": "/assets/brand/logo.svg",
|
|
13
|
-
"copyright": {
|
|
14
|
-
"year": "2026",
|
|
15
|
-
"text": "Copyright text"
|
|
16
|
-
},
|
|
17
|
-
"legal": {
|
|
18
|
-
"privacy": "",
|
|
19
|
-
"cookie": "",
|
|
20
|
-
"cookieControls": "",
|
|
21
|
-
"terms": ""
|
|
22
|
-
},
|
|
23
|
-
"pages": {
|
|
24
|
-
"404": {
|
|
25
|
-
"seo": {
|
|
26
|
-
"title": "404 - Not found"
|
|
27
|
-
},
|
|
28
|
-
"cdn": {
|
|
29
|
-
"css": [],
|
|
30
|
-
"js": []
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"homepage": {
|
|
34
|
-
"seo": {
|
|
35
|
-
"title": "Homepage",
|
|
36
|
-
"description": "Description"
|
|
37
|
-
},
|
|
38
|
-
"cdn": {
|
|
39
|
-
"css": [],
|
|
40
|
-
"js": []
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"site_name": "Site name",
|
|
3
|
+
"title": "Site title",
|
|
4
|
+
"description": "Site description",
|
|
5
|
+
"keywords": "keyword1, keyword2, keyword3",
|
|
6
|
+
"domain": "yoursite.com",
|
|
7
|
+
"url": "https://yoursite.com",
|
|
8
|
+
"lang": "en",
|
|
9
|
+
"author": "Name and surname",
|
|
10
|
+
"data_bs_theme": "dark",
|
|
11
|
+
"favicon": "/assets/brand/favicon.svg",
|
|
12
|
+
"logo": "/assets/brand/logo.svg",
|
|
13
|
+
"copyright": {
|
|
14
|
+
"year": "2026",
|
|
15
|
+
"text": "Copyright text"
|
|
16
|
+
},
|
|
17
|
+
"legal": {
|
|
18
|
+
"privacy": "",
|
|
19
|
+
"cookie": "",
|
|
20
|
+
"cookieControls": "",
|
|
21
|
+
"terms": ""
|
|
22
|
+
},
|
|
23
|
+
"pages": {
|
|
24
|
+
"404": {
|
|
25
|
+
"seo": {
|
|
26
|
+
"title": "404 - Not found"
|
|
27
|
+
},
|
|
28
|
+
"cdn": {
|
|
29
|
+
"css": [],
|
|
30
|
+
"js": []
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"homepage": {
|
|
34
|
+
"seo": {
|
|
35
|
+
"title": "Homepage",
|
|
36
|
+
"description": "Description"
|
|
37
|
+
},
|
|
38
|
+
"cdn": {
|
|
39
|
+
"css": [],
|
|
40
|
+
"js": []
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
44
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
permalink: /llms.txt
|
|
3
|
+
eleventyExcludeFromCollections: true
|
|
4
|
+
---
|
|
5
|
+
# {{ site.site_name }}
|
|
6
|
+
|
|
7
|
+
> {{ site.description }}
|
|
8
|
+
|
|
9
|
+
Built by {{ site.author }} — {{ site.url }}
|
|
10
|
+
|
|
11
|
+
## Pages
|
|
12
|
+
|
|
13
|
+
- {{ site.url }}: Homepage
|
|
14
|
+
|
|
15
|
+
## Notes
|
|
16
|
+
|
|
17
|
+
- Language: {{ site.lang }}
|
|
18
|
+
- All content may be used for AI indexing unless otherwise stated
|
|
@@ -6,105 +6,105 @@
|
|
|
6
6
|
|
|
7
7
|
// Imports can be filtered by commenting them
|
|
8
8
|
// Example:
|
|
9
|
-
// @import "
|
|
9
|
+
// @import "bootstrap/scss/example-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 "
|
|
16
|
-
@import "
|
|
17
|
-
@import "
|
|
18
|
-
@import "
|
|
19
|
-
@import "
|
|
20
|
-
@import "
|
|
21
|
-
@import "
|
|
22
|
-
@import "
|
|
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
|
|
23
23
|
|
|
24
24
|
//==========================
|
|
25
25
|
// 2️⃣ VENDOR
|
|
26
26
|
//==========================
|
|
27
|
-
@import "
|
|
27
|
+
@import "bootstrap/scss/vendor/rfs"; // Responsive font sizes
|
|
28
28
|
|
|
29
29
|
//==========================
|
|
30
30
|
// 3️⃣ BASE – Base styles
|
|
31
31
|
//==========================
|
|
32
|
-
@import "
|
|
33
|
-
@import "
|
|
34
|
-
@import "
|
|
35
|
-
@import "
|
|
36
|
-
@import "
|
|
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
|
|
37
37
|
|
|
38
38
|
//==========================
|
|
39
39
|
// 4️⃣ LAYOUT – Layout helpers
|
|
40
40
|
//==========================
|
|
41
|
-
@import "
|
|
42
|
-
@import "
|
|
41
|
+
@import "bootstrap/scss/grid"; // Grid system
|
|
42
|
+
@import "bootstrap/scss/helpers"; // Helper classes
|
|
43
43
|
|
|
44
44
|
//==========================
|
|
45
45
|
// 5️⃣ HELPERS – Sub-modules
|
|
46
46
|
//==========================
|
|
47
|
-
@import "
|
|
48
|
-
@import "
|
|
49
|
-
@import "
|
|
50
|
-
@import "
|
|
51
|
-
@import "
|
|
52
|
-
@import "
|
|
53
|
-
@import "
|
|
54
|
-
@import "
|
|
55
|
-
@import "
|
|
56
|
-
@import "
|
|
57
|
-
@import "
|
|
58
|
-
@import "
|
|
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
|
|
59
59
|
|
|
60
60
|
//==========================
|
|
61
61
|
// 6️⃣ UTILITIES – Sub-modules
|
|
62
62
|
//==========================
|
|
63
|
-
@import "
|
|
63
|
+
@import "bootstrap/scss/utilities/api"; // Utilities API
|
|
64
64
|
|
|
65
65
|
//==========================
|
|
66
66
|
// 7️⃣ FORMS – Sub-modules
|
|
67
67
|
//==========================
|
|
68
|
-
@import "
|
|
69
|
-
@import "
|
|
70
|
-
@import "
|
|
71
|
-
@import "
|
|
72
|
-
@import "
|
|
73
|
-
@import "
|
|
74
|
-
@import "
|
|
75
|
-
@import "
|
|
76
|
-
@import "
|
|
77
|
-
@import "
|
|
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
|
|
78
78
|
|
|
79
79
|
//==========================
|
|
80
80
|
// 8️⃣ COMPONENTS – All Bootstrap components
|
|
81
81
|
//==========================
|
|
82
|
-
@import "
|
|
83
|
-
@import "
|
|
84
|
-
@import "
|
|
85
|
-
@import "
|
|
86
|
-
@import "
|
|
87
|
-
@import "
|
|
88
|
-
@import "
|
|
89
|
-
@import "
|
|
90
|
-
@import "
|
|
91
|
-
@import "
|
|
92
|
-
@import "
|
|
93
|
-
@import "
|
|
94
|
-
@import "
|
|
95
|
-
@import "
|
|
96
|
-
@import "
|
|
97
|
-
@import "
|
|
98
|
-
@import "
|
|
99
|
-
@import "
|
|
100
|
-
@import "
|
|
101
|
-
@import "
|
|
102
|
-
@import "
|
|
103
|
-
@import "
|
|
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
|
|
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 "
|
|
110
|
+
@import "bootstrap-icons/font/bootstrap-icons";
|
|
@@ -6,104 +6,104 @@
|
|
|
6
6
|
|
|
7
7
|
// Imports can be filtered by commenting them
|
|
8
8
|
// Example:
|
|
9
|
-
// @import "
|
|
9
|
+
// @import "bulma/sass/example-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 "
|
|
16
|
-
@import "
|
|
17
|
-
@import "
|
|
18
|
-
@import "
|
|
19
|
-
@import "
|
|
20
|
-
@import "
|
|
21
|
-
@import "
|
|
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
|
|
22
22
|
|
|
23
23
|
//==========================
|
|
24
24
|
// 2️⃣ BASE – Reset and base styles
|
|
25
25
|
//==========================
|
|
26
|
-
@import "
|
|
27
|
-
@import "
|
|
28
|
-
@import "
|
|
29
|
-
@import "
|
|
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
|
|
30
30
|
|
|
31
31
|
//==========================
|
|
32
32
|
// 3️⃣ THEMES
|
|
33
33
|
//==========================
|
|
34
|
-
@import "
|
|
35
|
-
@import "
|
|
36
|
-
// @import "
|
|
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
|
|
37
37
|
|
|
38
38
|
//==========================
|
|
39
39
|
// 4️⃣ LAYOUT
|
|
40
40
|
//==========================
|
|
41
|
-
@import "
|
|
42
|
-
@import "
|
|
43
|
-
@import "
|
|
44
|
-
@import "
|
|
45
|
-
@import "
|
|
46
|
-
@import "
|
|
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
|
|
47
47
|
|
|
48
48
|
//==========================
|
|
49
49
|
// 5️⃣ GRID
|
|
50
50
|
//==========================
|
|
51
|
-
@import "
|
|
52
|
-
@import "
|
|
51
|
+
@import "bulma/sass/grid/columns"; // Flexbox column grid
|
|
52
|
+
@import "bulma/sass/grid/grid"; // CSS grid
|
|
53
53
|
|
|
54
54
|
//==========================
|
|
55
55
|
// 6️⃣ ELEMENTS – Basic HTML elements
|
|
56
56
|
//==========================
|
|
57
|
-
@import "
|
|
58
|
-
@import "
|
|
59
|
-
@import "
|
|
60
|
-
@import "
|
|
61
|
-
@import "
|
|
62
|
-
@import "
|
|
63
|
-
@import "
|
|
64
|
-
@import "
|
|
65
|
-
@import "
|
|
66
|
-
@import "
|
|
67
|
-
@import "
|
|
68
|
-
@import "
|
|
69
|
-
@import "
|
|
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
|
|
70
70
|
|
|
71
71
|
//==========================
|
|
72
72
|
// 7️⃣ FORM
|
|
73
73
|
//==========================
|
|
74
|
-
@import "
|
|
75
|
-
@import "
|
|
76
|
-
@import "
|
|
77
|
-
@import "
|
|
78
|
-
@import "
|
|
79
|
-
@import "
|
|
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
|
|
80
80
|
|
|
81
81
|
//==========================
|
|
82
82
|
// 8️⃣ COMPONENTS
|
|
83
83
|
//==========================
|
|
84
|
-
@import "
|
|
85
|
-
@import "
|
|
86
|
-
@import "
|
|
87
|
-
@import "
|
|
88
|
-
@import "
|
|
89
|
-
@import "
|
|
90
|
-
@import "
|
|
91
|
-
@import "
|
|
92
|
-
@import "
|
|
93
|
-
@import "
|
|
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
|
|
94
94
|
|
|
95
95
|
//==========================
|
|
96
96
|
// 9️⃣ HELPERS
|
|
97
97
|
//==========================
|
|
98
|
-
@import "
|
|
99
|
-
@import "
|
|
100
|
-
@import "
|
|
101
|
-
@import "
|
|
102
|
-
@import "
|
|
103
|
-
@import "
|
|
104
|
-
@import "
|
|
105
|
-
@import "
|
|
106
|
-
@import "
|
|
107
|
-
@import "
|
|
108
|
-
@import "
|
|
109
|
-
@import "
|
|
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
|