You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
682 B

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,900;1,100;1,500&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: 'Baron';
src: url('/fonts/BaronNeue-Black.otf');
}
3 years ago
@font-face {
font-family: 'BaronLight';
src: url('/fonts/BaronNeue-Regular.otf');
}
:root {
font-family: 'Roboto', sans-serif;
}
.baron {
font-family: 'Baron', sans-serif;
}
3 years ago
.baron-light {
font-family: 'BaronLight', sans-serif;
}
.dark hr {
border-color: white;
border-width: 2px;
}
hr {
border-color: black;
border-width: 2px;
}
#svelte {
min-height: 100vh;
display: flex;
flex-direction: column;
}