Álvaro Valenzuela Valdes commited on
Commit
9b881be
·
1 Parent(s): 77efd75

fix: Resolve PostCSS syntax errors in globals.css

Browse files
Files changed (1) hide show
  1. frontend/globals.css +14 -4
frontend/globals.css CHANGED
@@ -27,7 +27,10 @@
27
 
28
  @layer base {
29
  body {
30
- @apply bg-[#030303] text-foreground antialiased;
 
 
 
31
  background-image:
32
  radial-gradient(at 0% 0%, hsla(263, 70%, 50%, 0.15) 0px, transparent 50%),
33
  radial-gradient(at 100% 100%, hsla(190, 70%, 50%, 0.1) 0px, transparent 50%);
@@ -37,11 +40,16 @@
37
 
38
  @layer components {
39
  .glass-card {
40
- @apply bg-black/40 backdrop-blur-md border border-white/10 shadow-xl transition-all duration-300;
 
 
 
 
41
  }
42
 
43
  .glass-card:hover {
44
- @apply border-white/20 bg-black/50;
 
45
  }
46
 
47
  .premium-gradient {
@@ -49,7 +57,9 @@
49
  }
50
 
51
  .text-gradient {
52
- @apply bg-clip-text text-transparent bg-gradient-to-r from-indigo-400 via-purple-400 to-pink-400;
 
 
53
  }
54
  }
55
 
 
27
 
28
  @layer base {
29
  body {
30
+ background-color: #030303;
31
+ color: hsl(var(--foreground));
32
+ font-feature-settings: "rlig" 1, "calt" 1;
33
+ -webkit-font-smoothing: antialiased;
34
  background-image:
35
  radial-gradient(at 0% 0%, hsla(263, 70%, 50%, 0.15) 0px, transparent 50%),
36
  radial-gradient(at 100% 100%, hsla(190, 70%, 50%, 0.1) 0px, transparent 50%);
 
40
 
41
  @layer components {
42
  .glass-card {
43
+ background-color: rgba(0, 0, 0, 0.4);
44
+ backdrop-filter: blur(12px);
45
+ border: 1px solid rgba(255, 255, 255, 0.1);
46
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
47
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
48
  }
49
 
50
  .glass-card:hover {
51
+ border-color: rgba(255, 255, 255, 0.2);
52
+ background-color: rgba(0, 0, 0, 0.5);
53
  }
54
 
55
  .premium-gradient {
 
57
  }
58
 
59
  .text-gradient {
60
+ background-image: linear-gradient(to right, #818cf8, #c084fc, #f472b6);
61
+ -webkit-background-clip: text;
62
+ color: transparent;
63
  }
64
  }
65