60 lines
1.1 KiB
SCSS
60 lines
1.1 KiB
SCSS
@font-face {
|
|
font-family: "univers";
|
|
src: url("/fonts/univers/UniversforUniS55Rm-Regular.ttf") format("truetype");
|
|
}
|
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Rubik:wght@300&display=swap");
|
|
|
|
body {
|
|
font-family: "univers";
|
|
}
|
|
|
|
// For some reason, Bootstrap 5 does not have this..
|
|
.fixed-md-bottom {
|
|
@include media-breakpoint-up(md) {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: $zindex-fixed;
|
|
}
|
|
}
|
|
|
|
// Not used anymore, not flexible enough..
|
|
.content-button {
|
|
display: button;
|
|
background-color: #004191;
|
|
padding: 1.0rem;
|
|
margin: 0.5rem auto;
|
|
border: none;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.content-button-text {
|
|
color: #ffffff;
|
|
padding-top: 1.0rem;
|
|
padding-bottom: 1.0rem;
|
|
}
|
|
|
|
.content-button-bg {
|
|
background-color: #004191;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.fsfw-img {
|
|
max-width: 50%;
|
|
height: auto;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.satrs-img {
|
|
max-width: 20%;
|
|
height: auto;
|
|
}
|