-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (41 loc) · 1.04 KB
/
Copy pathstyles.css
File metadata and controls
50 lines (41 loc) · 1.04 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.glass-panel {
@apply bg-navy-800/40 backdrop-blur-md border border-white/10 shadow-xl;
}
.glass-panel-hover {
@apply transition-all duration-300 hover:bg-navy-800/60 hover:border-cyan-500/30 hover:shadow-cyan-500/10;
}
.text-gradient {
@apply bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-indigo-400;
}
}
body {
margin: 0;
overflow-x: hidden;
}
/* Custom scrollbar for webkit */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #0A0F1C;
}
::-webkit-scrollbar-thumb {
background: #1F2937;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #374151;
}
/* Background mesh */
.bg-mesh {
background-color: #0A0F1C;
background-image:
radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 0.1) 0, transparent 50%),
radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 0.05) 0, transparent 50%);
}