-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (53 loc) · 1.39 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<link rel="icon" type="image/png" href="assets/favicon.png">
<title>Notablemind</title>
<style>
body {
/* padding: 50px; */
/* background-color: #013;
color: #afa; */
}
div {
flex-shrink: 0;
min-width: 0;
min-height: 0;
}
.ql-bubble .ql-tooltip {
z-index: 1000;
}
/* .ql-editor.ql-blank::before {
border-bottom: 3px dotted #ccc;
left: 5px!important;
top: 2px;
} */
.ql-editor {
padding: 5px!important;
overflow: visible!important;
}
.ql-editor a[href^="nm://"]::before {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z" fill="#aaf"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
background-size: contain;
content: " ";
display: inline-block;
width: 15px;
height: 15px;
}
.ql-link-hover {
position: absolute;
border-radius: 3px;
box-shadow: 0 0 5px #ccc;
background-color: white;
padding: 4px 8px;
/* cursor: pointer; */
font-family: sans-serif;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="./bundle/index.js"></script>
</body>
</html>