27 lines
764 B
CSS
27 lines
764 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.font-orbitron{
|
|
font-family: "Orbitron", sans-serif;
|
|
}
|
|
|
|
/* @layer base {
|
|
body {
|
|
@apply m-0 min-h-screen bg-slate-950;
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
}
|
|
|
|
/* Only keep custom styles that can't be handled by Tailwind */
|
|
/* @layer components {
|
|
.gradient-text {
|
|
@apply bg-gradient-to-r from-cyan-400 via-orange-400 to-red-400 bg-clip-text text-transparent;
|
|
}
|
|
} */
|