├── assets ├── css │ ├── _sass │ │ ├── style.scss │ │ ├── bootstrap │ │ │ ├── helpers │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _text-truncation.scss │ │ │ │ ├── _vr.scss │ │ │ │ ├── _visually-hidden.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _stacks.scss │ │ │ │ ├── _colored-links.scss │ │ │ │ ├── _ratio.scss │ │ │ │ └── _position.scss │ │ │ ├── mixins │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _color-scheme.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _backdrop.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _transition.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _table-variants.scss │ │ │ │ ├── _visually-hidden.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ └── _grid.scss │ │ │ ├── forms │ │ │ │ ├── _form-text.scss │ │ │ │ ├── _validation.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _floating-labels.scss │ │ │ │ ├── _form-select.scss │ │ │ │ ├── _form-range.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _form-check.scss │ │ │ │ └── _form-control.scss │ │ │ ├── _forms.scss │ │ │ ├── _helpers.scss │ │ │ ├── bootstrap-utilities.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── _transitions.scss │ │ │ ├── _badge.scss │ │ │ ├── _grid.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _mixins.scss │ │ │ ├── _placeholders.scss │ │ │ ├── _close.scss │ │ │ ├── bootstrap.scss │ │ │ ├── _images.scss │ │ │ ├── _containers.scss │ │ │ ├── _progress.scss │ │ │ ├── _toasts.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── _alert.scss │ │ │ ├── _spinners.scss │ │ │ ├── _type.scss │ │ │ ├── utilities │ │ │ │ └── _api.scss │ │ │ ├── _pagination.scss │ │ │ ├── _root.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _buttons.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _accordion.scss │ │ │ ├── _nav.scss │ │ │ ├── _button-group.scss │ │ │ ├── _tables.scss │ │ │ ├── _popover.scss │ │ │ ├── _list-group.scss │ │ │ ├── _card.scss │ │ │ ├── _modal.scss │ │ │ ├── _dropdown.scss │ │ │ └── _carousel.scss │ │ └── custom.scss │ └── main.scss ├── vr.png ├── OKNRW.png ├── ttn_md.png ├── eigenbaukombinat-logo.png ├── openlab-augsburg-logo.png ├── cccka-entropia-transparent.png ├── verbund-offener-werkstaetten-logo.png ├── S77.svg └── zer.svg ├── CNAME ├── Gemfile ├── vsh.jpg ├── favicon.ico ├── favicon-16x16.png ├── favicon-32x32.png ├── apple-touch-icon.png ├── styles.css ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── _data ├── authors.yml ├── organizations.yml └── signees.yml ├── _includes ├── header.html ├── js │ ├── link-ext.js │ └── appearance.js ├── authors.html ├── signees.html ├── scripts.html ├── organizations.html ├── css │ ├── theme │ │ ├── vintage.css │ │ ├── default.css │ │ └── nord.css │ ├── theme-toggle.css │ ├── forms.css │ ├── settings.css │ └── styles.css ├── footer.html ├── styles.html └── appearance.html ├── _layouts ├── page.html └── default.html ├── site.webmanifest ├── .gitignore ├── oinam-jekyll.gemspec ├── LICENSE ├── README.md ├── _config.yml ├── Gemfile.lock └── OFFENERBRIEF.md /assets/css/_sass/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | verschwoerhaus-bleibt.de -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gemspec -------------------------------------------------------------------------------- /vsh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/vsh.jpg -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/favicon.ico -------------------------------------------------------------------------------- /assets/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/assets/vr.png -------------------------------------------------------------------------------- /assets/OKNRW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/assets/OKNRW.png -------------------------------------------------------------------------------- /assets/ttn_md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/assets/ttn_md.png -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | {% include css/settings.css %} 5 | {% include css/styles.css %} -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/android-chrome-512x512.png -------------------------------------------------------------------------------- /_data/authors.yml: -------------------------------------------------------------------------------- 1 | - name: Eduard Itrich 2 | - name: Stefan Kraus 3 | - name: Jan-Ole Beyer 4 | - name: Jerg Theurer -------------------------------------------------------------------------------- /assets/eigenbaukombinat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/assets/eigenbaukombinat-logo.png -------------------------------------------------------------------------------- /assets/openlab-augsburg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/assets/openlab-augsburg-logo.png -------------------------------------------------------------------------------- /assets/cccka-entropia-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/assets/cccka-entropia-transparent.png -------------------------------------------------------------------------------- /assets/css/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @charset "utf-8"; 5 | 6 | @import "bootstrap/bootstrap"; 7 | @import "style", "custom"; -------------------------------------------------------------------------------- /assets/verbund-offener-werkstaetten-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itrich/vsh-bleibt/HEAD/assets/verbund-offener-werkstaetten-logo.png -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Text truncation 3 | // 4 | 5 | .text-truncate { 6 | @include text-truncate(); 7 | } 8 | -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 |
2 |

{{ site.title }}

3 | {% if site.description %}

{{ site.description | escape }}

{% endif %} 4 |
-------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_vr.scss: -------------------------------------------------------------------------------- 1 | .vr { 2 | display: inline-block; 3 | align-self: stretch; 4 | width: 1px; 5 | min-height: 1em; 6 | background-color: currentColor; 7 | opacity: $hr-opacity; 8 | } 9 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start clearfix 2 | @mixin clearfix() { 3 | &::after { 4 | display: block; 5 | clear: both; 6 | content: ""; 7 | } 8 | } 9 | // scss-docs-end clearfix 10 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |

{{ page.title | escape }}

7 | 8 | {{ content }} 9 | 10 | {% if page.update %} 11 |

Updated on {{ page.update }}.

12 | {% endif %} 13 |
14 | -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /assets/css/_sass/custom.scss: -------------------------------------------------------------------------------- 1 | main img { 2 | border-bottom-left-radius: 0 !important; 3 | border-bottom-right-radius: 0 !important; 4 | } 5 | 6 | main img.logo { 7 | border-radius: var(--border-radius) !important; 8 | } 9 | 10 | img+em, a+em.caption { 11 | margin: unset !important; 12 | } -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /_includes/js/link-ext.js: -------------------------------------------------------------------------------- 1 | function externalLinks() { 2 | for(var c = document.getElementsByTagName("a"), a = 0;a < c.length;a++) { 3 | var b = c[a]; 4 | b.getAttribute("href") 5 | && b.hostname !== location.hostname 6 | && (b.target = "_blank") 7 | && (b.rel = "noopener") 8 | } 9 | } 10 | ; 11 | externalLinks(); -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_helpers.scss: -------------------------------------------------------------------------------- 1 | @import "helpers/clearfix"; 2 | @import "helpers/colored-links"; 3 | @import "helpers/ratio"; 4 | @import "helpers/position"; 5 | @import "helpers/stacks"; 6 | @import "helpers/visually-hidden"; 7 | @import "helpers/stretched-link"; 8 | @import "helpers/text-truncation"; 9 | @import "helpers/vr"; 10 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_container.scss: -------------------------------------------------------------------------------- 1 | // Container mixins 2 | 3 | @mixin make-container($gutter: $container-padding-x) { 4 | width: 100%; 5 | padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter}); 6 | padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter}); 7 | margin-right: auto; 8 | margin-left: auto; 9 | } 10 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_stacks.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start stacks 2 | .hstack { 3 | display: flex; 4 | flex-direction: row; 5 | align-items: center; 6 | align-self: stretch; 7 | } 8 | 9 | .vstack { 10 | display: flex; 11 | flex: 1 1 auto; 12 | flex-direction: column; 13 | align-self: stretch; 14 | } 15 | // scss-docs-end stacks 16 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start alert-variant-mixin 2 | @mixin alert-variant($background, $border, $color) { 3 | color: $color; 4 | @include gradient-bg($background); 5 | border-color: $border; 6 | 7 | .alert-link { 8 | color: shade-color($color, 20%); 9 | } 10 | } 11 | // scss-docs-end alert-variant-mixin 12 | -------------------------------------------------------------------------------- /_includes/authors.html: -------------------------------------------------------------------------------- 1 |
2 | {% for author in site.data.authors %} 3 |
4 |
5 |
6 |

{{author.name}}

7 |
8 |
9 |
10 | {% endfor %} 11 |
-------------------------------------------------------------------------------- /_includes/signees.html: -------------------------------------------------------------------------------- 1 |
2 | {% for signee in site.data.signees %} 3 |
4 |
5 |
6 |

{{signee.name}}

