-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1019 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Color4</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<style>
html,
body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
body {
background:
linear-gradient(
45deg,
rgba(0, 0, 0, 0.4) 25%,
transparent 25%,
transparent 75%,
rgba(0, 0, 0, 0.4) 75%,
rgba(0, 0, 0, 0.4)),
linear-gradient(
45deg,
rgba(0, 0, 0, 0.4) 25%,
transparent 25%,
transparent 75%,
rgba(0, 0, 0, 0.4) 75%,
rgba(0, 0, 0, 0.4));
background-size: 40px 40px;
background-position: 0 0, 20px 20px;
}
#app {
height: 100%;
}
</style>
</body>
</html>