87 lines
1.6 KiB
CSS
87 lines
1.6 KiB
CSS
@font-face {
|
|
font-family: "Cinzel";
|
|
src: url(assets/cinzel/Cinzel/Cinzel-Regular.ttf) format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "NunitoSans";
|
|
src: url(assets/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf);
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "NunitoSans";
|
|
src: url(assets/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf);
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: "Cinzel";
|
|
}
|
|
|
|
body:before {
|
|
content: ' ';
|
|
display: block;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0.1;
|
|
background-image: url("assets/logo.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: 0 50%;
|
|
background-size: 100% auto;
|
|
z-index: -1;
|
|
}
|
|
|
|
body {
|
|
font-family: "NunitoSans";
|
|
overflow: hidden;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.dvh-100 {
|
|
height: 100vh; /* Compatibility fallback */
|
|
height: 100dvh; /* Dynamic viewport height */
|
|
}
|
|
|
|
.text-small {
|
|
font-size: 12px;
|
|
}
|
|
.text-xsmall {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.carousel-fit {
|
|
height:40vh;
|
|
width: 100vw;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.carousel-fit > * {
|
|
max-height: 40vh;
|
|
max-width: 100vw;
|
|
}
|
|
|
|
.carousel-caption {
|
|
position: relative;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 64px;
|
|
--bs-bg-opacity: 0.5;
|
|
}
|
|
.carousel-indicators button {
|
|
background-color: #fff !important;
|
|
}
|