-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
72 lines (64 loc) · 1.99 KB
/
App.css
File metadata and controls
72 lines (64 loc) · 1.99 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
*
{
font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.App {
min-height: 100vh;
display: flex;
flex-direction: column;
position: relative;
isolation: isolate;
}
.app::before {
content: "";
position: fixed;
inset: 0;
z-index: -1;
background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
background-size: 72px 72px;
mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 75%);
}
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;
}
body {
margin: 0;
padding: 0;
min-height: 100vh;
overflow-x: hidden;
position: relative;
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%);
}
/* Grid */
body::before {
content: "";
position: fixed; /* 🔥 important */
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: -1;
}
/* Glow */
body::after {
content: "";
position: fixed; /* 🔥 important */
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 0, 150, 0.4), transparent);
top: 20%;
left: 30%;
z-index: -1;
}