27 lines
598 B
CSS
27 lines
598 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
body {
|
|
@apply bg-black text-white;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.pixel-border {
|
|
border: 2px solid;
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
image-rendering: crisp-edges;
|
|
}
|
|
|
|
.text-pixel {
|
|
font-family: 'Courier New', monospace;
|
|
text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
|
|
letter-spacing: 1px;
|
|
}
|
|
}
|
|
|