-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.66 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond&family=Libre+Baskerville&display=swap" rel="stylesheet">
<title>React + TypeScript + Replit</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
}
@font-face {
font-family: 'Futura';
src: url('https://fonts.cdnfonts.com/css/futura-pt') format('woff2');
}
@font-face {
font-family: 'Gill Sans';
src: url('https://fonts.cdnfonts.com/css/gill-sans') format('woff2');
}
@font-face {
font-family: 'Palatino';
src: url('https://fonts.cdnfonts.com/css/palatino') format('woff2');
}
.ql-editor {
padding: 20px;
line-height: 1.6;
}
.ql-editor p {
margin-bottom: 1em;
}
.ql-snow .ql-toolbar {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-color: #e2e8f0;
}
.ql-container.ql-snow {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
border-color: #e2e8f0;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script src="" theme="dark" position="bottom-right"></script>
</body>
</html>