-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (78 loc) · 2.2 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (78 loc) · 2.2 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
body {
font-family: 'Inter', sans-serif;
background-color: #050505;
color: #ffffff;
overflow-x: hidden;
}
#features, #security, #download {
scroll-margin-top: 85px;
}
.gradient-text {
background: linear-gradient(to bottom, #ffffff 0%, #6b7280 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.floating-blob {
position: absolute;
filter: blur(80px);
opacity: 0.3;
animation: float 10s infinite ease-in-out;
z-index: 0;
}
.blob-1 { top: 10%; left: 10%; width: 300px; height: 300px; background: #2563eb; animation-delay: 0s; }
.blob-2 { bottom: 20%; right: 10%; width: 400px; height: 400px; background: #4f46e5; animation-delay: -5s; }
.blob-3 { top: 40%; left: 50%; width: 200px; height: 200px; background: #9333ea; animation-delay: -2s; transform: translate(-50%, -50%); }
@keyframes float {
0% { transform: translate(0, 0) scale(1); }
50% { transform: translate(20px, -20px) scale(1.1); }
100% { transform: translate(0, 0) scale(1); }
}
#network-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
pointer-events: none;
opacity: 0.4;
}
.glass-panel {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.glass-panel:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.1);
transform: translateY(-5px);
}
.z-content {
z-index: 10;
position: relative;
}
#navbar {
transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease;
border-bottom: 1px solid transparent;
}
.scrolled-nav {
background-color: rgba(5, 5, 5, 0.85);
backdrop-filter: blur(15px);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
#console-output {
height: 300px;
overflow-y: scroll;
color: #e5e7eb;
font-size: 0.875rem;
line-height: 1.4;
padding: 0.5rem 1.5rem 1.5rem;
-ms-overflow-style: none;
scrollbar-width: none;
}
#console-output::-webkit-scrollbar {
display: none;
}