-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (52 loc) · 857 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (52 loc) · 857 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
* {
margin: 0;
padding: 0;
overflow: hidden;
}
body {
background: #000;
height: 100vh;
width: 100vw;
font-family: Arial, sans-serif;
color: white;
}
#galaxy {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.star {
position: absolute;
background: white;
border-radius: 50%;
pointer-events: none;
}
.constellation {
position: absolute;
color: rgba(255, 255, 255, 0.3);
font-size: 1px;
opacity: 0.6;
pointer-events: none;
}
.shooting-star {
position: absolute;
width: 6px;
height: 6px;
background: white;
border-radius: 50%;
box-shadow: 0 0 10px 2px #fff, 0 0 20px 4px #0ff;
pointer-events: none;
}
.info {
position: fixed;
bottom: 20px;
left: 20px;
font-size: 16px;
color: #aaa;
z-index: 10;
background: rgba(0, 0, 0, 0.5);
padding: 10px;
border-radius: 8px;
}