Files
buildpath/frontend/assets/css/main.css
vhaudiquet a56b81835f
All checks were successful
pipeline / build-and-push-images (push) Successful in 26s
pipeline / deploy (push) Successful in 7s
Sidebar and tierlist changes
2024-11-30 13:06:44 +01:00

43 lines
801 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
--color-surface: #312E2C;
--color-on-surface: #B7B8E1;
--color-surface-darker: #1f1d1c;
}
/* Font setting */
h1,h2,h3,h4,h5,h6,p,a,input[type=text] {
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: normal;
font-style: normal;
color: var(--color-on-surface);
}
/* Default margins to none */
h1,h2,h3,h4,h5,h6,p,a {
margin: 0px;
}
body {
background-color: var(--color-surface);
padding: 0;
margin: 0;
}
/* Different title settings */
h1 {
font-size: 40px;
font-weight: 500;
}
h2 {
font-size: 24px;
font-weight: 400;
}
h3 {
font-size: 24px;
font-weight: 300;
}