santiagr7776 commited on
Commit
c3fa261
·
verified ·
1 Parent(s): 6c476b2

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +23 -0
styles/globals.css ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @layer base {
6
+ html { @apply scroll-smooth; }
7
+ body { @apply bg-slate-50 text-slate-900 dark:bg-slate-900 dark:text-slate-100; }
8
+ }
9
+
10
+ @layer components {
11
+ .glass-panel { @apply bg-white/80 backdrop-blur-md border border-white/20 shadow-lg; }
12
+ .btn-primary { @apply px-6 py-3 bg-primary-600 text-white rounded-lg font-medium hover:bg-primary-700 transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 disabled:opacity-50 disabled:cursor-not-allowed; }
13
+ .btn-secondary { @apply px-6 py-3 bg-slate-200 text-slate-800 rounded-lg font-medium hover:bg-slate-300 transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-slate-500 focus:ring-offset-2; }
14
+ .input-field { @apply w-full px-4 py-3 border border-slate-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent dark:bg-slate-800 dark:border-slate-600 dark:text-white; }
15
+ .card { @apply bg-white dark:bg-slate-800 rounded-xl shadow-sm border border-slate-200 dark:border-slate-700 p-6 transition-all duration-200 hover:shadow-md; }
16
+ }
17
+
18
+ @layer utilities {
19
+ .text-gradient { @apply bg-clip-text text-transparent bg-gradient-to-r from-primary-600 to-helios-600; }
20
+ .animate-delay-100 { animation-delay: 100ms; }
21
+ .animate-delay-200 { animation-delay: 200ms; }
22
+ .animate-delay-300 { animation-delay: 300ms; }
23
+ }