-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
40 lines (35 loc) · 1014 Bytes
/
index.css
File metadata and controls
40 lines (35 loc) · 1014 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
body {
background: radial-gradient(circle at 12% 16%, rgba(53, 214, 255, 0.32), transparent 30%),
radial-gradient(circle at 88% 0%, rgba(255, 92, 138, 0.26), transparent 34%),
radial-gradient(circle at 48% 58%, rgba(139, 92, 246, 0.34), transparent 32%),
linear-gradient(135deg, #080411 0%, #160c33 45%, #2c124f 100%);
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
/* Grid Lines */
body::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
background-size: 50px 50px;
top: 0;
left: 0;
z-index: 0;
}
/* Glow Effect */
body::after {
content: "";
position: absolute;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 0, 150, 0.4), transparent);
filter: blur(120px);
top: 20%;
left: 30%;
z-index: 0;
}