33 lines
820 B
CSS
33 lines
820 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: 'Splatoon';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url('/assets/fonts/Splatoon2-common.woff2') format('woff2'),
|
|
url('/assets/fonts/Splatoon2-common.woff') format('woff');
|
|
}
|
|
|
|
:root {
|
|
--foreground-rgb: 255, 255, 255;
|
|
font-family: "Splatoon", sans-serif;
|
|
}
|
|
|
|
body {
|
|
color: rgb(var(--foreground-rgb));
|
|
background-color: black;
|
|
background-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/bg.jpg");
|
|
background-repeat: repeat;
|
|
background-size: 300px;
|
|
background-position: center;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
body a,p,h1,h2,h3,h4,h5,h6,span,li,ul {
|
|
font-family: "Splatoon", sans-serif;
|
|
}
|