-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
99 lines (80 loc) · 1.97 KB
/
index.css
File metadata and controls
99 lines (80 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 217 91% 60%;
--primary-foreground: 222 47.4% 11.2%;
--secondary: 240 3.7% 15.9%;
--secondary-foreground: 0 0% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 3.7% 15.9%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
--radius: 0.75rem;
}
* {
@apply border-border box-border;
}
html,
body {
height: 100%;
overflow: hidden;
@apply bg-[#050505] text-foreground font-sans antialiased;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
@apply bg-white/10 rounded-full transition-colors;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-white/20;
}
}
@layer components {
.glass-panel {
@apply bg-zinc-900/40 backdrop-blur-2xl border-r border-white/5 shadow-[5px_0_30px_rgba(0,0,0,0.5)];
}
.glass-card {
@apply bg-white/5 backdrop-blur-lg border border-white/10 hover:bg-white/10 transition-all duration-300;
}
}
@layer utilities {
.gpu {
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
}
.h-dvh {
height: 100dvh;
}
.bg-grid-pattern {
background-size: 40px 40px;
background-image: linear-gradient(
to right,
rgba(255, 255, 255, 0.03) 1px,
transparent 1px
),
linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.bg-noise {
background-image: url("https://grainy-gradients.vercel.app/noise.svg");
opacity: 0.03;
pointer-events: none;
}
}