- 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>
52 lines
No EOL
1.5 KiB
SCSS
52 lines
No EOL
1.5 KiB
SCSS
/*
|
|
Flaticon icon font: Flaticon
|
|
Creation date: 24/12/2020 12:48
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: "Flaticon";
|
|
src: url("./Flaticon.eot");
|
|
src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
|
|
url("./Flaticon.woff2") format("woff2"),
|
|
url("./Flaticon.woff") format("woff"),
|
|
url("./Flaticon.ttf") format("truetype"),
|
|
url("./Flaticon.svg#Flaticon") format("svg");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
|
@font-face {
|
|
font-family: "Flaticon";
|
|
src: url("./Flaticon.svg#Flaticon") format("svg");
|
|
}
|
|
}
|
|
|
|
.fi:before{
|
|
display: inline-block;
|
|
font-family: "Flaticon";
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
line-height: 1;
|
|
text-decoration: inherit;
|
|
text-rendering: optimizeLegibility;
|
|
text-transform: none;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-smoothing: antialiased;
|
|
}
|
|
|
|
.flaticon-trekking:before { content: "\f100"; }
|
|
.flaticon-map:before { content: "\f101"; }
|
|
.flaticon-suitcase:before { content: "\f102"; }
|
|
.flaticon-island:before { content: "\f103"; }
|
|
.flaticon-around:before { content: "\f104"; }
|
|
.flaticon-plane:before { content: "\f105"; }
|
|
|
|
$font-Flaticon-trekking: "\f100";
|
|
$font-Flaticon-map: "\f101";
|
|
$font-Flaticon-suitcase: "\f102";
|
|
$font-Flaticon-island: "\f103";
|
|
$font-Flaticon-around: "\f104";
|
|
$font-Flaticon-plane: "\f105"; |