-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (87 loc) · 2.41 KB
/
Copy pathstyles.css
File metadata and controls
99 lines (87 loc) · 2.41 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
/* Custom styles for Flux Weave Studio */
:root {
--cyan: #00f2fe;
--purple: #4facfe;
--gold: #f9d423;
}
body {
font-family: 'Rajdhani', sans-serif;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.3);
}
.custom-scrollbar::-webkit-scrollbar {\n width: 4px;\n height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
/* Glass panel */
.glass-panel {
background: rgba(15, 20, 30, 0.65);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
/* Text glow */
.text-glow {
text-shadow: 0 0 20px rgba(0, 242, 254, 0.5), 0 0 40px rgba(79, 172, 254, 0.3);
}
/* Cyber grid background */
.grid-bg {
background-image:
linear-gradient(to right, rgba(0, 242, 254, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(0, 242, 254, 0.05) 1px, transparent 1px);
background-size: 50px 50px;
background-position: center center;
mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
-webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}
/* Glitch animation for UI elements */
@keyframes glitch {
0% { opacity: 1; transform: translate(0, 0); }
20% { opacity: 0.8; transform: translate(-2px, 1px); }
40% { opacity: 1; transform: translate(2px, -1px); }
60% { opacity: 0.9; transform: translate(-1px, 2px); }
80% { opacity: 1; transform: translate(1px, -2px); }
100% { opacity: 1; transform: translate(0, 0); }
}
.glitch-effect {
animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}
/* Loading dots animation */
.loading-dots::after {
content: '';
animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
0%, 20% { content: ''; }
40% { content: '.'; }
60% { content: '..'; }
80%, 100% { content: '...'; }
}
/* Fabric Console transition */
#console-output > div {
animation: fadeIn 0.3s ease-in-out forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}