7 |
8 |
9 |
10 | {% endfor %} 11 |
-------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_colored-links.scss: -------------------------------------------------------------------------------- 1 | @each $color, $value in $theme-colors { 2 | .link-#{$color} { 3 | color: $value; 4 | 5 | @if $link-shade-percentage != 0 { 6 | &:hover, 7 | &:focus { 8 | color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)); 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_backdrop.scss: -------------------------------------------------------------------------------- 1 | // Shared between modals and offcanvases 2 | @mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) { 3 | position: fixed; 4 | top: 0; 5 | left: 0; 6 | z-index: $zindex; 7 | width: 100vw; 8 | height: 100vh; 9 | background-color: $backdrop-bg; 10 | 11 | // Fade for backdrop 12 | &.fade { opacity: 0; } 13 | &.show { opacity: $backdrop-opacity; } 14 | } 15 | -------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /_includes/organizations.html: -------------------------------------------------------------------------------- 1 |
2 | {% for organization in site.data.organizations %} 3 |
4 | {% if organization.url %}{% endif %} 5 | 6 | {% if organization.url %}{% endif %} 7 |
8 | {% endfor %} 9 |
-------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | 10 | @mixin img-fluid { 11 | // Part 1: Set a maximum relative to the parent 12 | max-width: 100%; 13 | // Part 2: Override the height to auto, otherwise images will be stretched 14 | // when setting a width and height attribute on the img element. 15 | height: auto; 16 | } 17 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/bootstrap-utilities.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Utilities v5.1.3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | 8 | // Configuration 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "utilities"; 13 | 14 | // Helpers 15 | @import "helpers"; 16 | 17 | // Utilities 18 | @import "utilities/api"; 19 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "root"; 13 | @import "reboot"; 14 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | $result: (); 4 | 5 | @each $value in $shadow { 6 | @if $value != null { 7 | $result: append($result, $value, "comma"); 8 | } 9 | @if $value == none and length($shadow) > 1 { 10 | @warn "The keyword 'none' must be used as a single argument."; 11 | } 12 | } 13 | 14 | @if (length($result) > 0) { 15 | box-shadow: $result; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | Gemfile.lock 3 | .bundle 4 | .jekyll-cache 5 | .jekyll-metadata 6 | _site 7 | 8 | # Ignore hidden folders # 9 | # This takes care of .tmp, .sass-cache, and many others # 10 | .*/ 11 | 12 | # Ignore OS generated files # 13 | .DS_Store* 14 | ehthumbs.db 15 | Icon? 16 | Thumbs.db 17 | 18 | # Ignore packages # 19 | *.7z 20 | *.dmg 21 | *.gz 22 | *.iso 23 | *.jar 24 | *.rar 25 | *.tar 26 | *.zip 27 | 28 | # Always-ignore these # 29 | *.diff 30 | *.err 31 | *.log 32 | *.orig 33 | *.rej 34 | *.swn 35 | *.swo 36 | *.swp 37 | ._* 38 | *~ 39 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/forms/_validation.scss: -------------------------------------------------------------------------------- 1 | // Form validation 2 | // 3 | // Provide feedback to users when form field values are valid or invalid. Works 4 | // primarily for client-side validation via scoped `:invalid` and `:valid` 5 | // pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for 6 | // server-side validation. 7 | 8 | // scss-docs-start form-validation-states-loop 9 | @each $state, $data in $form-validation-states { 10 | @include form-validation-state($state, $data...); 11 | } 12 | // scss-docs-end form-validation-states-loop 13 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_ratio.scss: -------------------------------------------------------------------------------- 1 | // Credit: Nicolas Gallagher and SUIT CSS. 2 | 3 | .ratio { 4 | position: relative; 5 | width: 100%; 6 | 7 | &::before { 8 | display: block; 9 | padding-top: var(--#{$variable-prefix}aspect-ratio); 10 | content: ""; 11 | } 12 | 13 | > * { 14 | position: absolute; 15 | top: 0; 16 | left: 0; 17 | width: 100%; 18 | height: 100%; 19 | } 20 | } 21 | 22 | @each $key, $ratio in $aspect-ratios { 23 | .ratio-#{$key} { 24 | --#{$variable-prefix}aspect-ratio: #{$ratio}; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | // scss-docs-start collapse-classes 10 | .collapse { 11 | &:not(.show) { 12 | display: none; 13 | } 14 | } 15 | 16 | .collapsing { 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | 21 | &.collapse-horizontal { 22 | width: 0; 23 | height: auto; 24 | @include transition($transition-collapse-width); 25 | } 26 | } 27 | // scss-docs-end collapse-classes 28 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or overflow-wrap / word-wrap. 4 | font-style: normal; 5 | font-weight: $font-weight-normal; 6 | line-height: $line-height-base; 7 | text-align: left; // Fallback for where `start` is not supported 8 | text-align: start; 9 | text-decoration: none; 10 | text-shadow: none; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-break: normal; 14 | word-spacing: normal; 15 | white-space: normal; 16 | line-break: auto; 17 | } 18 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | // scss-docs-start list-group-mixin 4 | @mixin list-group-item-variant($state, $background, $color) { 5 | .list-group-item-#{$state} { 6 | color: $color; 7 | background-color: $background; 8 | 9 | &.list-group-item-action { 10 | &:hover, 11 | &:focus { 12 | color: $color; 13 | background-color: shade-color($background, 10%); 14 | } 15 | 16 | &.active { 17 | color: $white; 18 | background-color: $color; 19 | border-color: $color; 20 | } 21 | } 22 | } 23 | } 24 | // scss-docs-end list-group-mixin 25 | -------------------------------------------------------------------------------- /_includes/css/theme/vintage.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --color-primary: #6d28d9; 3 | --color-secondary: #6b21a8; 4 | --color-accent: #10b981; 5 | 6 | --background-color: #fff7ed; 7 | --background-color-alt: #ffedd5; 8 | --background-color-highlight: #fed7aa; 9 | 10 | --text-color: #292524; 11 | --text-color-alt: #57534e; 12 | } 13 | 14 | [data-theme="dark"] { 15 | --color-primary: #22c55e; 16 | --color-secondary: #22c55e; 17 | --color-accent: #d97706; 18 | 19 | --background-color: #44403c; 20 | --background-color-alt: #57534e; 21 | --background-color-highlight: #a8a29e; 22 | 23 | --text-color: #f5f5f4; 24 | --text-color-alt: #d6d3d1; 25 | } -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/helpers/_position.scss: -------------------------------------------------------------------------------- 1 | // Shorthand 2 | 3 | .fixed-top { 4 | position: fixed; 5 | top: 0; 6 | right: 0; 7 | left: 0; 8 | z-index: $zindex-fixed; 9 | } 10 | 11 | .fixed-bottom { 12 | position: fixed; 13 | right: 0; 14 | bottom: 0; 15 | left: 0; 16 | z-index: $zindex-fixed; 17 | } 18 | 19 | // Responsive sticky top 20 | @each $breakpoint in map-keys($grid-breakpoints) { 21 | @include media-breakpoint-up($breakpoint) { 22 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 23 | 24 | .sticky#{$infix}-top { 25 | position: sticky; 26 | top: 0; 27 | z-index: $zindex-sticky; 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- 1 | // Deprecate mixin 2 | // 3 | // This mixin can be used to deprecate mixins or functions. 4 | // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to 5 | // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap) 6 | @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) { 7 | @if ($enable-deprecation-messages != false and $ignore-warning != true) { 8 | @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}."; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /_includes/styles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_badge.scss: -------------------------------------------------------------------------------- 1 | // Base class 2 | // 3 | // Requires one of the contextual, color modifier classes for `color` and 4 | // `background-color`. 5 | 6 | .badge { 7 | display: inline-block; 8 | padding: $badge-padding-y $badge-padding-x; 9 | @include font-size($badge-font-size); 10 | font-weight: $badge-font-weight; 11 | line-height: 1; 12 | color: $badge-color; 13 | text-align: center; 14 | white-space: nowrap; 15 | vertical-align: baseline; 16 | @include border-radius($badge-border-radius); 17 | @include gradient-bg(); 18 | 19 | // Empty badges collapse automatically 20 | &:empty { 21 | display: none; 22 | } 23 | } 24 | 25 | // Quick fix for badges in buttons 26 | .btn .badge { 27 | position: relative; 28 | top: -1px; 29 | } 30 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_grid.scss: -------------------------------------------------------------------------------- 1 | // Row 2 | // 3 | // Rows contain your columns. 4 | 5 | @if $enable-grid-classes { 6 | .row { 7 | @include make-row(); 8 | 9 | > * { 10 | @include make-col-ready(); 11 | } 12 | } 13 | } 14 | 15 | @if $enable-cssgrid { 16 | .grid { 17 | display: grid; 18 | grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr); 19 | grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr); 20 | gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width}); 21 | 22 | @include make-cssgrid(); 23 | } 24 | } 25 | 26 | 27 | // Columns 28 | // 29 | // Common styles for small and large grid columns 30 | 31 | @if $enable-grid-classes { 32 | @include make-grid-columns(); 33 | } 34 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | {% seo title=false %} 11 | 12 | 13 | {%- if title -%}{{ title }} 14 | {%- elsif page.title -%}{{ page.title }} 15 | {%- else -%}{{ site.title }} 16 | {%- endif -%} 17 | 18 | 19 | 20 | 21 | 22 | {% include styles.html %} 23 | 24 | 25 | 26 | 27 | {% include header.html %} 28 | 29 |
{{ content }}
30 | 31 | {% include footer.html %} 32 | 33 | {% include scripts.html %} 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-disallowed-list 2 | @mixin transition($transition...) { 3 | @if length($transition) == 0 { 4 | $transition: $transition-base; 5 | } 6 | 7 | @if length($transition) > 1 { 8 | @each $value in $transition { 9 | @if $value == null or $value == none { 10 | @warn "The keyword 'none' or 'null' must be used as a single argument."; 11 | } 12 | } 13 | } 14 | 15 | @if $enable-transitions { 16 | @if nth($transition, 1) != null { 17 | transition: $transition; 18 | } 19 | 20 | @if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none { 21 | @media (prefers-reduced-motion: reduce) { 22 | transition: none; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | // scss-docs-start pagination-mixin 4 | @mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) { 5 | .page-link { 6 | padding: $padding-y $padding-x; 7 | @include font-size($font-size); 8 | } 9 | 10 | .page-item { 11 | @if $pagination-margin-start == (-$pagination-border-width) { 12 | &:first-child { 13 | .page-link { 14 | @include border-start-radius($border-radius); 15 | } 16 | } 17 | 18 | &:last-child { 19 | .page-link { 20 | @include border-end-radius($border-radius); 21 | } 22 | } 23 | } @else { 24 | //Add border-radius to all pageLinks in case they have left margin 25 | .page-link { 26 | @include border-radius($border-radius); 27 | } 28 | } 29 | } 30 | } 31 | // scss-docs-end pagination-mixin 32 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | display: flex; 3 | flex-wrap: wrap; 4 | padding: $breadcrumb-padding-y $breadcrumb-padding-x; 5 | margin-bottom: $breadcrumb-margin-bottom; 6 | @include font-size($breadcrumb-font-size); 7 | list-style: none; 8 | background-color: $breadcrumb-bg; 9 | @include border-radius($breadcrumb-border-radius); 10 | } 11 | 12 | .breadcrumb-item { 13 | // The separator between breadcrumbs (by default, a forward-slash: "/") 14 | + .breadcrumb-item { 15 | padding-left: $breadcrumb-item-padding-x; 16 | 17 | &::before { 18 | float: left; // Suppress inline spacings and underlining of the separator 19 | padding-right: $breadcrumb-item-padding-x; 20 | color: $breadcrumb-divider-color; 21 | content: var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider)) #{"/* rtl:"} var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider-flipped)) #{"*/"}; 22 | } 23 | } 24 | 25 | &.active { 26 | color: $breadcrumb-active-color; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /oinam-jekyll.gemspec: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | Gem::Specification.new do |spec| 4 | spec.name = "oinam-jekyll" 5 | spec.version = "1.2.0" 6 | spec.authors = ["Oinam"] 7 | 8 | spec.summary = %q{A simple, clean, and minimal Jekyll Theme.} 9 | spec.homepage = "https://github.com/oinam/oinam-jekyll" 10 | spec.license = "MIT" 11 | 12 | spec.metadata["plugin_type"] = "theme" 13 | 14 | spec.files = `git ls-files -z`.split("\x0").select do |f| 15 | f.match(%r{^(assets|_(data|includes|layouts|sass)/|(LICENSE|README|CHANGELOG)((\.(txt|md|markdown)|$)))}i) 16 | end 17 | 18 | spec.add_runtime_dependency "jekyll", ">= 3.9.0", "< 5.0" 19 | spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1.0" 20 | spec.add_runtime_dependency "jekyll-optional-front-matter", "~> 0.3.2" 21 | spec.add_runtime_dependency "jekyll-titles-from-headings", "~> 0.5.3" 22 | spec.add_runtime_dependency "jekyll-seo-tag" 23 | 24 | spec.add_development_dependency "bundler" 25 | end 26 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_table-variants.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start table-variant 2 | @mixin table-variant($state, $background) { 3 | .table-#{$state} { 4 | $color: color-contrast(opaque($body-bg, $background)); 5 | $hover-bg: mix($color, $background, percentage($table-hover-bg-factor)); 6 | $striped-bg: mix($color, $background, percentage($table-striped-bg-factor)); 7 | $active-bg: mix($color, $background, percentage($table-active-bg-factor)); 8 | 9 | --#{$variable-prefix}table-bg: #{$background}; 10 | --#{$variable-prefix}table-striped-bg: #{$striped-bg}; 11 | --#{$variable-prefix}table-striped-color: #{color-contrast($striped-bg)}; 12 | --#{$variable-prefix}table-active-bg: #{$active-bg}; 13 | --#{$variable-prefix}table-active-color: #{color-contrast($active-bg)}; 14 | --#{$variable-prefix}table-hover-bg: #{$hover-bg}; 15 | --#{$variable-prefix}table-hover-color: #{color-contrast($hover-bg)}; 16 | 17 | color: $color; 18 | border-color: mix($color, $background, percentage($table-border-factor)); 19 | } 20 | } 21 | // scss-docs-end table-variant 22 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Toggles 2 | // 3 | // Used in conjunction with global variables to enable certain theme features. 4 | 5 | // Vendor 6 | @import "vendor/rfs"; 7 | 8 | // Deprecate 9 | @import "mixins/deprecate"; 10 | 11 | // Helpers 12 | @import "mixins/breakpoints"; 13 | @import "mixins/color-scheme"; 14 | @import "mixins/image"; 15 | @import "mixins/resize"; 16 | @import "mixins/visually-hidden"; 17 | @import "mixins/reset-text"; 18 | @import "mixins/text-truncate"; 19 | 20 | // Utilities 21 | @import "mixins/utilities"; 22 | 23 | // Components 24 | @import "mixins/alert"; 25 | @import "mixins/backdrop"; 26 | @import "mixins/buttons"; 27 | @import "mixins/caret"; 28 | @import "mixins/pagination"; 29 | @import "mixins/lists"; 30 | @import "mixins/list-group"; 31 | @import "mixins/forms"; 32 | @import "mixins/table-variants"; 33 | 34 | // Skins 35 | @import "mixins/border-radius"; 36 | @import "mixins/box-shadow"; 37 | @import "mixins/gradients"; 38 | @import "mixins/transition"; 39 | 40 | // Layout 41 | @import "mixins/clearfix"; 42 | @import "mixins/container"; 43 | @import "mixins/grid"; 44 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_placeholders.scss: -------------------------------------------------------------------------------- 1 | .placeholder { 2 | display: inline-block; 3 | min-height: 1em; 4 | vertical-align: middle; 5 | cursor: wait; 6 | background-color: currentColor; 7 | opacity: $placeholder-opacity-max; 8 | 9 | &.btn::before { 10 | display: inline-block; 11 | content: ""; 12 | } 13 | } 14 | 15 | // Sizing 16 | .placeholder-xs { 17 | min-height: .6em; 18 | } 19 | 20 | .placeholder-sm { 21 | min-height: .8em; 22 | } 23 | 24 | .placeholder-lg { 25 | min-height: 1.2em; 26 | } 27 | 28 | // Animation 29 | .placeholder-glow { 30 | .placeholder { 31 | animation: placeholder-glow 2s ease-in-out infinite; 32 | } 33 | } 34 | 35 | @keyframes placeholder-glow { 36 | 50% { 37 | opacity: $placeholder-opacity-min; 38 | } 39 | } 40 | 41 | .placeholder-wave { 42 | mask-image: linear-gradient(130deg, $black 55%, rgba(0, 0, 0, (1 - $placeholder-opacity-min)) 75%, $black 95%); 43 | mask-size: 200% 100%; 44 | animation: placeholder-wave 2s linear infinite; 45 | } 46 | 47 | @keyframes placeholder-wave { 48 | 100% { 49 | mask-position: -200% 0%; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Hide content visually while keeping it accessible to assistive technologies 4 | // 5 | // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/ 6 | // See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/ 7 | 8 | @mixin visually-hidden() { 9 | position: absolute !important; 10 | width: 1px !important; 11 | height: 1px !important; 12 | padding: 0 !important; 13 | margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686 14 | overflow: hidden !important; 15 | clip: rect(0, 0, 0, 0) !important; 16 | white-space: nowrap !important; 17 | border: 0 !important; 18 | } 19 | 20 | // Use to only display content when it's focused, or one of its child elements is focused 21 | // (i.e. when focus is within the element/container that the class was applied to) 22 | // 23 | // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 24 | 25 | @mixin visually-hidden-focusable() { 26 | &:not(:focus):not(:focus-within) { 27 | @include visually-hidden(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2021-present Brajeshwar Oinam, oinam.com, and the contributors. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /_includes/js/appearance.js: -------------------------------------------------------------------------------- 1 | // Get the theme toggle input 2 | const themeToggle = document.querySelector( 3 | '.theme-switch input[type="checkbox"]' 4 | ); 5 | 6 | // Get the current theme from local storage 7 | const currentTheme = localStorage.getItem("theme"); 8 | 9 | // If the current local storage item can be found 10 | if (currentTheme) { 11 | // Set the body data-theme attribute to match the local storage item 12 | document.documentElement.setAttribute("data-theme", currentTheme); 13 | 14 | // If the current theme is dark, check the theme toggle 15 | if (currentTheme === "dark") { 16 | themeToggle.checked = true; 17 | } 18 | } 19 | 20 | // Function that will switch the theme based on the if the theme toggle is checked or not 21 | function switchTheme(e) { 22 | if (e.target.checked) { 23 | document.documentElement.setAttribute("data-theme", "dark"); 24 | localStorage.setItem("theme", "dark"); 25 | } else { 26 | document.documentElement.setAttribute("data-theme", "light"); 27 | localStorage.setItem("theme", "light"); 28 | } 29 | } 30 | 31 | // Add an event listener to the theme toggle, which will switch the theme 32 | themeToggle.addEventListener("change", switchTheme, false); 33 | -------------------------------------------------------------------------------- /_includes/css/theme/default.css: -------------------------------------------------------------------------------- 1 | /* 2 | color-theme: default 3 | reference: https://tailwindcss.com/docs/customizing-colors 4 | 5 | Minimal color options and variations. 6 | Almost all color variations can be played based off the few. 7 | */ 8 | :root { 9 | --color-primary: #3b82f6; /* blue-400 */ 10 | --color-secondary: #2563eb; /* blue-600 */ 11 | --color-accent: #fb923c; /* orange-400 */ 12 | 13 | --background-color: #fafafa; /* gray-50 */ 14 | --background-color-alt: #f4f4f5; /* gray-100 */ 15 | --background-color-highlight: #e4e4e7; /* gray-200 */ 16 | 17 | --text-color: #3f3f46; /* gray-700 */ 18 | --text-color-alt: #52525b; /* gray-600 */ 19 | } 20 | 21 | [data-theme="dark"] { 22 | --color-primary: #fb923c; /* orange-400 */ 23 | --color-secondary: #f59e0b; /* orange-500 */ 24 | --color-accent: #3b82f6; /* blue-400 */ 25 | 26 | --background-color: #52525b; /* gray-600 */ 27 | --background-color-alt: #3f3f46; /* gray-700 */ 28 | --background-color-highlight: #27272a; /* gray-800 */ 29 | 30 | --text-color: #e4e4e7; /* gray-200 */ 31 | --text-color-alt: #f4f4f5; /* gray-100 */ 32 | } 33 | 34 | /* tbd: let's combined system preference with the mode */ 35 | /*@media (prefers-color-scheme: dark) { 36 | :root { 37 | 38 | } 39 | }*/ -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_close.scss: -------------------------------------------------------------------------------- 1 | // transparent background and border properties included for button version. 2 | // iOS requires the button element instead of an anchor tag. 3 | // If you want the anchor version, it requires `href="#"`. 4 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 5 | 6 | .btn-close { 7 | box-sizing: content-box; 8 | width: $btn-close-width; 9 | height: $btn-close-height; 10 | padding: $btn-close-padding-y $btn-close-padding-x; 11 | color: $btn-close-color; 12 | background: transparent escape-svg($btn-close-bg) center / $btn-close-width auto no-repeat; // include transparent for button elements 13 | border: 0; // for button elements 14 | @include border-radius(); 15 | opacity: $btn-close-opacity; 16 | 17 | // Override 's hover style 18 | &:hover { 19 | color: $btn-close-color; 20 | text-decoration: none; 21 | opacity: $btn-close-hover-opacity; 22 | } 23 | 24 | &:focus { 25 | outline: 0; 26 | box-shadow: $btn-close-focus-shadow; 27 | opacity: $btn-close-focus-opacity; 28 | } 29 | 30 | &:disabled, 31 | &.disabled { 32 | pointer-events: none; 33 | user-select: none; 34 | opacity: $btn-close-disabled-opacity; 35 | } 36 | } 37 | 38 | .btn-close-white { 39 | filter: $btn-close-white-filter; 40 | } 41 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v5.1.3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 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 "functions"; 11 | @import "variables"; 12 | @import "mixins"; 13 | @import "utilities"; 14 | 15 | // Layout & components 16 | @import "root"; 17 | @import "reboot"; 18 | @import "type"; 19 | @import "images"; 20 | @import "containers"; 21 | @import "grid"; 22 | @import "tables"; 23 | @import "forms"; 24 | @import "buttons"; 25 | @import "transitions"; 26 | @import "dropdown"; 27 | @import "button-group"; 28 | @import "nav"; 29 | @import "navbar"; 30 | @import "card"; 31 | @import "accordion"; 32 | @import "breadcrumb"; 33 | @import "pagination"; 34 | @import "badge"; 35 | @import "alert"; 36 | @import "progress"; 37 | @import "list-group"; 38 | @import "close"; 39 | @import "toasts"; 40 | @import "modal"; 41 | @import "tooltip"; 42 | @import "popover"; 43 | @import "carousel"; 44 | @import "spinners"; 45 | @import "offcanvas"; 46 | @import "placeholders"; 47 | 48 | // Helpers 49 | @import "helpers"; 50 | 51 | // Utilities 52 | @import "utilities/api"; 53 | // scss-docs-end import-stack 54 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/forms/_labels.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // 4 | 5 | .form-label { 6 | margin-bottom: $form-label-margin-bottom; 7 | @include font-size($form-label-font-size); 8 | font-style: $form-label-font-style; 9 | font-weight: $form-label-font-weight; 10 | color: $form-label-color; 11 | } 12 | 13 | // For use with horizontal and inline forms, when you need the label (or legend) 14 | // text to align with the form controls. 15 | .col-form-label { 16 | padding-top: add($input-padding-y, $input-border-width); 17 | padding-bottom: add($input-padding-y, $input-border-width); 18 | margin-bottom: 0; // Override the `` default 19 | @include font-size(inherit); // Override the `` default 20 | font-style: $form-label-font-style; 21 | font-weight: $form-label-font-weight; 22 | line-height: $input-line-height; 23 | color: $form-label-color; 24 | } 25 | 26 | .col-form-label-lg { 27 | padding-top: add($input-padding-y-lg, $input-border-width); 28 | padding-bottom: add($input-padding-y-lg, $input-border-width); 29 | @include font-size($input-font-size-lg); 30 | } 31 | 32 | .col-form-label-sm { 33 | padding-top: add($input-padding-y-sm, $input-border-width); 34 | padding-bottom: add($input-padding-y-sm, $input-border-width); 35 | @include font-size($input-font-size-sm); 36 | } 37 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_images.scss: -------------------------------------------------------------------------------- 1 | // Responsive images (ensure images don't scale beyond their parents) 2 | // 3 | // This is purposefully opt-in via an explicit class rather than being the default for all ``s. 4 | // We previously tried the "images are responsive by default" approach in Bootstrap v2, 5 | // and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps) 6 | // which weren't expecting the images within themselves to be involuntarily resized. 7 | // See also https://github.com/twbs/bootstrap/issues/18178 8 | .img-fluid { 9 | @include img-fluid(); 10 | } 11 | 12 | 13 | // Image thumbnails 14 | .img-thumbnail { 15 | padding: $thumbnail-padding; 16 | background-color: $thumbnail-bg; 17 | border: $thumbnail-border-width solid $thumbnail-border-color; 18 | @include border-radius($thumbnail-border-radius); 19 | @include box-shadow($thumbnail-box-shadow); 20 | 21 | // Keep them at most 100% wide 22 | @include img-fluid(); 23 | } 24 | 25 | // 26 | // Figures 27 | // 28 | 29 | .figure { 30 | // Ensures the caption's text aligns with the image. 31 | display: inline-block; 32 | } 33 | 34 | .figure-img { 35 | margin-bottom: $spacer * .5; 36 | line-height: 1; 37 | } 38 | 39 | .figure-caption { 40 | @include font-size($figure-caption-font-size); 41 | color: $figure-caption-color; 42 | } 43 | -------------------------------------------------------------------------------- /_includes/appearance.html: -------------------------------------------------------------------------------- 1 | {% comment %}{% endcomment %} 2 |
3 | 22 |
23 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_containers.scss: -------------------------------------------------------------------------------- 1 | // Container widths 2 | // 3 | // Set the container width, and override it for fixed navbars in media queries. 4 | 5 | @if $enable-grid-classes { 6 | // Single container class with breakpoint max-widths 7 | .container, 8 | // 100% wide container at all breakpoints 9 | .container-fluid { 10 | @include make-container(); 11 | } 12 | 13 | // Responsive containers that are 100% wide until a breakpoint 14 | @each $breakpoint, $container-max-width in $container-max-widths { 15 | .container-#{$breakpoint} { 16 | @extend .container-fluid; 17 | } 18 | 19 | @include media-breakpoint-up($breakpoint, $grid-breakpoints) { 20 | %responsive-container-#{$breakpoint} { 21 | max-width: $container-max-width; 22 | } 23 | 24 | // Extend each breakpoint which is smaller or equal to the current breakpoint 25 | $extend-breakpoint: true; 26 | 27 | @each $name, $width in $grid-breakpoints { 28 | @if ($extend-breakpoint) { 29 | .container#{breakpoint-infix($name, $grid-breakpoints)} { 30 | @extend %responsive-container-#{$breakpoint}; 31 | } 32 | 33 | // Once the current breakpoint is reached, stop extending 34 | @if ($breakpoint == $name) { 35 | $extend-breakpoint: false; 36 | } 37 | } 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_progress.scss: -------------------------------------------------------------------------------- 1 | // Disable animation if transitions are disabled 2 | 3 | // scss-docs-start progress-keyframes 4 | @if $enable-transitions { 5 | @keyframes progress-bar-stripes { 6 | 0% { background-position-x: $progress-height; } 7 | } 8 | } 9 | // scss-docs-end progress-keyframes 10 | 11 | .progress { 12 | display: flex; 13 | height: $progress-height; 14 | overflow: hidden; // force rounded corners by cropping it 15 | @include font-size($progress-font-size); 16 | background-color: $progress-bg; 17 | @include border-radius($progress-border-radius); 18 | @include box-shadow($progress-box-shadow); 19 | } 20 | 21 | .progress-bar { 22 | display: flex; 23 | flex-direction: column; 24 | justify-content: center; 25 | overflow: hidden; 26 | color: $progress-bar-color; 27 | text-align: center; 28 | white-space: nowrap; 29 | background-color: $progress-bar-bg; 30 | @include transition($progress-bar-transition); 31 | } 32 | 33 | .progress-bar-striped { 34 | @include gradient-striped(); 35 | background-size: $progress-height $progress-height; 36 | } 37 | 38 | @if $enable-transitions { 39 | .progress-bar-animated { 40 | animation: $progress-bar-animation-timing progress-bar-stripes; 41 | 42 | @if $enable-reduced-motion { 43 | @media (prefers-reduced-motion: reduce) { 44 | animation: none; 45 | } 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- 1 | .toast { 2 | width: $toast-max-width; 3 | max-width: 100%; 4 | @include font-size($toast-font-size); 5 | color: $toast-color; 6 | pointer-events: auto; 7 | background-color: $toast-background-color; 8 | background-clip: padding-box; 9 | border: $toast-border-width solid $toast-border-color; 10 | box-shadow: $toast-box-shadow; 11 | @include border-radius($toast-border-radius); 12 | 13 | &.showing { 14 | opacity: 0; 15 | } 16 | 17 | &:not(.show) { 18 | display: none; 19 | } 20 | } 21 | 22 | .toast-container { 23 | width: max-content; 24 | max-width: 100%; 25 | pointer-events: none; 26 | 27 | > :not(:last-child) { 28 | margin-bottom: $toast-spacing; 29 | } 30 | } 31 | 32 | .toast-header { 33 | display: flex; 34 | align-items: center; 35 | padding: $toast-padding-y $toast-padding-x; 36 | color: $toast-header-color; 37 | background-color: $toast-header-background-color; 38 | background-clip: padding-box; 39 | border-bottom: $toast-border-width solid $toast-header-border-color; 40 | @include border-top-radius(subtract($toast-border-radius, $toast-border-width)); 41 | 42 | .btn-close { 43 | margin-right: $toast-padding-x * -.5; 44 | margin-left: $toast-padding-x; 45 | } 46 | } 47 | 48 | .toast-body { 49 | padding: $toast-padding-x; // apply to both vertical and horizontal 50 | word-wrap: break-word; 51 | } 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Verschwörhaus bleibt 2 | ## Offener Brief an die Stadtverwaltung Ulm 3 | 4 | ### Ich möchte den Brief unterschreiben. Was kann ich tun? 5 | Vielen Dank für deine Unterstützung! Du kannst den Brief unterzeichnen, in dem du 6 | dich zur Datei [`_data/signees.yml`](https://github.com/itrich/vsh-bleibt/blob/main/_data/signees.yml) 7 | hinzufügst. Hierzu machst du am besten einen Pull Request gegen den Branch `main` auf. 8 | 9 | ### Ich möchte den Brief als Organisation unterstützen. Was kann ich tun? 10 | Du kannst den Brief als Organisation unterstützen, in dem du den Namen der 11 | Organisation zur Datei [`_data/organizations.yml`](https://github.com/itrich/vsh-bleibt/blob/main/_data/organizations.yml) 12 | sowie ein Logo unter [`assets`](https://github.com/itrich/vsh-bleibt/blob/main/assets) hinzufügst. 13 | Hierzu machst du am besten einen Pull Request gegen den Branch `main` auf. 14 | 15 | ### Ich würde den Brief gerne unterzeichnen/unterstützen, komme aber mit GitHub nicht zurecht 16 | Schreibe uns gerne eine E-Mail an und teile uns deinen Wunsch auf Eintragung mit. 17 | 18 | ## Lizenzhinweise 19 | 20 | The favicon was generated using the following graphics from Twitter Twemoji: 21 | 22 | - Graphics Title: 1f4c3.svg 23 | - Graphics Author: Copyright 2020 Twitter, Inc and other contributors (https://github.com/twitter/twemoji) 24 | - Graphics Source: https://github.com/twitter/twemoji/blob/master/assets/svg/1f4c3.svg 25 | - Graphics License: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/) 26 | -------------------------------------------------------------------------------- /_includes/css/theme/nord.css: -------------------------------------------------------------------------------- 1 | /* 2 | color-theme: nord 3 | https://www.nordtheme.com 4 | */ 5 | :root { 6 | /* polar night */ 7 | --color-nord0: #2e3440; 8 | --color-nord1: #3b4252; 9 | --color-nord2: #434c5e; 10 | --color-nord3: #434c5e; 11 | 12 | /* snow storm */ 13 | --color-nord4: #d8dee9; 14 | --color-nord5: #e5e9f0; 15 | --color-nord6: #eceff4; 16 | 17 | /* frost */ 18 | --color-nord7: #8fbcbb; 19 | --color-nord8: #88c0d0; 20 | --color-nord9: #81a1c1; 21 | --color-nord10: #5e81ac; 22 | 23 | /* aurora */ 24 | --color-nord11: #bf616a; 25 | --color-nord12: #d08770; 26 | --color-nord13: #ebcb8b; 27 | --color-nord14: #a3be8c; 28 | --color-nord15: #b48ead; 29 | } 30 | 31 | :root { 32 | --color-primary: var(--color-nord10); 33 | --color-secondary: var(--color-nord9); 34 | --color-accent: var(--color-nord11); 35 | 36 | --background-color: var(--color-nord6); 37 | --background-color-alt: var(--color-nord5); 38 | --background-color-accent: var(--color-nord13); 39 | --background-color-highlight: var(--color-nord4); 40 | 41 | --text-color: var(--color-nord0); 42 | --text-color-alt: var(--color-nord2); 43 | } 44 | 45 | [data-theme="dark"] { 46 | --color-primary: var(--color-nord11); 47 | --color-secondary: var(--color-nord12); 48 | --color-accent: var(--color-nord10); 49 | 50 | --background-color: var(--color-nord2); 51 | --background-color-alt: var(--color-nord1); 52 | --background-color-accent: var(--color-nord10); 53 | --background-color-highlight: var(--color-nord0); 54 | 55 | --text-color: var(--color-nord5); 56 | --text-color-alt: var(--color-nord4); 57 | } -------------------------------------------------------------------------------- /_data/organizations.yml: -------------------------------------------------------------------------------- 1 | - name: Open Knowledge Foundation Deutschland e.V. 2 | logo: /assets/okfn.svg 3 | url: "https://okfn.de/" 4 | - name: Verwaltungsrebellen 5 | logo: /assets/vr.png 6 | url: "https://verwaltungsrebellen.de/" 7 | - name: zerforschung 8 | logo: /assets/zer.svg 9 | url: "https://zerforschung.org/" 10 | - name: "Chaos Computer Club e. V." 11 | logo: /assets/ccc.svg 12 | url: "https://ccc.de" 13 | - name: Verbund Offener Werkstätten e.V. 14 | logo: /assets/verbund-offener-werkstaetten-logo.png 15 | url: "https://www.offene-werkstaetten.org/" 16 | - name: Eigenbaukombinat Halle e.V. 17 | logo: /assets/eigenbaukombinat-logo.png 18 | url: "https://eigenbaukombinat.de/" 19 | - name: C3WOC 20 | logo: /assets/c3woc.svg 21 | url: "https://c3woc.de/" 22 | - name: TheThingsNetwork Mitteldeutschland 23 | logo: /assets/ttn_md.png 24 | url: "https://ttn-mitteldeutschland.de" 25 | - name: Entropia e.V. - CCC Karlsruhe 26 | logo: /assets/cccka-entropia-transparent.png 27 | url: "https://entropia.de/" 28 | - name: MITFAHR|DE|ZENTRALE 29 | logo: /assets/mfdz.svg 30 | url: "https://mfdz.de/" 31 | - name: OpenLab Augsburg 32 | logo: /assets/openlab-augsburg-logo.png 33 | url: "https://www.openlab-augsburg.de/" 34 | - name: xHain hack+makespace 35 | logo: /assets/xhain.svg 36 | url: "https://x-hain.de" 37 | - name: Offene Kommunen.NRW Institut e. V. 38 | logo: /assets/OKNRW.png 39 | url: "https://oknrw.de/" 40 | - name: backspace e.V. 41 | logo: /assets/backspace.svg 42 | url: "https://www.hackerspace-bamberg.de" 43 | - name: section77 e.V. 44 | logo: /assets/S77.svg 45 | url: "https://section77.de" 46 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Grid v5.1.3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | 8 | $include-column-box-sizing: true !default; 9 | 10 | @import "functions"; 11 | @import "variables"; 12 | 13 | @import "mixins/lists"; 14 | @import "mixins/breakpoints"; 15 | @import "mixins/container"; 16 | @import "mixins/grid"; 17 | @import "mixins/utilities"; 18 | 19 | @import "vendor/rfs"; 20 | 21 | @import "root"; 22 | 23 | @import "containers"; 24 | @import "grid"; 25 | 26 | @import "utilities"; 27 | // Only use the utilities we need 28 | // stylelint-disable-next-line scss/dollar-variable-default 29 | $utilities: map-get-multiple( 30 | $utilities, 31 | ( 32 | "display", 33 | "order", 34 | "flex", 35 | "flex-direction", 36 | "flex-grow", 37 | "flex-shrink", 38 | "flex-wrap", 39 | "justify-content", 40 | "align-items", 41 | "align-content", 42 | "align-self", 43 | "margin", 44 | "margin-x", 45 | "margin-y", 46 | "margin-top", 47 | "margin-end", 48 | "margin-bottom", 49 | "margin-start", 50 | "negative-margin", 51 | "negative-margin-x", 52 | "negative-margin-y", 53 | "negative-margin-top", 54 | "negative-margin-end", 55 | "negative-margin-bottom", 56 | "negative-margin-start", 57 | "padding", 58 | "padding-x", 59 | "padding-y", 60 | "padding-top", 61 | "padding-end", 62 | "padding-bottom", 63 | "padding-start", 64 | ) 65 | ); 66 | 67 | @import "utilities/api"; 68 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_alert.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Base styles 3 | // 4 | 5 | .alert { 6 | position: relative; 7 | padding: $alert-padding-y $alert-padding-x; 8 | margin-bottom: $alert-margin-bottom; 9 | border: $alert-border-width solid transparent; 10 | @include border-radius($alert-border-radius); 11 | } 12 | 13 | // Headings for larger alerts 14 | .alert-heading { 15 | // Specified to prevent conflicts of changing $headings-color 16 | color: inherit; 17 | } 18 | 19 | // Provide class for links that match alerts 20 | .alert-link { 21 | font-weight: $alert-link-font-weight; 22 | } 23 | 24 | 25 | // Dismissible alerts 26 | // 27 | // Expand the right padding and account for the close button's positioning. 28 | 29 | .alert-dismissible { 30 | padding-right: $alert-dismissible-padding-r; 31 | 32 | // Adjust close link position 33 | .btn-close { 34 | position: absolute; 35 | top: 0; 36 | right: 0; 37 | z-index: $stretched-link-z-index + 1; 38 | padding: $alert-padding-y * 1.25 $alert-padding-x; 39 | } 40 | } 41 | 42 | 43 | // scss-docs-start alert-modifiers 44 | // Generate contextual modifier classes for colorizing the alert. 45 | 46 | @each $state, $value in $theme-colors { 47 | $alert-background: shift-color($value, $alert-bg-scale); 48 | $alert-border: shift-color($value, $alert-border-scale); 49 | $alert-color: shift-color($value, $alert-color-scale); 50 | @if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) { 51 | $alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale)); 52 | } 53 | .alert-#{$state} { 54 | @include alert-variant($alert-background, $alert-border, $alert-color); 55 | } 56 | } 57 | // scss-docs-end alert-modifiers 58 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start caret-mixins 2 | @mixin caret-down { 3 | border-top: $caret-width solid; 4 | border-right: $caret-width solid transparent; 5 | border-bottom: 0; 6 | border-left: $caret-width solid transparent; 7 | } 8 | 9 | @mixin caret-up { 10 | border-top: 0; 11 | border-right: $caret-width solid transparent; 12 | border-bottom: $caret-width solid; 13 | border-left: $caret-width solid transparent; 14 | } 15 | 16 | @mixin caret-end { 17 | border-top: $caret-width solid transparent; 18 | border-right: 0; 19 | border-bottom: $caret-width solid transparent; 20 | border-left: $caret-width solid; 21 | } 22 | 23 | @mixin caret-start { 24 | border-top: $caret-width solid transparent; 25 | border-right: $caret-width solid; 26 | border-bottom: $caret-width solid transparent; 27 | } 28 | 29 | @mixin caret($direction: down) { 30 | @if $enable-caret { 31 | &::after { 32 | display: inline-block; 33 | margin-left: $caret-spacing; 34 | vertical-align: $caret-vertical-align; 35 | content: ""; 36 | @if $direction == down { 37 | @include caret-down(); 38 | } @else if $direction == up { 39 | @include caret-up(); 40 | } @else if $direction == end { 41 | @include caret-end(); 42 | } 43 | } 44 | 45 | @if $direction == start { 46 | &::after { 47 | display: none; 48 | } 49 | 50 | &::before { 51 | display: inline-block; 52 | margin-right: $caret-spacing; 53 | vertical-align: $caret-vertical-align; 54 | content: ""; 55 | @include caret-start(); 56 | } 57 | } 58 | 59 | &:empty::after { 60 | margin-left: 0; 61 | } 62 | } 63 | } 64 | // scss-docs-end caret-mixins 65 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Verschwörhaus bleibt 2 | description: Offener Brief an die Stadtverwaltung Ulm 3 | 4 | # Set this to your domain; baseurl is for the folder in your domain, if you have one -- `blog`. 5 | # you can leave both of them blank if you are deploying on a top-level domain. 6 | url: https://verschwoerhaus-bleibt.de 7 | 8 | # footer 9 | footer: 10 | credit: false 11 | custom: true 12 | 13 | # if above footer:custom is 'true', then this will be printed instead 14 | footer_custom: 'Der Text dieses Briefes wurde unter CC BY-SA veröffentlicht.' 15 | 16 | layout: 17 | theme: default # default, vintage, nord 18 | theme_switch: true # enable or disable user toggle switch between light and dark theme 19 | link_new_tab: true # should external links open in a new tab (true) or in the current tab (false) 20 | 21 | # styles 22 | # include only the styles you want [true | false] 23 | styles: 24 | font_family: sans # serif, sans (default) 25 | forms: true 26 | 27 | markdown: kramdown 28 | highlighter: rouge 29 | 30 | permalink: pretty 31 | permalink: /:title/ 32 | 33 | sass: 34 | sass_dir: /assets/css/_sass 35 | style: compressed # nested, compact, expanded or compressed 36 | sourcemap: never 37 | 38 | plugins: 39 | - jekyll-optional-front-matter # https://github.com/benbalter/jekyll-optional-front-matter 40 | - jekyll-titles-from-headings # https://github.com/benbalter/jekyll-titles-from-headings/ 41 | - jekyll-seo-tag 42 | 43 | titles_from_headings: 44 | enabled: true 45 | strip_title: true 46 | collections: true 47 | 48 | exclude: 49 | - .jekyll-cache/ 50 | - .sass-cache/ 51 | - Gemfile 52 | - Gemfile.lock 53 | - gemfiles/ 54 | - LICENSE 55 | - netlify.toml 56 | - node_modules/ 57 | - oinam-jekyll-*.* 58 | - oinam-jekyll.gemspec 59 | - README.* 60 | - server 61 | - vendor/ 62 | - .sass-cache/ -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Rotating border 3 | // 4 | 5 | // scss-docs-start spinner-border-keyframes 6 | @keyframes spinner-border { 7 | to { transform: rotate(360deg) #{"/* rtl:ignore */"}; } 8 | } 9 | // scss-docs-end spinner-border-keyframes 10 | 11 | .spinner-border { 12 | display: inline-block; 13 | width: $spinner-width; 14 | height: $spinner-height; 15 | vertical-align: $spinner-vertical-align; 16 | border: $spinner-border-width solid currentColor; 17 | border-right-color: transparent; 18 | // stylelint-disable-next-line property-disallowed-list 19 | border-radius: 50%; 20 | animation: $spinner-animation-speed linear infinite spinner-border; 21 | } 22 | 23 | .spinner-border-sm { 24 | width: $spinner-width-sm; 25 | height: $spinner-height-sm; 26 | border-width: $spinner-border-width-sm; 27 | } 28 | 29 | // 30 | // Growing circle 31 | // 32 | 33 | // scss-docs-start spinner-grow-keyframes 34 | @keyframes spinner-grow { 35 | 0% { 36 | transform: scale(0); 37 | } 38 | 50% { 39 | opacity: 1; 40 | transform: none; 41 | } 42 | } 43 | // scss-docs-end spinner-grow-keyframes 44 | 45 | .spinner-grow { 46 | display: inline-block; 47 | width: $spinner-width; 48 | height: $spinner-height; 49 | vertical-align: $spinner-vertical-align; 50 | background-color: currentColor; 51 | // stylelint-disable-next-line property-disallowed-list 52 | border-radius: 50%; 53 | opacity: 0; 54 | animation: $spinner-animation-speed linear infinite spinner-grow; 55 | } 56 | 57 | .spinner-grow-sm { 58 | width: $spinner-width-sm; 59 | height: $spinner-height-sm; 60 | } 61 | 62 | @if $enable-reduced-motion { 63 | @media (prefers-reduced-motion: reduce) { 64 | .spinner-border, 65 | .spinner-grow { 66 | animation-duration: $spinner-animation-speed * 2; 67 | } 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_type.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Headings 3 | // 4 | .h1 { 5 | @extend h1; 6 | } 7 | 8 | .h2 { 9 | @extend h2; 10 | } 11 | 12 | .h3 { 13 | @extend h3; 14 | } 15 | 16 | .h4 { 17 | @extend h4; 18 | } 19 | 20 | .h5 { 21 | @extend h5; 22 | } 23 | 24 | .h6 { 25 | @extend h6; 26 | } 27 | 28 | 29 | .lead { 30 | @include font-size($lead-font-size); 31 | font-weight: $lead-font-weight; 32 | } 33 | 34 | // Type display classes 35 | @each $display, $font-size in $display-font-sizes { 36 | .display-#{$display} { 37 | @include font-size($font-size); 38 | font-weight: $display-font-weight; 39 | line-height: $display-line-height; 40 | } 41 | } 42 | 43 | // 44 | // Emphasis 45 | // 46 | .small { 47 | @extend small; 48 | } 49 | 50 | .mark { 51 | @extend mark; 52 | } 53 | 54 | // 55 | // Lists 56 | // 57 | 58 | .list-unstyled { 59 | @include list-unstyled(); 60 | } 61 | 62 | // Inline turns list items into inline-block 63 | .list-inline { 64 | @include list-unstyled(); 65 | } 66 | .list-inline-item { 67 | display: inline-block; 68 | 69 | &:not(:last-child) { 70 | margin-right: $list-inline-padding; 71 | } 72 | } 73 | 74 | 75 | // 76 | // Misc 77 | // 78 | 79 | // Builds on `abbr` 80 | .initialism { 81 | @include font-size($initialism-font-size); 82 | text-transform: uppercase; 83 | } 84 | 85 | // Blockquotes 86 | .blockquote { 87 | margin-bottom: $blockquote-margin-y; 88 | @include font-size($blockquote-font-size); 89 | 90 | > :last-child { 91 | margin-bottom: 0; 92 | } 93 | } 94 | 95 | .blockquote-footer { 96 | margin-top: -$blockquote-margin-y; 97 | margin-bottom: $blockquote-margin-y; 98 | @include font-size($blockquote-footer-font-size); 99 | color: $blockquote-footer-color; 100 | 101 | &::before { 102 | content: "\2014\00A0"; // em dash, nbsp 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /_includes/css/theme-toggle.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --toggle-width: 60px; 3 | --toggle-height: 34px; 4 | --toggle-button-size: 26px; 5 | --toggle-transition-duration: var(--transition-duration); 6 | } 7 | 8 | .theme-switch-wrapper { 9 | display: flex; 10 | align-items: center; 11 | } 12 | 13 | .theme-switch { 14 | display: inline-block; 15 | position: relative; 16 | height: var(--toggle-height); 17 | width: var(--toggle-width); 18 | } 19 | 20 | .theme-switch input { 21 | display: none; 22 | } 23 | 24 | .slider { 25 | background: var(--background-color-highlight); 26 | position: absolute; 27 | bottom: 0; 28 | left: 0; 29 | right: 0; 30 | top: 0; 31 | cursor: pointer; 32 | border-radius: var(--toggle-height); 33 | transition: 0.4s; 34 | } 35 | 36 | .slider:before { 37 | content: ""; 38 | position: absolute; 39 | left: 4px; 40 | bottom: 4px; 41 | background: var(--background-color); 42 | width: var(--toggle-button-size);; 43 | height: var(--toggle-button-size); 44 | transition: var(--toggle-transition-duration); 45 | border-radius: var(--border-radius-round); 46 | } 47 | 48 | input:checked + .slider { 49 | background: var(--background-color-highlight); 50 | } 51 | 52 | input:checked + .slider:before { 53 | transform: translateX(calc(1* var(--toggle-button-size))); 54 | } 55 | 56 | .slider svg { 57 | color: var(--text-color); 58 | position: absolute; 59 | transition: opacity 0.2s ease 0s, transform 0.35s ease 0s; 60 | pointer-events: none; 61 | } 62 | 63 | .feather-moon { 64 | opacity: 0; 65 | left: 9px; 66 | bottom: 9px; 67 | transform: translateX(4px); 68 | } 69 | 70 | .feather-sun { 71 | opacity: 1; 72 | right: 10px; 73 | bottom: 9px; 74 | transform: translateX(0px); 75 | } 76 | 77 | input:checked + .slider .feather-moon { 78 | opacity: 1; 79 | transform: translateX(0); 80 | } 81 | 82 | input:checked + .slider .feather-sun { 83 | opacity: 0; 84 | transform: translateX(-4px); 85 | } 86 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/utilities/_api.scss: -------------------------------------------------------------------------------- 1 | // Loop over each breakpoint 2 | @each $breakpoint in map-keys($grid-breakpoints) { 3 | 4 | // Generate media query if needed 5 | @include media-breakpoint-up($breakpoint) { 6 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 7 | 8 | // Loop over each utility property 9 | @each $key, $utility in $utilities { 10 | // The utility can be disabled with `false`, thus check if the utility is a map first 11 | // Only proceed if responsive media queries are enabled or if it's the base media query 12 | @if type-of($utility) == "map" and (map-get($utility, responsive) or $infix == "") { 13 | @include generate-utility($utility, $infix); 14 | } 15 | } 16 | } 17 | } 18 | 19 | // RFS rescaling 20 | @media (min-width: $rfs-mq-value) { 21 | @each $breakpoint in map-keys($grid-breakpoints) { 22 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 23 | 24 | @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) { 25 | // Loop over each utility property 26 | @each $key, $utility in $utilities { 27 | // The utility can be disabled with `false`, thus check if the utility is a map first 28 | // Only proceed if responsive media queries are enabled or if it's the base media query 29 | @if type-of($utility) == "map" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == "") { 30 | @include generate-utility($utility, $infix, true); 31 | } 32 | } 33 | } 34 | } 35 | } 36 | 37 | 38 | // Print utilities 39 | @media print { 40 | @each $key, $utility in $utilities { 41 | // The utility can be disabled with `false`, thus check if the utility is a map first 42 | // Then check if the utility needs print styles 43 | @if type-of($utility) == "map" and map-get($utility, print) == true { 44 | @include generate-utility($utility, "-print"); 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /_data/signees.yml: -------------------------------------------------------------------------------- 1 | - name: Bianca Kastl 2 | - name: Lilith Wittmann 3 | - name: Marco Holz 4 | - name: Aaron Dewes 5 | - name: Manuel Atug 6 | - name: Karl Engelhardt 7 | - name: Daniel Molkentin 8 | - name: Marvin Borner 9 | - name: Michael Kreil 10 | - name: Marie Gutbub 11 | - name: Liam Wachter 12 | - name: Jannis R 13 | - name: Bernhard Wittmann 14 | - name: Sebastian Herrmann 15 | - name: Robert Weissgraeber 16 | - name: David Wagner 17 | - name: Martin Brink-Abeler 18 | - name: Prof. Dr.-Ing. David Zellhöfer 19 | - name: Thorsten Zieleit 20 | - name: Martin Keller 21 | - name: Frank Berger 22 | - name: Ulrike Thalheim 23 | - name: Martin Schwarz 24 | - name: Daniel Havlik 25 | - name: Steffen Uhlig 26 | - name: Sabine Fratzke 27 | - name: Björn Unte 28 | - name: Peter Kuhn 29 | - name: Teal Bauer 30 | - name: Peter Onderscheka 31 | - name: Tatiana Muñoz 32 | - name: Dr. Nana Schön 33 | - name: Emmanouil 'madonius' Kampitakis 34 | - name: Timo Widdau 35 | - name: Lilian Roller 36 | - name: Steffen Grau 37 | - name: Adrian Bidlingmaier 38 | - name: Joscha Jäger 39 | - name: Benjamin Hartmann 40 | - name: Paula Grünwald 41 | - name: Holger Bruch 42 | - name: Julius Tens 43 | - name: Vittoria Ollig 44 | - name: Markus Neuschäfer 45 | - name: Torsten Frenzel 46 | - name: Inga Karrer 47 | - name: Lukas Güldenstein 48 | - name: Thomas Krause 49 | - name: Luca Theidig 50 | - name: Felix Singer 51 | - name: Nicola Jäger 52 | - name: Dr. Michael Färber 53 | - name: Katja Jäger 54 | - name: Ursula Brummack 55 | - name: Thomas Clöer 56 | - name: Jörg Wende 57 | - name: Gerhard Bäurle 58 | - name: Oliver Rack 59 | - name: Clarisse Schröder 60 | - name: Felix Kronlage-Dammers 61 | - name: Anne Schwarz 62 | - name: Isabel Dehmelt 63 | - name: Miriam Schattner 64 | - name: Dieter Hofmann 65 | - name: Susanne Rengel 66 | - name: Thijs Lucas 67 | - name: Chris Rueß 68 | - name: Manuel Groß 69 | - name: Alexander Warth 70 | - name: Johanna Götz 71 | - name: Chris Weber 72 | - name: Uwe Andreas Neumann 73 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- 1 | .pagination { 2 | display: flex; 3 | @include list-unstyled(); 4 | } 5 | 6 | .page-link { 7 | position: relative; 8 | display: block; 9 | color: $pagination-color; 10 | text-decoration: if($link-decoration == none, null, none); 11 | background-color: $pagination-bg; 12 | border: $pagination-border-width solid $pagination-border-color; 13 | @include transition($pagination-transition); 14 | 15 | &:hover { 16 | z-index: 2; 17 | color: $pagination-hover-color; 18 | text-decoration: if($link-hover-decoration == underline, none, null); 19 | background-color: $pagination-hover-bg; 20 | border-color: $pagination-hover-border-color; 21 | } 22 | 23 | &:focus { 24 | z-index: 3; 25 | color: $pagination-focus-color; 26 | background-color: $pagination-focus-bg; 27 | outline: $pagination-focus-outline; 28 | box-shadow: $pagination-focus-box-shadow; 29 | } 30 | } 31 | 32 | .page-item { 33 | &:not(:first-child) .page-link { 34 | margin-left: $pagination-margin-start; 35 | } 36 | 37 | &.active .page-link { 38 | z-index: 3; 39 | color: $pagination-active-color; 40 | @include gradient-bg($pagination-active-bg); 41 | border-color: $pagination-active-border-color; 42 | } 43 | 44 | &.disabled .page-link { 45 | color: $pagination-disabled-color; 46 | pointer-events: none; 47 | background-color: $pagination-disabled-bg; 48 | border-color: $pagination-disabled-border-color; 49 | } 50 | } 51 | 52 | 53 | // 54 | // Sizing 55 | // 56 | @include pagination-size($pagination-padding-y, $pagination-padding-x, null, $pagination-border-radius); 57 | 58 | .pagination-lg { 59 | @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $pagination-border-radius-lg); 60 | } 61 | 62 | .pagination-sm { 63 | @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $pagination-border-radius-sm); 64 | } 65 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/forms/_floating-labels.scss: -------------------------------------------------------------------------------- 1 | .form-floating { 2 | position: relative; 3 | 4 | > .form-control, 5 | > .form-select { 6 | height: $form-floating-height; 7 | line-height: $form-floating-line-height; 8 | } 9 | 10 | > label { 11 | position: absolute; 12 | top: 0; 13 | left: 0; 14 | height: 100%; // allow textareas 15 | padding: $form-floating-padding-y $form-floating-padding-x; 16 | pointer-events: none; 17 | border: $input-border-width solid transparent; // Required for aligning label's text with the input as it affects inner box model 18 | transform-origin: 0 0; 19 | @include transition($form-floating-transition); 20 | } 21 | 22 | // stylelint-disable no-duplicate-selectors 23 | > .form-control { 24 | padding: $form-floating-padding-y $form-floating-padding-x; 25 | 26 | &::placeholder { 27 | color: transparent; 28 | } 29 | 30 | &:focus, 31 | &:not(:placeholder-shown) { 32 | padding-top: $form-floating-input-padding-t; 33 | padding-bottom: $form-floating-input-padding-b; 34 | } 35 | // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped 36 | &:-webkit-autofill { 37 | padding-top: $form-floating-input-padding-t; 38 | padding-bottom: $form-floating-input-padding-b; 39 | } 40 | } 41 | 42 | > .form-select { 43 | padding-top: $form-floating-input-padding-t; 44 | padding-bottom: $form-floating-input-padding-b; 45 | } 46 | 47 | > .form-control:focus, 48 | > .form-control:not(:placeholder-shown), 49 | > .form-select { 50 | ~ label { 51 | opacity: $form-floating-label-opacity; 52 | transform: $form-floating-label-transform; 53 | } 54 | } 55 | // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped 56 | > .form-control:-webkit-autofill { 57 | ~ label { 58 | opacity: $form-floating-label-opacity; 59 | transform: $form-floating-label-transform; 60 | } 61 | } 62 | // stylelint-enable no-duplicate-selectors 63 | } 64 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_root.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | // Note: Custom variable values only support SassScript inside `#{}`. 3 | 4 | // Colors 5 | // 6 | // Generate palettes for full colors, grays, and theme colors. 7 | 8 | @each $color, $value in $colors { 9 | --#{$variable-prefix}#{$color}: #{$value}; 10 | } 11 | 12 | @each $color, $value in $grays { 13 | --#{$variable-prefix}gray-#{$color}: #{$value}; 14 | } 15 | 16 | @each $color, $value in $theme-colors { 17 | --#{$variable-prefix}#{$color}: #{$value}; 18 | } 19 | 20 | @each $color, $value in $theme-colors-rgb { 21 | --#{$variable-prefix}#{$color}-rgb: #{$value}; 22 | } 23 | 24 | --#{$variable-prefix}white-rgb: #{to-rgb($white)}; 25 | --#{$variable-prefix}black-rgb: #{to-rgb($black)}; 26 | --#{$variable-prefix}body-color-rgb: #{to-rgb($body-color)}; 27 | --#{$variable-prefix}body-bg-rgb: #{to-rgb($body-bg)}; 28 | 29 | // Fonts 30 | 31 | // Note: Use `inspect` for lists so that quoted items keep the quotes. 32 | // See https://github.com/sass/sass/issues/2383#issuecomment-336349172 33 | --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)}; 34 | --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)}; 35 | --#{$variable-prefix}gradient: #{$gradient}; 36 | 37 | // Root and body 38 | // stylelint-disable custom-property-empty-line-before 39 | // scss-docs-start root-body-variables 40 | @if $font-size-root != null { 41 | --#{$variable-prefix}root-font-size: #{$font-size-root}; 42 | } 43 | --#{$variable-prefix}body-font-family: #{$font-family-base}; 44 | --#{$variable-prefix}body-font-size: #{$font-size-base}; 45 | --#{$variable-prefix}body-font-weight: #{$font-weight-base}; 46 | --#{$variable-prefix}body-line-height: #{$line-height-base}; 47 | --#{$variable-prefix}body-color: #{$body-color}; 48 | @if $body-text-align != null { 49 | --#{$variable-prefix}body-text-align: #{$body-text-align}; 50 | } 51 | --#{$variable-prefix}body-bg: #{$body-bg}; 52 | // scss-docs-end root-body-variables 53 | // stylelint-enable custom-property-empty-line-before 54 | } 55 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- 1 | // Gradients 2 | 3 | // scss-docs-start gradient-bg-mixin 4 | @mixin gradient-bg($color: null) { 5 | background-color: $color; 6 | 7 | @if $enable-gradients { 8 | background-image: var(--#{$variable-prefix}gradient); 9 | } 10 | } 11 | // scss-docs-end gradient-bg-mixin 12 | 13 | // scss-docs-start gradient-mixins 14 | // Horizontal gradient, from left to right 15 | // 16 | // Creates two color stops, start and end, by specifying a color and position for each color stop. 17 | @mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) { 18 | background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent); 19 | } 20 | 21 | // Vertical gradient, from top to bottom 22 | // 23 | // Creates two color stops, start and end, by specifying a color and position for each color stop. 24 | @mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: null, $end-percent: null) { 25 | background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); 26 | } 27 | 28 | @mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) { 29 | background-image: linear-gradient($deg, $start-color, $end-color); 30 | } 31 | 32 | @mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) { 33 | background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color); 34 | } 35 | 36 | @mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) { 37 | background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color); 38 | } 39 | 40 | @mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) { 41 | background-image: radial-gradient(circle, $inner-color, $outer-color); 42 | } 43 | 44 | @mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) { 45 | background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent); 46 | } 47 | // scss-docs-end gradient-mixins 48 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | PATH 2 | remote: . 3 | specs: 4 | oinam-jekyll (1.2.0) 5 | jekyll (>= 3.9.0, < 5.0) 6 | jekyll-optional-front-matter (~> 0.3.2) 7 | jekyll-titles-from-headings (~> 0.5.3) 8 | kramdown-parser-gfm (~> 1.1.0) 9 | 10 | GEM 11 | remote: https://rubygems.org/ 12 | specs: 13 | addressable (2.8.0) 14 | public_suffix (>= 2.0.2, < 5.0) 15 | colorator (1.1.0) 16 | concurrent-ruby (1.1.9) 17 | em-websocket (0.5.2) 18 | eventmachine (>= 0.12.9) 19 | http_parser.rb (~> 0.6.0) 20 | eventmachine (1.2.7) 21 | ffi (1.15.4) 22 | forwardable-extended (2.6.0) 23 | http_parser.rb (0.6.0) 24 | i18n (1.8.10) 25 | concurrent-ruby (~> 1.0) 26 | jekyll (4.2.0) 27 | addressable (~> 2.4) 28 | colorator (~> 1.0) 29 | em-websocket (~> 0.5) 30 | i18n (~> 1.0) 31 | jekyll-sass-converter (~> 2.0) 32 | jekyll-watch (~> 2.0) 33 | kramdown (~> 2.3) 34 | kramdown-parser-gfm (~> 1.0) 35 | liquid (~> 4.0) 36 | mercenary (~> 0.4.0) 37 | pathutil (~> 0.9) 38 | rouge (~> 3.0) 39 | safe_yaml (~> 1.0) 40 | terminal-table (~> 2.0) 41 | jekyll-optional-front-matter (0.3.2) 42 | jekyll (>= 3.0, < 5.0) 43 | jekyll-sass-converter (2.1.0) 44 | sassc (> 2.0.1, < 3.0) 45 | jekyll-titles-from-headings (0.5.3) 46 | jekyll (>= 3.3, < 5.0) 47 | jekyll-watch (2.2.1) 48 | listen (~> 3.0) 49 | kramdown (2.3.1) 50 | rexml 51 | kramdown-parser-gfm (1.1.0) 52 | kramdown (~> 2.0) 53 | liquid (4.0.3) 54 | listen (3.7.0) 55 | rb-fsevent (~> 0.10, >= 0.10.3) 56 | rb-inotify (~> 0.9, >= 0.9.10) 57 | mercenary (0.4.0) 58 | pathutil (0.16.2) 59 | forwardable-extended (~> 2.6) 60 | public_suffix (4.0.6) 61 | rb-fsevent (0.11.0) 62 | rb-inotify (0.10.1) 63 | ffi (~> 1.0) 64 | rexml (3.2.5) 65 | rouge (3.26.0) 66 | safe_yaml (1.0.5) 67 | sassc (2.4.0) 68 | ffi (~> 1.9) 69 | terminal-table (2.0.0) 70 | unicode-display_width (~> 1.1, >= 1.1.1) 71 | unicode-display_width (1.7.0) 72 | 73 | PLATFORMS 74 | universal-darwin-20 75 | universal-darwin-21 76 | x86_64-linux 77 | 78 | DEPENDENCIES 79 | bundler 80 | oinam-jekyll! 81 | 82 | BUNDLED WITH 83 | 2.3.6 84 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_offcanvas.scss: -------------------------------------------------------------------------------- 1 | .offcanvas { 2 | position: fixed; 3 | bottom: 0; 4 | z-index: $zindex-offcanvas; 5 | display: flex; 6 | flex-direction: column; 7 | max-width: 100%; 8 | color: $offcanvas-color; 9 | visibility: hidden; 10 | background-color: $offcanvas-bg-color; 11 | background-clip: padding-box; 12 | outline: 0; 13 | @include box-shadow($offcanvas-box-shadow); 14 | @include transition(transform $offcanvas-transition-duration ease-in-out); 15 | } 16 | 17 | .offcanvas-backdrop { 18 | @include overlay-backdrop($zindex-offcanvas-backdrop, $offcanvas-backdrop-bg, $offcanvas-backdrop-opacity); 19 | } 20 | 21 | .offcanvas-header { 22 | display: flex; 23 | align-items: center; 24 | justify-content: space-between; 25 | padding: $offcanvas-padding-y $offcanvas-padding-x; 26 | 27 | .btn-close { 28 | padding: ($offcanvas-padding-y * .5) ($offcanvas-padding-x * .5); 29 | margin-top: $offcanvas-padding-y * -.5; 30 | margin-right: $offcanvas-padding-x * -.5; 31 | margin-bottom: $offcanvas-padding-y * -.5; 32 | } 33 | } 34 | 35 | .offcanvas-title { 36 | margin-bottom: 0; 37 | line-height: $offcanvas-title-line-height; 38 | } 39 | 40 | .offcanvas-body { 41 | flex-grow: 1; 42 | padding: $offcanvas-padding-y $offcanvas-padding-x; 43 | overflow-y: auto; 44 | } 45 | 46 | .offcanvas-start { 47 | top: 0; 48 | left: 0; 49 | width: $offcanvas-horizontal-width; 50 | border-right: $offcanvas-border-width solid $offcanvas-border-color; 51 | transform: translateX(-100%); 52 | } 53 | 54 | .offcanvas-end { 55 | top: 0; 56 | right: 0; 57 | width: $offcanvas-horizontal-width; 58 | border-left: $offcanvas-border-width solid $offcanvas-border-color; 59 | transform: translateX(100%); 60 | } 61 | 62 | .offcanvas-top { 63 | top: 0; 64 | right: 0; 65 | left: 0; 66 | height: $offcanvas-vertical-height; 67 | max-height: 100%; 68 | border-bottom: $offcanvas-border-width solid $offcanvas-border-color; 69 | transform: translateY(-100%); 70 | } 71 | 72 | .offcanvas-bottom { 73 | right: 0; 74 | left: 0; 75 | height: $offcanvas-vertical-height; 76 | max-height: 100%; 77 | border-top: $offcanvas-border-width solid $offcanvas-border-color; 78 | transform: translateY(100%); 79 | } 80 | 81 | .offcanvas.show { 82 | transform: none; 83 | } 84 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-disallowed-list 2 | // Single side border-radius 3 | 4 | // Helper function to replace negative values with 0 5 | @function valid-radius($radius) { 6 | $return: (); 7 | @each $value in $radius { 8 | @if type-of($value) == number { 9 | $return: append($return, max($value, 0)); 10 | } @else { 11 | $return: append($return, $value); 12 | } 13 | } 14 | @return $return; 15 | } 16 | 17 | // scss-docs-start border-radius-mixins 18 | @mixin border-radius($radius: $border-radius, $fallback-border-radius: false) { 19 | @if $enable-rounded { 20 | border-radius: valid-radius($radius); 21 | } 22 | @else if $fallback-border-radius != false { 23 | border-radius: $fallback-border-radius; 24 | } 25 | } 26 | 27 | @mixin border-top-radius($radius: $border-radius) { 28 | @if $enable-rounded { 29 | border-top-left-radius: valid-radius($radius); 30 | border-top-right-radius: valid-radius($radius); 31 | } 32 | } 33 | 34 | @mixin border-end-radius($radius: $border-radius) { 35 | @if $enable-rounded { 36 | border-top-right-radius: valid-radius($radius); 37 | border-bottom-right-radius: valid-radius($radius); 38 | } 39 | } 40 | 41 | @mixin border-bottom-radius($radius: $border-radius) { 42 | @if $enable-rounded { 43 | border-bottom-right-radius: valid-radius($radius); 44 | border-bottom-left-radius: valid-radius($radius); 45 | } 46 | } 47 | 48 | @mixin border-start-radius($radius: $border-radius) { 49 | @if $enable-rounded { 50 | border-top-left-radius: valid-radius($radius); 51 | border-bottom-left-radius: valid-radius($radius); 52 | } 53 | } 54 | 55 | @mixin border-top-start-radius($radius: $border-radius) { 56 | @if $enable-rounded { 57 | border-top-left-radius: valid-radius($radius); 58 | } 59 | } 60 | 61 | @mixin border-top-end-radius($radius: $border-radius) { 62 | @if $enable-rounded { 63 | border-top-right-radius: valid-radius($radius); 64 | } 65 | } 66 | 67 | @mixin border-bottom-end-radius($radius: $border-radius) { 68 | @if $enable-rounded { 69 | border-bottom-right-radius: valid-radius($radius); 70 | } 71 | } 72 | 73 | @mixin border-bottom-start-radius($radius: $border-radius) { 74 | @if $enable-rounded { 75 | border-bottom-left-radius: valid-radius($radius); 76 | } 77 | } 78 | // scss-docs-end border-radius-mixins 79 | -------------------------------------------------------------------------------- /_includes/css/forms.css: -------------------------------------------------------------------------------- 1 | label { 2 | margin: 0; 3 | padding: 0 1px; 4 | } 5 | 6 | a button, 7 | button, 8 | input[type="submit"], 9 | input[type="reset"], 10 | input[type="button"] { 11 | cursor: pointer; 12 | border: 0 none; 13 | border-radius: var(--border-radius); 14 | background: var(--form-button-background-color); 15 | color: var(--form-button-text-color); 16 | padding: var(--space-half) var(--space-base); 17 | margin: var(--space-half) 0; 18 | transition: var(--transition-duration); 19 | 20 | font-family: var(--font-family-sans); 21 | font-size: inherit; 22 | font-weight: 500; 23 | } 24 | 25 | a button[disabled], 26 | button[disabled], 27 | input[type="submit"][disabled], 28 | input[type="reset"][disabled], 29 | input[type="button"][disabled], 30 | input[type="checkbox"][disabled], 31 | input[type="radio"][disabled], 32 | select[disabled] { 33 | cursor: not-allowed; 34 | opacity: var(--opacity-lowest); 35 | } 36 | 37 | input:disabled, 38 | textarea:disabled, 39 | select:disabled { 40 | cursor: not-allowed; 41 | } 42 | 43 | input[type="range"] { 44 | padding: 0; 45 | } 46 | 47 | input:required {} 48 | 49 | input:focus { 50 | outline: none; 51 | border-color: var(--border-color-highlight); 52 | } 53 | 54 | button:focus, 55 | button:enabled:hover, 56 | input[type="submit"]:focus, 57 | input[type="submit"]:enabled:hover, 58 | input[type="reset"]:focus, 59 | input[type="reset"]:enabled:hover, 60 | input[type="button"]:focus, 61 | input[type="button"]:enabled:hover, 62 | input[type="checkbox"]:focus, 63 | input[type="checkbox"]:enabled:hover, 64 | input[type="radio"]:focus, 65 | input[type="radio"]:enabled:hover{ 66 | opacity: var(--opacity-lower); 67 | } 68 | 69 | textarea, 70 | select, 71 | input { 72 | padding: var(--space-half); 73 | margin-bottom: var(--space-half); 74 | border-radius: var(--border-radius); 75 | border: 1px solid var(--border-color); 76 | 77 | box-shadow: none; 78 | box-sizing: border-box; 79 | appearance: none; 80 | 81 | background: var(--background-color-alt); 82 | color: var(--text-color); 83 | } 84 | 85 | select {} 86 | 87 | textarea, 88 | select, 89 | input { 90 | width: 100%; 91 | } 92 | 93 | input[type="checkbox"], input[type="radio"]{ 94 | width: auto; 95 | } 96 | 97 | input[type="file"] { 98 | border: 0; 99 | } 100 | 101 | fieldset { 102 | border: 0; 103 | padding: 0; 104 | margin: 0; 105 | } -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/forms/_form-select.scss: -------------------------------------------------------------------------------- 1 | // Select 2 | // 3 | // Replaces the browser default select with a custom one, mostly pulled from 4 | // https://primer.github.io/. 5 | 6 | .form-select { 7 | display: block; 8 | width: 100%; 9 | padding: $form-select-padding-y $form-select-indicator-padding $form-select-padding-y $form-select-padding-x; 10 | // stylelint-disable-next-line property-no-vendor-prefix 11 | -moz-padding-start: subtract($form-select-padding-x, 3px); // See https://github.com/twbs/bootstrap/issues/32636 12 | font-family: $form-select-font-family; 13 | @include font-size($form-select-font-size); 14 | font-weight: $form-select-font-weight; 15 | line-height: $form-select-line-height; 16 | color: $form-select-color; 17 | background-color: $form-select-bg; 18 | background-image: escape-svg($form-select-indicator); 19 | background-repeat: no-repeat; 20 | background-position: $form-select-bg-position; 21 | background-size: $form-select-bg-size; 22 | border: $form-select-border-width solid $form-select-border-color; 23 | @include border-radius($form-select-border-radius, 0); 24 | @include box-shadow($form-select-box-shadow); 25 | @include transition($form-select-transition); 26 | appearance: none; 27 | 28 | &:focus { 29 | border-color: $form-select-focus-border-color; 30 | outline: 0; 31 | @if $enable-shadows { 32 | @include box-shadow($form-select-box-shadow, $form-select-focus-box-shadow); 33 | } @else { 34 | // Avoid using mixin so we can pass custom focus shadow properly 35 | box-shadow: $form-select-focus-box-shadow; 36 | } 37 | } 38 | 39 | &[multiple], 40 | &[size]:not([size="1"]) { 41 | padding-right: $form-select-padding-x; 42 | background-image: none; 43 | } 44 | 45 | &:disabled { 46 | color: $form-select-disabled-color; 47 | background-color: $form-select-disabled-bg; 48 | border-color: $form-select-disabled-border-color; 49 | } 50 | 51 | // Remove outline from select box in FF 52 | &:-moz-focusring { 53 | color: transparent; 54 | text-shadow: 0 0 0 $form-select-color; 55 | } 56 | } 57 | 58 | .form-select-sm { 59 | padding-top: $form-select-padding-y-sm; 60 | padding-bottom: $form-select-padding-y-sm; 61 | padding-left: $form-select-padding-x-sm; 62 | @include font-size($form-select-font-size-sm); 63 | @include border-radius($form-select-border-radius-sm); 64 | } 65 | 66 | .form-select-lg { 67 | padding-top: $form-select-padding-y-lg; 68 | padding-bottom: $form-select-padding-y-lg; 69 | padding-left: $form-select-padding-x-lg; 70 | @include font-size($form-select-font-size-lg); 71 | @include border-radius($form-select-border-radius-lg); 72 | } 73 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Base styles 3 | // 4 | 5 | .btn { 6 | display: inline-block; 7 | font-family: $btn-font-family; 8 | font-weight: $btn-font-weight; 9 | line-height: $btn-line-height; 10 | color: $body-color; 11 | text-align: center; 12 | text-decoration: if($link-decoration == none, null, none); 13 | white-space: $btn-white-space; 14 | vertical-align: middle; 15 | cursor: if($enable-button-pointers, pointer, null); 16 | user-select: none; 17 | background-color: transparent; 18 | border: $btn-border-width solid transparent; 19 | @include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-border-radius); 20 | @include transition($btn-transition); 21 | 22 | &:hover { 23 | color: $body-color; 24 | text-decoration: if($link-hover-decoration == underline, none, null); 25 | } 26 | 27 | .btn-check:focus + &, 28 | &:focus { 29 | outline: 0; 30 | box-shadow: $btn-focus-box-shadow; 31 | } 32 | 33 | .btn-check:checked + &, 34 | .btn-check:active + &, 35 | &:active, 36 | &.active { 37 | @include box-shadow($btn-active-box-shadow); 38 | 39 | &:focus { 40 | @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow); 41 | } 42 | } 43 | 44 | &:disabled, 45 | &.disabled, 46 | fieldset:disabled & { 47 | pointer-events: none; 48 | opacity: $btn-disabled-opacity; 49 | @include box-shadow(none); 50 | } 51 | } 52 | 53 | 54 | // 55 | // Alternate buttons 56 | // 57 | 58 | // scss-docs-start btn-variant-loops 59 | @each $color, $value in $theme-colors { 60 | .btn-#{$color} { 61 | @include button-variant($value, $value); 62 | } 63 | } 64 | 65 | @each $color, $value in $theme-colors { 66 | .btn-outline-#{$color} { 67 | @include button-outline-variant($value); 68 | } 69 | } 70 | // scss-docs-end btn-variant-loops 71 | 72 | 73 | // 74 | // Link buttons 75 | // 76 | 77 | // Make a button look and behave like a link 78 | .btn-link { 79 | font-weight: $font-weight-normal; 80 | color: $btn-link-color; 81 | text-decoration: $link-decoration; 82 | 83 | &:hover { 84 | color: $btn-link-hover-color; 85 | text-decoration: $link-hover-decoration; 86 | } 87 | 88 | &:focus { 89 | text-decoration: $link-hover-decoration; 90 | } 91 | 92 | &:disabled, 93 | &.disabled { 94 | color: $btn-link-disabled-color; 95 | } 96 | 97 | // No need for an active state here 98 | } 99 | 100 | 101 | // 102 | // Button Sizes 103 | // 104 | 105 | .btn-lg { 106 | @include button-size($btn-padding-y-lg, $btn-padding-x-lg, $btn-font-size-lg, $btn-border-radius-lg); 107 | } 108 | 109 | .btn-sm { 110 | @include button-size($btn-padding-y-sm, $btn-padding-x-sm, $btn-font-size-sm, $btn-border-radius-sm); 111 | } 112 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/forms/_form-range.scss: -------------------------------------------------------------------------------- 1 | // Range 2 | // 3 | // Style range inputs the same across browsers. Vendor-specific rules for pseudo 4 | // elements cannot be mixed. As such, there are no shared styles for focus or 5 | // active states on prefixed selectors. 6 | 7 | .form-range { 8 | width: 100%; 9 | height: add($form-range-thumb-height, $form-range-thumb-focus-box-shadow-width * 2); 10 | padding: 0; // Need to reset padding 11 | background-color: transparent; 12 | appearance: none; 13 | 14 | &:focus { 15 | outline: 0; 16 | 17 | // Pseudo-elements must be split across multiple rulesets to have an effect. 18 | // No box-shadow() mixin for focus accessibility. 19 | &::-webkit-slider-thumb { box-shadow: $form-range-thumb-focus-box-shadow; } 20 | &::-moz-range-thumb { box-shadow: $form-range-thumb-focus-box-shadow; } 21 | } 22 | 23 | &::-moz-focus-outer { 24 | border: 0; 25 | } 26 | 27 | &::-webkit-slider-thumb { 28 | width: $form-range-thumb-width; 29 | height: $form-range-thumb-height; 30 | margin-top: ($form-range-track-height - $form-range-thumb-height) * .5; // Webkit specific 31 | @include gradient-bg($form-range-thumb-bg); 32 | border: $form-range-thumb-border; 33 | @include border-radius($form-range-thumb-border-radius); 34 | @include box-shadow($form-range-thumb-box-shadow); 35 | @include transition($form-range-thumb-transition); 36 | appearance: none; 37 | 38 | &:active { 39 | @include gradient-bg($form-range-thumb-active-bg); 40 | } 41 | } 42 | 43 | &::-webkit-slider-runnable-track { 44 | width: $form-range-track-width; 45 | height: $form-range-track-height; 46 | color: transparent; // Why? 47 | cursor: $form-range-track-cursor; 48 | background-color: $form-range-track-bg; 49 | border-color: transparent; 50 | @include border-radius($form-range-track-border-radius); 51 | @include box-shadow($form-range-track-box-shadow); 52 | } 53 | 54 | &::-moz-range-thumb { 55 | width: $form-range-thumb-width; 56 | height: $form-range-thumb-height; 57 | @include gradient-bg($form-range-thumb-bg); 58 | border: $form-range-thumb-border; 59 | @include border-radius($form-range-thumb-border-radius); 60 | @include box-shadow($form-range-thumb-box-shadow); 61 | @include transition($form-range-thumb-transition); 62 | appearance: none; 63 | 64 | &:active { 65 | @include gradient-bg($form-range-thumb-active-bg); 66 | } 67 | } 68 | 69 | &::-moz-range-track { 70 | width: $form-range-track-width; 71 | height: $form-range-track-height; 72 | color: transparent; 73 | cursor: $form-range-track-cursor; 74 | background-color: $form-range-track-bg; 75 | border-color: transparent; // Firefox specific? 76 | @include border-radius($form-range-track-border-radius); 77 | @include box-shadow($form-range-track-box-shadow); 78 | } 79 | 80 | &:disabled { 81 | pointer-events: none; 82 | 83 | &::-webkit-slider-thumb { 84 | background-color: $form-range-thumb-disabled-bg; 85 | } 86 | 87 | &::-moz-range-thumb { 88 | background-color: $form-range-thumb-disabled-bg; 89 | } 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- 1 | // Base class 2 | .tooltip { 3 | position: absolute; 4 | z-index: $zindex-tooltip; 5 | display: block; 6 | margin: $tooltip-margin; 7 | // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element. 8 | // So reset our font and text properties to avoid inheriting weird values. 9 | @include reset-text(); 10 | @include font-size($tooltip-font-size); 11 | // Allow breaking very long words so they don't overflow the tooltip's bounds 12 | word-wrap: break-word; 13 | opacity: 0; 14 | 15 | &.show { opacity: $tooltip-opacity; } 16 | 17 | .tooltip-arrow { 18 | position: absolute; 19 | display: block; 20 | width: $tooltip-arrow-width; 21 | height: $tooltip-arrow-height; 22 | 23 | &::before { 24 | position: absolute; 25 | content: ""; 26 | border-color: transparent; 27 | border-style: solid; 28 | } 29 | } 30 | } 31 | 32 | .bs-tooltip-top { 33 | padding: $tooltip-arrow-height 0; 34 | 35 | .tooltip-arrow { 36 | bottom: 0; 37 | 38 | &::before { 39 | top: -1px; 40 | border-width: $tooltip-arrow-height ($tooltip-arrow-width * .5) 0; 41 | border-top-color: $tooltip-arrow-color; 42 | } 43 | } 44 | } 45 | 46 | .bs-tooltip-end { 47 | padding: 0 $tooltip-arrow-height; 48 | 49 | .tooltip-arrow { 50 | left: 0; 51 | width: $tooltip-arrow-height; 52 | height: $tooltip-arrow-width; 53 | 54 | &::before { 55 | right: -1px; 56 | border-width: ($tooltip-arrow-width * .5) $tooltip-arrow-height ($tooltip-arrow-width * .5) 0; 57 | border-right-color: $tooltip-arrow-color; 58 | } 59 | } 60 | } 61 | 62 | .bs-tooltip-bottom { 63 | padding: $tooltip-arrow-height 0; 64 | 65 | .tooltip-arrow { 66 | top: 0; 67 | 68 | &::before { 69 | bottom: -1px; 70 | border-width: 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height; 71 | border-bottom-color: $tooltip-arrow-color; 72 | } 73 | } 74 | } 75 | 76 | .bs-tooltip-start { 77 | padding: 0 $tooltip-arrow-height; 78 | 79 | .tooltip-arrow { 80 | right: 0; 81 | width: $tooltip-arrow-height; 82 | height: $tooltip-arrow-width; 83 | 84 | &::before { 85 | left: -1px; 86 | border-width: ($tooltip-arrow-width * .5) 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height; 87 | border-left-color: $tooltip-arrow-color; 88 | } 89 | } 90 | } 91 | 92 | .bs-tooltip-auto { 93 | &[data-popper-placement^="top"] { 94 | @extend .bs-tooltip-top; 95 | } 96 | &[data-popper-placement^="right"] { 97 | @extend .bs-tooltip-end; 98 | } 99 | &[data-popper-placement^="bottom"] { 100 | @extend .bs-tooltip-bottom; 101 | } 102 | &[data-popper-placement^="left"] { 103 | @extend .bs-tooltip-start; 104 | } 105 | } 106 | 107 | // Wrapper for the tooltip content 108 | .tooltip-inner { 109 | max-width: $tooltip-max-width; 110 | padding: $tooltip-padding-y $tooltip-padding-x; 111 | color: $tooltip-color; 112 | text-align: center; 113 | background-color: $tooltip-bg; 114 | @include border-radius($tooltip-border-radius); 115 | } 116 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_accordion.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Base styles 3 | // 4 | 5 | .accordion-button { 6 | position: relative; 7 | display: flex; 8 | align-items: center; 9 | width: 100%; 10 | padding: $accordion-button-padding-y $accordion-button-padding-x; 11 | @include font-size($font-size-base); 12 | color: $accordion-button-color; 13 | text-align: left; // Reset button style 14 | background-color: $accordion-button-bg; 15 | border: 0; 16 | @include border-radius(0); 17 | overflow-anchor: none; 18 | @include transition($accordion-transition); 19 | 20 | &:not(.collapsed) { 21 | color: $accordion-button-active-color; 22 | background-color: $accordion-button-active-bg; 23 | box-shadow: inset 0 ($accordion-border-width * -1) 0 $accordion-border-color; 24 | 25 | &::after { 26 | background-image: escape-svg($accordion-button-active-icon); 27 | transform: $accordion-icon-transform; 28 | } 29 | } 30 | 31 | // Accordion icon 32 | &::after { 33 | flex-shrink: 0; 34 | width: $accordion-icon-width; 35 | height: $accordion-icon-width; 36 | margin-left: auto; 37 | content: ""; 38 | background-image: escape-svg($accordion-button-icon); 39 | background-repeat: no-repeat; 40 | background-size: $accordion-icon-width; 41 | @include transition($accordion-icon-transition); 42 | } 43 | 44 | &:hover { 45 | z-index: 2; 46 | } 47 | 48 | &:focus { 49 | z-index: 3; 50 | border-color: $accordion-button-focus-border-color; 51 | outline: 0; 52 | box-shadow: $accordion-button-focus-box-shadow; 53 | } 54 | } 55 | 56 | .accordion-header { 57 | margin-bottom: 0; 58 | } 59 | 60 | .accordion-item { 61 | background-color: $accordion-bg; 62 | border: $accordion-border-width solid $accordion-border-color; 63 | 64 | &:first-of-type { 65 | @include border-top-radius($accordion-border-radius); 66 | 67 | .accordion-button { 68 | @include border-top-radius($accordion-inner-border-radius); 69 | } 70 | } 71 | 72 | &:not(:first-of-type) { 73 | border-top: 0; 74 | } 75 | 76 | // Only set a border-radius on the last item if the accordion is collapsed 77 | &:last-of-type { 78 | @include border-bottom-radius($accordion-border-radius); 79 | 80 | .accordion-button { 81 | &.collapsed { 82 | @include border-bottom-radius($accordion-inner-border-radius); 83 | } 84 | } 85 | 86 | .accordion-collapse { 87 | @include border-bottom-radius($accordion-border-radius); 88 | } 89 | } 90 | } 91 | 92 | .accordion-body { 93 | padding: $accordion-body-padding-y $accordion-body-padding-x; 94 | } 95 | 96 | 97 | // Flush accordion items 98 | // 99 | // Remove borders and border-radius to keep accordion items edge-to-edge. 100 | 101 | .accordion-flush { 102 | .accordion-collapse { 103 | border-width: 0; 104 | } 105 | 106 | .accordion-item { 107 | border-right: 0; 108 | border-left: 0; 109 | @include border-radius(0); 110 | 111 | &:first-child { border-top: 0; } 112 | &:last-child { border-bottom: 0; } 113 | 114 | .accordion-button { 115 | @include border-radius(0); 116 | } 117 | } 118 | } 119 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/mixins/_utilities.scss: -------------------------------------------------------------------------------- 1 | // Utility generator 2 | // Used to generate utilities & print utilities 3 | @mixin generate-utility($utility, $infix, $is-rfs-media-query: false) { 4 | $values: map-get($utility, values); 5 | 6 | // If the values are a list or string, convert it into a map 7 | @if type-of($values) == "string" or type-of(nth($values, 1)) != "list" { 8 | $values: zip($values, $values); 9 | } 10 | 11 | @each $key, $value in $values { 12 | $properties: map-get($utility, property); 13 | 14 | // Multiple properties are possible, for example with vertical or horizontal margins or paddings 15 | @if type-of($properties) == "string" { 16 | $properties: append((), $properties); 17 | } 18 | 19 | // Use custom class if present 20 | $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1)); 21 | $property-class: if($property-class == null, "", $property-class); 22 | 23 | // State params to generate pseudo-classes 24 | $state: if(map-has-key($utility, state), map-get($utility, state), ()); 25 | 26 | $infix: if($property-class == "" and str-slice($infix, 1, 1) == "-", str-slice($infix, 2), $infix); 27 | 28 | // Don't prefix if value key is null (eg. with shadow class) 29 | $property-class-modifier: if($key, if($property-class == "" and $infix == "", "", "-") + $key, ""); 30 | 31 | @if map-get($utility, rfs) { 32 | // Inside the media query 33 | @if $is-rfs-media-query { 34 | $val: rfs-value($value); 35 | 36 | // Do not render anything if fluid and non fluid values are the same 37 | $value: if($val == rfs-fluid-value($value), null, $val); 38 | } 39 | @else { 40 | $value: rfs-fluid-value($value); 41 | } 42 | } 43 | 44 | $is-css-var: map-get($utility, css-var); 45 | $is-local-vars: map-get($utility, local-vars); 46 | $is-rtl: map-get($utility, rtl); 47 | 48 | @if $value != null { 49 | @if $is-rtl == false { 50 | /* rtl:begin:remove */ 51 | } 52 | 53 | @if $is-css-var { 54 | .#{$property-class + $infix + $property-class-modifier} { 55 | --#{$variable-prefix}#{$property-class}: #{$value}; 56 | } 57 | 58 | @each $pseudo in $state { 59 | .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} { 60 | --#{$variable-prefix}#{$property-class}: #{$value}; 61 | } 62 | } 63 | } @else { 64 | .#{$property-class + $infix + $property-class-modifier} { 65 | @each $property in $properties { 66 | @if $is-local-vars { 67 | @each $local-var, $value in $is-local-vars { 68 | --#{$variable-prefix}#{$local-var}: #{$value}; 69 | } 70 | } 71 | #{$property}: $value if($enable-important-utilities, !important, null); 72 | } 73 | } 74 | 75 | @each $pseudo in $state { 76 | .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} { 77 | @each $property in $properties { 78 | #{$property}: $value if($enable-important-utilities, !important, null); 79 | } 80 | } 81 | } 82 | } 83 | 84 | @if $is-rtl == false { 85 | /* rtl:end:remove */ 86 | } 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /assets/css/_sass/bootstrap/_nav.scss: -------------------------------------------------------------------------------- 1 | // Base class 2 | // 3 | // Kickstart any navigation component with a set of style resets. Works with 4 | // `