Archived
19 lines
382 B
CSS
19 lines
382 B
CSS
@import url('https://fonts.cdnfonts.com/css/roboto-condensed-3');
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
body {
|
|
@apply bg-gray-800 text-zinc-100;
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
}
|
|
|
|
.input-text-field {
|
|
@apply text-gray-800 p-2 rounded-md;
|
|
}
|
|
|
|
.button-primary {
|
|
@apply bg-blue-500 text-white px-4 py-2 rounded-md hover:bg-blue-600;
|
|
} |