13 lines
229 B
CSS
13 lines
229 B
CSS
@import 'tailwindcss';
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
body {
|
|
@apply container mx-auto px-4 py-8 text-base text-gray-200 bg-slate-900;
|
|
|
|
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: #00B7FF;
|
|
}
|