This repository has been archived on 2025-11-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
levyraatiRevived.old/src/app.css
T

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;
}