infotorg-api-jekyll-theme 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +3 -0
- data/_config.yml +37 -0
- data/_includes/footer.html +11 -0
- data/_includes/head-app-css.html +2 -0
- data/_includes/head-fonts.html +2 -0
- data/_includes/head-google-analytics.html +13 -0
- data/_includes/navigation.html +58 -0
- data/_includes/services.html +75 -0
- data/_includes/title.html +4 -0
- data/_layouts/default.html +38 -0
- data/_layouts/services.html +5 -0
- data/_layouts/swagger-ui.html +67 -0
- data/_sass/_bootstrap.scss +51 -0
- data/_sass/_bootstrap_variables.scss +124 -0
- data/_sass/_typography.scss +15 -0
- data/_sass/_variables.scss +75 -0
- data/_sass/bootstrap/_accordion.scss +125 -0
- data/_sass/bootstrap/_alert.scss +57 -0
- data/_sass/bootstrap/_badge.scss +29 -0
- data/_sass/bootstrap/_breadcrumb.scss +28 -0
- data/_sass/bootstrap/_button-group.scss +139 -0
- data/_sass/bootstrap/_buttons.scss +109 -0
- data/_sass/bootstrap/_card.scss +215 -0
- data/_sass/bootstrap/_carousel.scss +223 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +235 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +205 -0
- data/_sass/bootstrap/_grid.scss +22 -0
- data/_sass/bootstrap/_helpers.scss +7 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +163 -0
- data/_sass/bootstrap/_mixins.scss +41 -0
- data/_sass/bootstrap/_modal.scss +235 -0
- data/_sass/bootstrap/_nav.scss +127 -0
- data/_sass/bootstrap/_navbar.scss +293 -0
- data/_sass/bootstrap/_pagination.scss +64 -0
- data/_sass/bootstrap/_popover.scss +173 -0
- data/_sass/bootstrap/_progress.scss +45 -0
- data/_sass/bootstrap/_reboot.scss +635 -0
- data/_sass/bootstrap/_root.scss +16 -0
- data/_sass/bootstrap/_spinners.scss +65 -0
- data/_sass/bootstrap/_tables.scss +150 -0
- data/_sass/bootstrap/_toasts.scss +50 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +19 -0
- data/_sass/bootstrap/_type.scss +104 -0
- data/_sass/bootstrap/_utilities.scss +560 -0
- data/_sass/bootstrap/_variables.scss +1333 -0
- data/_sass/bootstrap/bootstrap-grid.scss +65 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +15 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +18 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +61 -0
- data/_sass/bootstrap/forms/_form-check.scss +151 -0
- data/_sass/bootstrap/forms/_form-control.scss +223 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +68 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +121 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +12 -0
- data/_sass/bootstrap/helpers/_position.scss +30 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +9 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +18 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +128 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_container.scss +9 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +117 -0
- data/_sass/bootstrap/mixins/_gradients.scss +43 -0
- data/_sass/bootstrap/mixins/_grid.scss +120 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +22 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +29 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +21 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +68 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +28 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +312 -0
- data/assets/bootstrap.min.js +7 -0
- data/assets/bootstrap.min.js.map +1 -0
- data/assets/css/main.scss +214 -0
- data/assets/css/print.scss +8 -0
- data/assets/css/swagger-ui/3.x/theme-feeling-blue.css +1672 -0
- data/assets/css/swagger-ui/3.x/theme-flattop.css +1672 -0
- data/assets/css/swagger-ui/3.x/theme-material.css +1719 -0
- data/assets/css/swagger-ui/3.x/theme-monokai.css +1792 -0
- data/assets/css/swagger-ui/3.x/theme-muted.css +1673 -0
- data/assets/css/swagger-ui/3.x/theme-newspaper.css +1671 -0
- data/assets/css/swagger-ui/3.x/theme-outline.css +1652 -0
- data/assets/images/cube.svg +11 -0
- data/assets/images/icons/collapse.svg +14 -0
- data/assets/images/icons/info.svg +14 -0
- data/assets/images/icons/services/eiendom.svg +9 -0
- data/assets/images/icons/services/foretak.svg +10 -0
- data/assets/images/icons/services/kreditt.svg +11 -0
- data/assets/images/icons/services/likningopplysning.svg +11 -0
- data/assets/images/icons/services/person.svg +11 -0
- data/assets/images/icons/services/small-boats.svg +9 -0
- data/assets/images/icons/services/vehicle.svg +9 -0
- data/assets/images/infotorg-developer.png +0 -0
- data/assets/images/infotorg-developer.svg +23 -0
- data/assets/images/infotorg-developer@2x.png +0 -0
- data/assets/images/infotorg-developer@3x.png +0 -0
- data/assets/images/it-gears.svg +14 -0
- data/assets/images/logo.svg +12 -0
- data/assets/images/tieto-evry-logo.svg +29 -0
- data/assets/openapi/eiendom.json +6817 -0
- metadata +180 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: be55f818004b2b279bfb817a255144bb76f59e3da933e255cca4aa99729cafe1
|
4
|
+
data.tar.gz: c54cc5ade2cd97d141af8d87234dd8c3b951af99ef626503e2ba21fcad543178
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e44e4f500cfc8d6e7e3f7af9f784a23d01ac365dd0a77244b4fb1d5781edfee4432144f51815c3a50042603dce142efc89c87bab7d121acc3862ab60dd349fd9
|
7
|
+
data.tar.gz: 9f3eb9504635f7aaf8cbab8416ffc3f306873e952f356fe9c89aefa6922bb4827ac83c8540d20968c5e313cc640eb23d6fd6d6418f69623fb0e111851539649a
|
data/README.md
ADDED
data/_config.yml
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# --- Jekyll configuration ---
|
2
|
+
defaults:
|
3
|
+
- scope:
|
4
|
+
path: ""
|
5
|
+
values:
|
6
|
+
layout: "default"
|
7
|
+
sass:
|
8
|
+
style: compressed # possible values: nested expanded compact compressed
|
9
|
+
plugins:
|
10
|
+
# See the documentation for Jekyll SEO Tag: https://github.com/jekyll/jekyll-seo-tag
|
11
|
+
- jekyll-seo-tag
|
12
|
+
|
13
|
+
# --- Site data configuration ---
|
14
|
+
lang: en-US
|
15
|
+
title: infotorg API
|
16
|
+
subtitle: Onboarding guidelines and documentation
|
17
|
+
# Your Google Analytics GTM-XXXX code
|
18
|
+
google_analytics_tag_manager: ''
|
19
|
+
|
20
|
+
# --- Swagger UI configuration ---
|
21
|
+
# Path to Open API file name, used for Swagger UI.
|
22
|
+
# As a convention, all Open API files should be stored in the /assets/openapi folder.
|
23
|
+
openapi: '/assets/openapi/eiendom.json'
|
24
|
+
|
25
|
+
# Swagger UI Theme
|
26
|
+
# If not set will fetch the latest default theme css from an official CDN.
|
27
|
+
# Other available themes:
|
28
|
+
# - feeling-blue
|
29
|
+
# - flattop
|
30
|
+
# - material
|
31
|
+
# - monokai
|
32
|
+
# - muted
|
33
|
+
# - newspaper
|
34
|
+
# - outline
|
35
|
+
# Theme files are located in the /assets/css/swagger-ui/3.x folder.
|
36
|
+
# Screenshots are available on the https://github.com/ostranme/swagger-ui-themes page.
|
37
|
+
swaggerui_theme: ''
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<footer class="footer mt-auto py-4">
|
2
|
+
<div class="container pt-4 d-flex">
|
3
|
+
<div class="flex-grow-1">
|
4
|
+
<a href="https://www.infotorg.no/">Infotorg.no</a>
|
5
|
+
</div>
|
6
|
+
<div class="company">
|
7
|
+
<span class="service-from-text">En tjeneste fra</span>
|
8
|
+
<a href="https://www.tietoevry.com/"><img src="assets/images/tieto-evry-logo.svg" width="100px" alt="TietoEVRY"/></a>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</footer>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
{% comment %}
|
2
|
+
* Google Analytics Tag Manager
|
3
|
+
* The content will be included only if the 'google_analytics_tag_manager' option is setup in the '/_config.yml' file.
|
4
|
+
{% endcomment %}
|
5
|
+
{% if site.google_analytics_tag_manager and site.google_analytics_tag_manager != "" %}
|
6
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics_tag_manager }}"></script>
|
7
|
+
<script>
|
8
|
+
window.dataLayer = window.dataLayer || [];
|
9
|
+
function gtag(){dataLayer.push(arguments);}
|
10
|
+
gtag('js', new Date());
|
11
|
+
gtag('config', '{{ site.google_analytics }}');
|
12
|
+
</script>
|
13
|
+
{% endif %}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
{% assign items = site.data.navigation | where:'show', true %}
|
2
|
+
|
3
|
+
<nav class="navbar navbar-expand-lg navbar-light {{ include.class | default: 'mb-3' }}">
|
4
|
+
<div class="container-lg">
|
5
|
+
<a
|
6
|
+
href="/"
|
7
|
+
class="navbar-brand infotorg-developer-logo"
|
8
|
+
>
|
9
|
+
<img
|
10
|
+
src="assets/images/infotorg-developer.png"
|
11
|
+
srcset="assets/images/infotorg-developer@2x.png 2x,
|
12
|
+
assets/images/infotorg-developer@3x.png 3x"
|
13
|
+
width="232"
|
14
|
+
height="40"
|
15
|
+
alt="infotorg developer"
|
16
|
+
/>
|
17
|
+
</a>
|
18
|
+
<button
|
19
|
+
class="navbar-toggler"
|
20
|
+
type="button"
|
21
|
+
data-bs-toggle="collapse"
|
22
|
+
data-bs-target="#navbarNav"
|
23
|
+
aria-controls="navbarNav"
|
24
|
+
aria-expanded="false"
|
25
|
+
aria-label="Toggle navigation"
|
26
|
+
>
|
27
|
+
<span class="navbar-toggler-icon"></span>
|
28
|
+
</button>
|
29
|
+
<div class="d-none d-lg-block py-4">
|
30
|
+
{% include title.html %}
|
31
|
+
</div>
|
32
|
+
<div
|
33
|
+
id="navbarNav"
|
34
|
+
class="mcollapse navbar-collapse collapse"
|
35
|
+
>
|
36
|
+
<ul class="navbar-nav ml-auto">
|
37
|
+
{% for item in items %}
|
38
|
+
<li class="nav-item">
|
39
|
+
{% if item.link contains '://' %}
|
40
|
+
{{ # External link }}
|
41
|
+
{% assign item_url = item.link %}
|
42
|
+
{% else %}
|
43
|
+
{{ # Internal link }}
|
44
|
+
{% assign item_url = item.link | prepend: site.baseurl %}
|
45
|
+
{% endif %}
|
46
|
+
<a
|
47
|
+
href="{{ item_url }}"
|
48
|
+
class="nav-link{% if page.url == item.link %} active{% endif %}"
|
49
|
+
{% if item.target %}target="{{item.target}}"{% endif %}
|
50
|
+
>
|
51
|
+
{{ item.name }}
|
52
|
+
</a>
|
53
|
+
</li>
|
54
|
+
{% endfor %}
|
55
|
+
</ul>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
</nav>
|
@@ -0,0 +1,75 @@
|
|
1
|
+
{% assign services = site.data.services | where:'show', true %}
|
2
|
+
|
3
|
+
<div
|
4
|
+
id="services-list"
|
5
|
+
class="services-list accordion accordion-flush"
|
6
|
+
>
|
7
|
+
{% for item in services %}
|
8
|
+
<div class="service-item">
|
9
|
+
<h2
|
10
|
+
id="heading-{{ forloop.index }}"
|
11
|
+
class="accordion-header"
|
12
|
+
>
|
13
|
+
{% assign icons_dir = "assets/images/icons/services/" %}
|
14
|
+
{% assign icon_path = icons_dir | prepend: '/' | append: item.icon %}
|
15
|
+
|
16
|
+
{% for static_file in site.static_files %}
|
17
|
+
{% if static_file.path == icon_path %}
|
18
|
+
{% assign icon_exists = true %}
|
19
|
+
|
20
|
+
{% break %}
|
21
|
+
{% endif %}
|
22
|
+
{% endfor %}
|
23
|
+
|
24
|
+
<button
|
25
|
+
id="collapse-item-toggler-{{ forloop.index }}"
|
26
|
+
class="accordion-button collapsed"
|
27
|
+
type="button"
|
28
|
+
data-bs-toggle="collapse"
|
29
|
+
data-bs-target="#collapse-{{ forloop.index }}"
|
30
|
+
aria-expanded="false"
|
31
|
+
aria-controls="collapse-{{ forloop.index }}"
|
32
|
+
>
|
33
|
+
<span class="service-icon">
|
34
|
+
{% if icon_exists == true %}
|
35
|
+
<img src="{{ icons_dir }}{{ item.icon }}">
|
36
|
+
{% endif %}
|
37
|
+
</span>
|
38
|
+
|
39
|
+
{{ item.name }}
|
40
|
+
</button>
|
41
|
+
</h2>
|
42
|
+
<div
|
43
|
+
id="collapse-{{ forloop.index }}"
|
44
|
+
class="collapse"
|
45
|
+
aria-labelledby="heading-{{ forloop.index }}"
|
46
|
+
>
|
47
|
+
<div class="accordion-body">
|
48
|
+
{{ item.info }}
|
49
|
+
|
50
|
+
{% if item.url %}
|
51
|
+
<p class="d-flex justify-content-between align-items-center pt-3">
|
52
|
+
{% comment %} Link to a documentation page {% endcomment %}
|
53
|
+
<a
|
54
|
+
href="{{ item.url }}"
|
55
|
+
class="btn btn-outline-dark"
|
56
|
+
role="button"
|
57
|
+
>
|
58
|
+
{{ item.name }} API pages
|
59
|
+
</a>
|
60
|
+
|
61
|
+
<button
|
62
|
+
type="button"
|
63
|
+
class="btn btn-link btn-hide-details d-flex align-items-center"
|
64
|
+
role="button"
|
65
|
+
onclick="document.getElementById('collapse-item-toggler-{{ forloop.index }}').click()"
|
66
|
+
>
|
67
|
+
Hide details
|
68
|
+
</button>
|
69
|
+
</p>
|
70
|
+
{% endif %}
|
71
|
+
</div>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
{% endfor %}
|
75
|
+
</div>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}" class="h-100">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport"
|
6
|
+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
7
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
8
|
+
|
9
|
+
{% seo %}
|
10
|
+
|
11
|
+
{% include head-fonts.html %}
|
12
|
+
{% include head-app-css.html %}
|
13
|
+
{% include head-google-analytics.html %}
|
14
|
+
</head>
|
15
|
+
<body class="d-flex flex-column h-100">
|
16
|
+
<!-- Navigation -->
|
17
|
+
{% include navigation.html %}
|
18
|
+
|
19
|
+
<section class="hero-section d-block d-lg-none">
|
20
|
+
<div class="container-fluid">
|
21
|
+
{% include title.html %}
|
22
|
+
</div>
|
23
|
+
</section>
|
24
|
+
|
25
|
+
<!-- Main content -->
|
26
|
+
<main class="flex-shrink-0 mt-3">
|
27
|
+
<div class="container">
|
28
|
+
{{ content }}
|
29
|
+
|
30
|
+
<div class="bg-cube"></div>
|
31
|
+
</div>
|
32
|
+
</main>
|
33
|
+
|
34
|
+
<!-- Footer -->
|
35
|
+
{% include footer.html %}
|
36
|
+
<script src="assets/bootstrap.min.js"></script>
|
37
|
+
</body>
|
38
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}" class="h-100">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport"
|
6
|
+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
7
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
8
|
+
|
9
|
+
{% seo %}
|
10
|
+
|
11
|
+
{% include head-fonts.html %}
|
12
|
+
{% include head-app-css.html %}
|
13
|
+
{% include head-google-analytics.html %}
|
14
|
+
|
15
|
+
{% if site.swaggerui_theme and site.swaggerui_theme != '' %}
|
16
|
+
<link rel="stylesheet" type="text/css" href="assets/css/swagger-ui/3.x/theme-{{ site.swaggerui_theme }}.css">
|
17
|
+
{% else %}
|
18
|
+
<link rel="stylesheet" type="text/css" href="https://unpkg.com/swagger-ui-dist@3/swagger-ui.css">
|
19
|
+
{% endif %}
|
20
|
+
</head>
|
21
|
+
<body class="d-flex flex-column h-100">
|
22
|
+
<!-- Navigation -->
|
23
|
+
{% include navigation.html class="mb-0" %}
|
24
|
+
|
25
|
+
<section class="hero-section d-block d-lg-none">
|
26
|
+
<div class="container-fluid">
|
27
|
+
{% include title.html %}
|
28
|
+
</div>
|
29
|
+
</section>
|
30
|
+
|
31
|
+
<!-- Main content -->
|
32
|
+
<main class="flex-shrink-0 mt-0 pt-0">
|
33
|
+
<div class="container-fluid">
|
34
|
+
{{ content }}
|
35
|
+
<div id="swagger-ui"></div>
|
36
|
+
</div>
|
37
|
+
</main>
|
38
|
+
<div class="flex-shrink-0 container">
|
39
|
+
<div class="bg-cube"></div>
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<!-- Footer -->
|
43
|
+
{% include footer.html %}
|
44
|
+
|
45
|
+
<script src="assets/bootstrap.min.js"></script>
|
46
|
+
<script src="https://unpkg.com/swagger-ui-dist@3/swagger-ui-standalone-preset.js"></script>
|
47
|
+
<script src="https://unpkg.com/swagger-ui-dist@3/swagger-ui-bundle.js" charset="UTF-8"></script>
|
48
|
+
<script>
|
49
|
+
window.onload = function() {
|
50
|
+
// Build a system
|
51
|
+
window.ui = SwaggerUIBundle({
|
52
|
+
url: '{{ site.openapi | relative_url }}',
|
53
|
+
dom_id: '#swagger-ui',
|
54
|
+
deepLinking: true,
|
55
|
+
presets: [
|
56
|
+
SwaggerUIBundle.presets.apis,
|
57
|
+
SwaggerUIStandalonePreset
|
58
|
+
],
|
59
|
+
plugins: [
|
60
|
+
SwaggerUIBundle.plugins.DownloadUrl
|
61
|
+
],
|
62
|
+
layout: "StandaloneLayout",
|
63
|
+
});
|
64
|
+
}
|
65
|
+
</script>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,51 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v5.0.0-beta1 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2020 The Bootstrap Authors
|
4
|
+
* Copyright 2011-2020 Twitter, Inc.
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
6
|
+
*/
|
7
|
+
|
8
|
+
// scss-docs-start import-stack
|
9
|
+
// Configuration
|
10
|
+
@import "bootstrap/functions";
|
11
|
+
@import "bootstrap/variables";
|
12
|
+
@import "bootstrap/mixins";
|
13
|
+
@import "bootstrap/utilities";
|
14
|
+
|
15
|
+
// Layout & components
|
16
|
+
@import "bootstrap/root";
|
17
|
+
@import "bootstrap/reboot";
|
18
|
+
@import "bootstrap/type";
|
19
|
+
@import "bootstrap/images";
|
20
|
+
@import "bootstrap/containers";
|
21
|
+
@import "bootstrap/grid";
|
22
|
+
@import "bootstrap/tables";
|
23
|
+
@import "bootstrap/forms";
|
24
|
+
@import "bootstrap/buttons";
|
25
|
+
@import "bootstrap/transitions";
|
26
|
+
@import "bootstrap/dropdown";
|
27
|
+
@import "bootstrap/button-group";
|
28
|
+
@import "bootstrap/nav";
|
29
|
+
@import "bootstrap/navbar";
|
30
|
+
@import "bootstrap/card";
|
31
|
+
@import "bootstrap/accordion";
|
32
|
+
@import "bootstrap/breadcrumb";
|
33
|
+
@import "bootstrap/pagination";
|
34
|
+
@import "bootstrap/badge";
|
35
|
+
@import "bootstrap/alert";
|
36
|
+
@import "bootstrap/progress";
|
37
|
+
@import "bootstrap/list-group";
|
38
|
+
@import "bootstrap/close";
|
39
|
+
@import "bootstrap/toasts";
|
40
|
+
@import "bootstrap/modal";
|
41
|
+
@import "bootstrap/tooltip";
|
42
|
+
@import "bootstrap/popover";
|
43
|
+
@import "bootstrap/carousel";
|
44
|
+
@import "bootstrap/spinners";
|
45
|
+
|
46
|
+
// Helpers
|
47
|
+
@import "bootstrap/helpers";
|
48
|
+
|
49
|
+
// Utilities
|
50
|
+
@import "bootstrap/utilities/api";
|
51
|
+
// scss-docs-end import-stack
|
@@ -0,0 +1,124 @@
|
|
1
|
+
// --- BootstrapVue custom SCSS variables ---
|
2
|
+
|
3
|
+
// Documentation is available here: https://bootstrap-vue.org/docs/reference/theming
|
4
|
+
// You will find the complete list of Bootstrap’s variables in node_modules/bootstrap-vue/src/_variables.scss.
|
5
|
+
// Copy and paste variables as needed, modify their values, and remove the !default flag.
|
6
|
+
// If a variable has already been assigned, then it won’t be re-assigned by the default values in Bootstrap and BootstrapVue.
|
7
|
+
// Also see Bootstrap theming documentation: https://getbootstrap.com/docs/4.5/getting-started/theming/
|
8
|
+
|
9
|
+
@import "variables";
|
10
|
+
|
11
|
+
// Color system
|
12
|
+
$primary: $color-nordic-teal;
|
13
|
+
$secondary: $color_navy_blue;
|
14
|
+
$success: $color-happy-green;
|
15
|
+
$info: $color-info-blue;
|
16
|
+
$warning: $color-warning-yellow;
|
17
|
+
$danger: $color-error-red;
|
18
|
+
//$light: #f8f9fa;
|
19
|
+
//$dark: #343a40;
|
20
|
+
|
21
|
+
// Body
|
22
|
+
//
|
23
|
+
// Settings for the `<body>` element.
|
24
|
+
$body-bg: #fff;
|
25
|
+
|
26
|
+
// Links
|
27
|
+
//
|
28
|
+
// Style anchor elements.
|
29
|
+
$link-color: $color-clear-blue;
|
30
|
+
$link-decoration: underline;
|
31
|
+
$link-hover-color: $color-clear-blue-dark;
|
32
|
+
// Darken percentage for links with `.text-*` class (e.g. `.text-success`)
|
33
|
+
//$emphasized-link-hover-darken-percentage: 15% !default;
|
34
|
+
|
35
|
+
// Grid containers
|
36
|
+
//
|
37
|
+
// Define the maximum width of `.container` for different screen sizes.
|
38
|
+
$container-max-widths: (
|
39
|
+
lg: 820px
|
40
|
+
);
|
41
|
+
|
42
|
+
|
43
|
+
// Typography
|
44
|
+
//
|
45
|
+
// Font, line-height, and color for body text, headings, and more.
|
46
|
+
|
47
|
+
$font-size-lg: $font_size_l;
|
48
|
+
$font-size-sm: $font_size_s;
|
49
|
+
|
50
|
+
$line-height-base: 1.4;
|
51
|
+
|
52
|
+
$h1-font-size: $font_size_h1;
|
53
|
+
$h2-font-size: $font_size_h2;
|
54
|
+
$h3-font-size: $font_size_h3;
|
55
|
+
$h4-font-size: $font_size_h4;
|
56
|
+
$h5-font-size: $font_size_h5;
|
57
|
+
$h6-font-size: $font_size_h6;
|
58
|
+
|
59
|
+
$headings-margin-bottom: 1rem;
|
60
|
+
$headings-font-family: $font_heading;
|
61
|
+
$headings-color: rgb(80,95,108);
|
62
|
+
|
63
|
+
|
64
|
+
/* !Update this by design needs
|
65
|
+
|
66
|
+
// Navs
|
67
|
+
|
68
|
+
$nav-link-padding-y: .5rem !default;
|
69
|
+
$nav-link-padding-x: 1rem !default;
|
70
|
+
$nav-link-disabled-color: $gray-600 !default;
|
71
|
+
|
72
|
+
$nav-tabs-border-color: $gray-300 !default;
|
73
|
+
$nav-tabs-border-width: $border-width !default;
|
74
|
+
$nav-tabs-border-radius: $border-radius !default;
|
75
|
+
$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
|
76
|
+
$nav-tabs-link-active-color: $gray-700 !default;
|
77
|
+
$nav-tabs-link-active-bg: $body-bg !default;
|
78
|
+
$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
|
79
|
+
|
80
|
+
$nav-pills-border-radius: $border-radius !default;
|
81
|
+
$nav-pills-link-active-color: $component-active-color !default;
|
82
|
+
$nav-pills-link-active-bg: $component-active-bg !default;
|
83
|
+
|
84
|
+
$nav-divider-color: $gray-200 !default;
|
85
|
+
$nav-divider-margin-y: $spacer / 2 !default;
|
86
|
+
|
87
|
+
|
88
|
+
// Navbar
|
89
|
+
|
90
|
+
$navbar-padding-y: $spacer / 2 !default;
|
91
|
+
$navbar-padding-x: $spacer !default;
|
92
|
+
|
93
|
+
$navbar-nav-link-padding-x: .5rem !default;
|
94
|
+
|
95
|
+
$navbar-brand-font-size: $font-size-lg !default;
|
96
|
+
// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
|
97
|
+
$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
|
98
|
+
$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
|
99
|
+
$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
|
100
|
+
|
101
|
+
$navbar-toggler-padding-y: .25rem !default;
|
102
|
+
$navbar-toggler-padding-x: .75rem !default;
|
103
|
+
$navbar-toggler-font-size: $font-size-lg !default;
|
104
|
+
$navbar-toggler-border-radius: $btn-border-radius !default;
|
105
|
+
|
106
|
+
$navbar-dark-color: rgba($white, .5) !default;
|
107
|
+
$navbar-dark-hover-color: rgba($white, .75) !default;
|
108
|
+
$navbar-dark-active-color: $white !default;
|
109
|
+
$navbar-dark-disabled-color: rgba($white, .25) !default;
|
110
|
+
$navbar-dark-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-dark-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
|
111
|
+
$navbar-dark-toggler-border-color: rgba($white, .1) !default;
|
112
|
+
|
113
|
+
$navbar-light-color: rgba($black, .5) !default;
|
114
|
+
$navbar-light-hover-color: rgba($black, .7) !default;
|
115
|
+
$navbar-light-active-color: rgba($black, .9) !default;
|
116
|
+
$navbar-light-disabled-color: rgba($black, .3) !default;
|
117
|
+
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
|
118
|
+
$navbar-light-toggler-border-color: rgba($black, .1) !default;
|
119
|
+
|
120
|
+
$navbar-light-brand-color: $navbar-light-active-color !default;
|
121
|
+
$navbar-light-brand-hover-color: $navbar-light-active-color !default;
|
122
|
+
$navbar-dark-brand-color: $navbar-dark-active-color !default;
|
123
|
+
$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;
|
124
|
+
*/
|