-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 893 Bytes
/
index.html
File metadata and controls
43 lines (40 loc) · 893 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>hi</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
background: #000;
overflow: hidden;
contain: layout size;
}
#Ξ_NODE {
position: absolute;
top: 0;
left: 0;
display: inline-flex;
line-height: 0;
color: #fff;
}
#Ξ_NODE svg {
width: auto;
height: auto;
display: block;
overflow: visible;
}
#Ξ_NODE svg * {
fill: currentColor !important;
transition: fill 0.05s linear;
}
</style>
</head>
<body>
<div id="Ξ_NODE"></div>
<script src="script.js"></script>
</body>
</html>