raouldukelivesagain commited on
Commit
63d692b
·
verified ·
1 Parent(s): 8d8373e

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +27 -0
styles/globals.css ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @layer base {
6
+ body {
7
+ @apply bg-dark text-light min-h-screen;
8
+ }
9
+ }
10
+
11
+ @layer components {
12
+ .btn-primary {
13
+ @apply px-6 py-3 bg-primary hover:bg-secondary text-white font-semibold rounded-lg transition-colors duration-200;
14
+ }
15
+
16
+ .btn-secondary {
17
+ @apply px-6 py-3 bg-gray-700 hover:bg-gray-600 text-white font-semibold rounded-lg transition-colors duration-200;
18
+ }
19
+
20
+ .card {
21
+ @apply bg-gray-800 rounded-xl p-6 shadow-lg border border-gray-700;
22
+ }
23
+
24
+ .stat-card {
25
+ @apply bg-gray-900 rounded-lg p-4 border border-gray-700;
26
+ }
27
+ }