sat-sw-website/assets/sass/user_styles.scss

48 lines
920 B
SCSS
Raw Normal View History

2023-12-09 17:11:07 +01:00
@font-face {
font-family: "univers";
2023-12-09 17:33:03 +01:00
src: url("/fonts/univers/UniversforUniS55Rm-Regular.ttf") format("truetype");
2023-12-09 17:11:07 +01:00
}
2023-12-09 17:16:14 +01:00
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Rubik:wght@300&display=swap");
2023-12-09 17:11:07 +01:00
body {
font-family: "univers";
}
2023-12-10 18:11:02 +01:00
// 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;
}
}
.content-button {
display: button;
background-color: #004191;
2023-12-10 18:52:03 +01:00
padding: 1.0rem;
2023-12-10 18:11:02 +01:00
margin: 0.5rem auto;
2023-12-10 18:52:03 +01:00
border: none;
2023-12-10 18:11:02 +01:00
text-align: center;
color: #ffffff;
text-decoration: none;
}
2023-12-10 19:29:43 +01:00
.content-button-text {
color: #ffffff;
padding-top: 1.0rem;
padding-bottom: 1.0rem;
2023-12-10 18:11:02 +01:00
}
2023-12-10 19:29:43 +01:00
.content-button-bg {
background-color: #004191;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
2023-12-10 18:11:02 +01:00
}