-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 1005 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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<style>
* {
margin: 0;
padding: 0;
box-sizing: content-box;
}
* {
outline: none;
}
body {
width: 100vw;
height: 100vh;
}
kbd {
color: #fbf1c7;
border: 0.1rem solid #fbf1c7;
border-radius: 5px;
padding: 3px;
}
#root {
width: 100%;
height: 100%;
}
div::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}
.line::selection {
background: #fbf1c7;
color: #282828;
text-shadow: none;
}
.line > *::selection {
background: #fbf1c7;
color: #282828;
text-shadow: none;
}
</style>
<title>Chorui</title>
</head>
<body>
<div id="root"></div>
<script src="./build/editor.js"></script>
</body>
</html>