- Static HTML hotel website with Bootstrap 5 - i18next-based client-side internationalization - Language switcher (DE/EN) in navbar - German and English translation JSON files - Translated: navigation, content, forms, FAQ, legal pages (AGB) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
661 B
SCSS
26 lines
661 B
SCSS
// stylelint-disable property-disallowed-list
|
|
@mixin transition($transition...) {
|
|
@if length($transition) == 0 {
|
|
$transition: $transition-base;
|
|
}
|
|
|
|
@if length($transition) > 1 {
|
|
@each $value in $transition {
|
|
@if $value == null or $value == none {
|
|
@warn "The keyword 'none' or 'null' must be used as a single argument.";
|
|
}
|
|
}
|
|
}
|
|
|
|
@if $enable-transitions {
|
|
@if nth($transition, 1) != null {
|
|
transition: $transition;
|
|
}
|
|
|
|
@if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none {
|
|
@media (prefers-reduced-motion: reduce) {
|
|
transition: none;
|
|
}
|
|
}
|
|
}
|
|
}
|