152 lines
3.1 KiB
CSS
152 lines
3.1 KiB
CSS
@font-face {
|
|
font-display: swap;
|
|
font-family: "biro script plus";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(/_static/fonts/biro-script-plus/regular.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "brandon text";
|
|
font-weight: 700;
|
|
src:
|
|
url(/_static/fonts/brandon-text/bold.woff2) format("woff2"),
|
|
url(/_static/fonts/brandon-text/bold.woff) format("woff");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "brandon text";
|
|
font-weight: 900;
|
|
src:
|
|
url(/_static/fonts/brandon-text/black.woff2) format("woff2"),
|
|
url(/_static/fonts/brandon-text/black.woff) format("woff");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira mono";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(/_static/fonts/fira-mono/regular.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira mono";
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
src: url(/_static/fonts/fira-mono/medium.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira mono";
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: url(/_static/fonts/fira-mono/bold.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira sans";
|
|
font-style: normal;
|
|
font-weight: 300;
|
|
src: url(/_static/fonts/fira-sans/light.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira sans";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(/_static/fonts/fira-sans/regular.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira sans";
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
src: url(/_static/fonts/fira-sans/medium.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira sans";
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
src: url(/_static/fonts/fira-sans/semibold.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira sans";
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: url(/_static/fonts/fira-sans/bold.woff2) format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-display: swap;
|
|
font-family: "fira sans";
|
|
font-style: normal;
|
|
font-weight: 900;
|
|
src: url(/_static/fonts/fira-sans/black.woff2) format("woff2");
|
|
}
|
|
|
|
:root {
|
|
--current-max-width: 113.5rem;
|
|
|
|
--max-width: 94.5rem;
|
|
--max-width-content: 74.75rem;
|
|
--max-width-text-block: 49.5rem;
|
|
--current-mobile-site-header-height: 70.047px;
|
|
--max-width-navigation: 89.5rem;
|
|
|
|
--main-menu-mobile-height: 75px;
|
|
--main-menu-desktop-height: 118px;
|
|
--booking-widget-mobile-height: 75px;
|
|
--booking-widget-desktop-height: 77px;
|
|
--hotel-page-map-desktop-width: 23.75rem;
|
|
|
|
/* Z-INDEX */
|
|
--header-z-index: 10;
|
|
--menu-overlay-z-index: 10;
|
|
--dialog-z-index: 9;
|
|
--sidepeek-z-index: 11;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
min-height: 100dvh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body.overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
@media screen and (min-width: 768px) {
|
|
body.overflow-hidden {
|
|
overflow: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
padding-inline-start: 0;
|
|
margin-block-start: 0;
|
|
margin-block-end: 0;
|
|
}
|