SherlockRamos commited on
Commit
8ff8f48
·
verified ·
1 Parent(s): 0a5b3b5

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +52 -0
styles/globals.css ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');
6
+
7
+ @layer base {
8
+ html {
9
+ scroll-behavior: smooth;
10
+ }
11
+
12
+ body {
13
+ font-family: 'Inter', system-ui, sans-serif;
14
+ }
15
+
16
+ h1, h2, h3 {
17
+ font-family: 'Playfair Display', serif;
18
+ }
19
+ }
20
+
21
+ @layer components {
22
+ .btn-primary {
23
+ @apply bg-primary-600 hover:bg-primary-700 text-white font-medium py-3 px-6 rounded-lg transition-colors duration-200 shadow-lg hover:shadow-xl;
24
+ }
25
+
26
+ .btn-secondary {
27
+ @apply bg-white hover:bg-gray-50 text-primary-700 font-medium py-3 px-6 rounded-lg border border-primary-200 transition-colors duration-200;
28
+ }
29
+
30
+ .card {
31
+ @apply bg-white rounded-xl shadow-lg hover:shadow-xl transition-shadow duration-300 border border-gray-100;
32
+ }
33
+
34
+ .input-field {
35
+ @apply w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-transparent outline-none transition-all duration-200;
36
+ }
37
+ }
38
+
39
+ @layer utilities {
40
+ .text-gradient {
41
+ background: linear-gradient(135deg, #1e3cc4 0%, #3b6fff 100%);
42
+ -webkit-background-clip: text;
43
+ -webkit-text-fill-color: transparent;
44
+ background-clip: text;
45
+ }
46
+
47
+ .bg-pattern {
48
+ background-image:
49
+ radial-gradient(circle at 1px 1px, rgba(59, 111, 255, 0.1) 1px, transparent 0);
50
+ background-size: 20px 20px;
51
+ }
52
+ }