00Boobs00 commited on
Commit
c85520a
·
verified ·
1 Parent(s): 40a7a19

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +31 -0
styles/globals.css ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @layer base {
6
+ body {
7
+ @apply bg-gray-50 text-gray-900 dark:bg-dark-bg dark:text-gray-100 transition-colors duration-300;
8
+ }
9
+ }
10
+
11
+ @layer components {
12
+ .btn {
13
+ @apply inline-flex items-center justify-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2 transition-colors duration-200;
14
+ }
15
+
16
+ .btn-primary {
17
+ @apply btn bg-primary-600 text-white hover:bg-primary-700 focus:ring-primary-500;
18
+ }
19
+
20
+ .btn-secondary {
21
+ @apply btn bg-white text-gray-700 border-gray-300 hover:bg-gray-50 dark:bg-dark-surface dark:text-gray-200 dark:border-gray-600 dark:hover:bg-gray-700;
22
+ }
23
+
24
+ .card {
25
+ @apply bg-white rounded-lg shadow-sm border border-gray-200 dark:bg-dark-surface dark:border-dark-border p-6;
26
+ }
27
+
28
+ .input-field {
29
+ @apply w-full rounded-md border-gray-300 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:bg-dark-bg dark:border-gray-600 dark:text-white sm:text-sm;
30
+ }
31
+ }