website/style.css

43 lines
855 B
CSS

/* Copyright © 2022-2024 Primrose */
/* See the LICENSE file at https://git.primrose.cafe/primrose/website/src/branch/main/LICENSE for copyright and licensing details */
@font-face {
font-family: quicksand-regular;
src: url(https://primrose.cafe/assets/fonts/Quicksand-Regular.ttf);
}
body {
color: #ffffff;
background-image: url(/assets/images/background.jpg);
background-attachment: fixed;
background-position: center;
background-size: 900px;
text-align: center;
font-family: quicksand-regular;
}
a {
color: #ffffff;
}
.content {
margin: auto;
width: 60%;
}
.footer {
position: fixed;
bottom: 0px;
width: 100%;
}
.button {
text-decoration: none;
background-color: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
display: inline-block;
border-radius: 15px;
padding: 10px 10px;
}