39 lines
No EOL
616 B
CSS
39 lines
No EOL
616 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
/* Default styles */
|
|
h1, h2, h3 {
|
|
margin-bottom: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.75rem;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
button {
|
|
@apply p-2 rounded-md text-white transition-all duration-200 hover:bg-surface-2;
|
|
}
|
|
|
|
/* Import the WOFF IBM VGA font */
|
|
@font-face {
|
|
font-family: 'IBM VGA 8x16';
|
|
src: url('/Web437_IBM_VGA_8x16.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
.vga-font {
|
|
font-family: 'IBM VGA 8x16', monospace;
|
|
|
|
text-shadow: 1px 1px 0 black;
|
|
} |