27 lines
385 B
CSS
27 lines
385 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--foreground-rgb: 0, 0, 0;
|
|
--background-rgb: 255, 255, 255;
|
|
}
|
|
|
|
body {
|
|
color: rgb(var(--foreground-rgb));
|
|
background: rgb(var(--background-rgb));
|
|
}
|
|
|
|
.prose img {
|
|
margin: 2rem auto;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.prose a {
|
|
color: #2563eb;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.prose a:hover {
|
|
color: #1d4ed8;
|
|
} |