-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (60 loc) · 1.77 KB
/
Copy pathindex.html
File metadata and controls
74 lines (60 loc) · 1.77 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
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="128*128" href="/src/assets/neno.ico" />
<link rel="icon" type="image/png" sizes="512x512" href="/src/assets/neno.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="NENO">
<meta name="description" content="NENO">
<title>NENO</title>
<link href="//cdn.quilljs.com/1.0.0/quill.snow.css" rel="stylesheet">
<!--Set browser chrome theme color here-->
<meta name="theme-color" content="#f3f4f6" />
<!--Load google fonts here-->
<link href="https://fonts.googleapis.com/css?family=Oswald|Roboto&display=swap" rel="stylesheet" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
<style>
ol {
display: block;
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
}
ul {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
list-style-type: disc;
}
::-webkit-scrollbar {
width: 1px !important;
margin-left: 4px;
/* height: 5px!important; */
}
-webkit-tap-highlight-color: transparent;
::-webkit-tap-highlight-color:rgba(0, 0, 0, 0) ::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.3) !important;
border-radius: 100px !important;
}
::-webkit-scrollbar-track {
background-color: transparent !important;
}
::-webkit-scrollbar-thumb:hover {
background: #13B66A !important;
}
::-webkit-scrollbar-thumb:active {
background: #13B66A !important;
}
</style>