-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyless.css
More file actions
56 lines (50 loc) · 988 Bytes
/
Copy pathstyless.css
File metadata and controls
56 lines (50 loc) · 988 Bytes
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
/* Sinter Custom Styles */
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #050505;
}
/* Custom Fonts */
.font-mono {
font-family: 'JetBrains Mono', monospace;
}
.font-inter {
font-family: 'Inter', sans-serif;
}
/* Canvas styling */
#vortexCanvas {
mix-blend-mode: screen;
}
/* Scrollbar hiding for neatness */
::-webkit-scrollbar {
display: none;
}
/* Subtle glowing text effects for headers */
.glow-text {
text-shadow: 0 0 10px rgba(34, 211, 238, 0.5), 0 0 20px rgba(34, 211, 238, 0.3);
}
/* CRT scanline effect over UI */
body::after {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(
rgba(18, 16, 16, 0) 50%,
rgba(0, 0, 0, 0.1) 50%
),
linear-gradient(
90deg,
rgba(255, 0, 0, 0.03),
rgba(0, 255, 0, 0.01),
rgba(0, 0, 255, 0.03)
);
z-index: 50;
background-size: 100% 4px, 6px 100%;
pointer-events: none;
}