24 lines
438 B
CSS
24 lines
438 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
color-scheme: light;
|
|
}
|
|
|
|
body {
|
|
background: radial-gradient(circle at 10% 20%, #f5f7ff, #ffffff 35%, #f7faff);
|
|
min-height: 100vh;
|
|
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.prose img {
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
|
|
}
|