-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyless.css
More file actions
125 lines (107 loc) · 2.42 KB
/
Copy pathstyless.css
File metadata and controls
125 lines (107 loc) · 2.42 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Roboto+Mono:wght@400;700&display=swap');
html, body {
margin: 0;
padding: 0;
width: 100%;
overflow-x: hidden;
scroll-behavior: smooth;
}
body::-webkit-scrollbar {
width: 8px;
}
body::-webkit-scrollbar-track {
background: #020202;
}
body::-webkit-scrollbar-thumb {
background: #333;
border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
background: #00f0ff;
}
/* Glassmorphism panels */
.glass-panel {
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
/* Gradients & Glows */
.text-gradient {
background: linear-gradient(135deg, #00f0ff 0%, #b026ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.neon-btn {
box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.neon-btn:hover {
box-shadow: 0 0 25px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(0, 240, 255, 0.2);
text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
transform: translateY(-2px);
}
/* ThreeJS Canvas Positioning */
#hero-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
opacity: 0.7;
}
#globe-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: auto; /* Allow dragging */
cursor: grab;
}
#globe-canvas:active {
cursor: grabbing;
}
/* Make sure content sits above canvas */
.content-z {
position: relative;
z-index: 10;
}
/* Mobile Menu Transition */
.mobile-menu-open {
display: flex !important;
}
/* Terminal Scanlines Effect */
.scanlines::before {
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.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
z-index: 2;
background-size: 100% 4px, 6px 100%;
pointer-events: none;
}
/* Custom Text Selection */
::selection {
background: #00f0ff;
color: #020202;
}
.modal-open {
opacity: 1 !important;
pointer-events: auto !important;
}
/* Dialect Toggle visibility */
body:not(.lang-basic) .basic-text {
display: none !important;
}
body.lang-basic .fluid-text {
display: none !important;
}