ColdSlim commited on
Commit
c60096d
·
verified ·
1 Parent(s): 6a3b680

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +48 -0
styles/globals.css ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ :root {
6
+ --foreground-rgb: 255, 255, 255;
7
+ --background-start-rgb: 10, 10, 18;
8
+ --background-end-rgb: 18, 18, 31;
9
+ }
10
+
11
+ body {
12
+ color: rgb(var(--foreground-rgb));
13
+ background: linear-gradient(
14
+ to bottom,
15
+ transparent,
16
+ rgb(var(--background-end-rgb))
17
+ )
18
+ rgb(var(--background-start-rgb));
19
+ min-height: 100vh;
20
+ }
21
+
22
+ @layer utilities {
23
+ .text-gradient {
24
+ @apply bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary;
25
+ }
26
+
27
+ .glass-panel {
28
+ @apply bg-white/5 backdrop-blur-lg border border-white/10 rounded-2xl;
29
+ }
30
+ }
31
+
32
+ /* Custom Scrollbar */
33
+ ::-webkit-scrollbar {
34
+ width: 10px;
35
+ }
36
+
37
+ ::-webkit-scrollbar-track {
38
+ background: #0a0a12;
39
+ }
40
+
41
+ ::-webkit-scrollbar-thumb {
42
+ background: #333;
43
+ border-radius: 5px;
44
+ }
45
+
46
+ ::-webkit-scrollbar-thumb:hover {
47
+ background: #00f0ff;
48
+ }