pages/css/style.css
2023-08-24 15:19:10 +02:00

95 lines
1.8 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
padding: 0;
margin: 0;
}
* {
font-family: "Noto Sans", "Noto Color Emoji", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Outfit", "Noto Color Emoji", sans-serif;
margin-bottom: 6px;
}
body {
background: #f8fafc;
}
.container {
max-width: 1100px;
width: 100%;
margin: 0 auto;
}
ul, ol {
list-style-position: inside;
}
.pageHero {
background-image: url("../img/spawn.jpg");
background-position: center;
color: #fff;
height: 240px;
}
.pageHero > .blurFiler {
backdrop-filter: blur(2px);
padding: 8px 0;
height: calc(100% - 16px);
}
.pageHero > .blurFiler > .container {
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.pageNav {
width: 100svw;
background: #f1f5f9;
}
.pageNav > .container {
padding: 16px 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.pageNav > .container > ul {
list-style: none;
display: flex;
gap: 8px;
}
.pageNav > .container > ul > li > a {
color: #0f172a;
text-decoration: none;
padding: 8px 16px;
border-radius: 32px;
}
.pageNav > .container > ul > li > a:hover, .pageNav > .container > ul > li > a.active {
background: rgba(15, 23, 42, 0.1);
}
.pageNav > .container > ul > li > a.buttonPrimary {
background: #6366f1;
color: #fff;
}
.pageContent {
margin: 16px 0;
}
.pageFooter {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.pageFooter > .left {
display: flex;
flex-direction: column;
}
/*# sourceMappingURL=style.css.map */