-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (79 loc) · 2.23 KB
/
styles.css
File metadata and controls
87 lines (79 loc) · 2.23 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow: hidden;
position: relative;
height: 100vh;
font-family: 'Arial', sans-serif;
}
#quantumCanvas {
display: block;
position: absolute;
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 100%;
}
.quantum-glow {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background:
radial-gradient(circle at 30% 30%, rgba(0, 180, 216, 0.03) 0%, transparent 25%),
radial-gradient(circle at 70% 70%, rgba(0, 116, 217, 0.03) 0%, transparent 25%),
radial-gradient(circle at 50% 20%, rgba(10, 26, 47, 0.05) 0%, transparent 30%);
pointer-events: none;
z-index: 1;
animation: pulse 18s infinite alternate;
will-change: transform;
}
.quantum-grid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(0, 116, 217, 0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 116, 217, 0.04) 1px, transparent 1px);
background-size: 40px 40px;
z-index: 2;
opacity: 0.7;
will-change: background-position;
}
.quantum-title {
position: absolute;
bottom: 20px;
right: 20px;
color: rgba(173, 232, 244, 0.7);
font-size: 12px;
font-weight: 300;
letter-spacing: 3px;
text-transform: uppercase;
z-index: 20;
text-shadow: 0 0 15px rgba(0, 180, 216, 0.7);
}
@keyframes pulse {
0%, 100% { opacity: 0.3; transform: scale(0.95); }
50% { opacity: 0.6; transform: scale(1.05); }
}
.particle-texture {
position: absolute;
width: 100%;
height: 100%;
background:
url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E"),
linear-gradient(to bottom, transparent 95%, rgba(0,180,216,0.1) 100%);
pointer-events: none;
z-index: 5;
}
@media (max-width: 768px) {
.quantum-grid { background-size: 20px 20px; }
.quantum-title { font-size: 10px; }
}