- 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>
65 lines
885 B
SCSS
65 lines
885 B
SCSS
.site-footer {
|
|
padding: 70px 0;
|
|
a {
|
|
position: relative;
|
|
display: inline-block;
|
|
color: rgba($black, .5);
|
|
&:before {
|
|
|
|
}
|
|
&:hover {
|
|
color: $black;
|
|
&:before {
|
|
background: rgba($primary, 1);
|
|
}
|
|
}
|
|
}
|
|
.btn {
|
|
&:before {
|
|
display: none;
|
|
}
|
|
}
|
|
.widget {
|
|
margin-bottom: 40px;
|
|
display: block;
|
|
h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.links {
|
|
width: 150px;
|
|
li {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.social {
|
|
li {
|
|
display: inline-block;
|
|
a {
|
|
display: inline-block;
|
|
width: 30px;
|
|
height: 30px;
|
|
position: relative;
|
|
background: $primary;
|
|
border-radius: 50%;
|
|
color: $black;
|
|
&:before {
|
|
display: none;
|
|
}
|
|
> span {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
&:hover {
|
|
background: lighten($primary, 10%);
|
|
color: $black;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|