shism commited on
Commit
e1497d3
·
verified ·
1 Parent(s): 349134a

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: 3, 7, 18;
8
+ --background-end-rgb: 3, 7, 18;
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
+ background-color: #030712;
20
+ background-image:
21
+ radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
22
+ radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
23
+ overflow: hidden;
24
+ }
25
+
26
+ /* Custom Scrollbar */
27
+ ::-webkit-scrollbar {
28
+ width: 6px;
29
+ height: 6px;
30
+ }
31
+
32
+ ::-webkit-scrollbar-track {
33
+ background: transparent;
34
+ }
35
+
36
+ ::-webkit-scrollbar-thumb {
37
+ background: rgba(255, 255, 255, 0.1);
38
+ border-radius: 3px;
39
+ }
40
+
41
+ ::-webkit-scrollbar-thumb:hover {
42
+ background: rgba(255, 255, 255, 0.2);
43
+ }
44
+
45
+ /* Utility for mono font */
46
+ .font-mono {
47
+ font-family: 'JetBrains Mono', monospace;
48
+ }