33 lines
728 B
CSS
33 lines
728 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;
|
|
--background-start-rgb: 0, 0, 0;
|
|
--background-end-rgb: 0, 0, 0;
|
|
font-family: "Splatoon", sans-serif;
|
|
}
|
|
|
|
body {
|
|
color: rgb(var(--foreground-rgb));
|
|
background: linear-gradient(
|
|
to bottom,
|
|
transparent,
|
|
rgb(var(--background-end-rgb))
|
|
)
|
|
rgb(var(--background-start-rgb));
|
|
}
|
|
|
|
body a,p,h1,h2,h3,h4,h5,h6,span,li,ul {
|
|
font-family: "Splatoon", sans-serif;
|
|
}
|
|
|