-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
78 lines (66 loc) · 3.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Smart Text Editor</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover">
<meta name="author" content="Brandon Bennett">
<meta name="description" content="Smart Text Editor is a vanilla JavaScript PWA that allows you to work on your coding projects from any device, in any browser, even if you don't have Internet access.">
<meta property="og:title" content="Smart Text Editor">
<meta property="og:description" content="The text editor that requires only a browser and a keyboard!">
<meta property="og:image" content="https://stedit.app/resources/share-1200.png">
<meta property="og:url" content="https://stedit.app">
<meta name="twitter:card" content="summary_large_image">
<meta id="theme_color" name="theme-color" content="#1e1e1e">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Text Editor">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<base href="./" target="_blank">
<link rel="canonical" href="https://stedit.app">
<link rel="manifest" href="./manifest.webmanifest">
<link rel="icon" type="image/svg+xml" href="./img/icon.svg">
<link rel="alternate icon" type="image/png" sizes="16x16" href="./img/icon-16.png">
<link rel="alternate icon" type="image/png" sizes="32x32" href="./img/icon-32.png">
<link rel="apple-touch-icon" sizes="180x180" href="./img/app-apple-touch-180.png">
<link rel="apple-touch-icon" sizes="1024x1024" href="./img/app-apple-touch-1024.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cousine&family=Rubik&display=swap">
<link rel="preload" as="fetch" crossorigin href="https://cdn.jsdelivr.net/npm/@stedit/num-text/styles/vanilla-layout.css">
<link rel="preload" as="fetch" crossorigin href="https://cdn.jsdelivr.net/npm/@stedit/num-text/styles/vanilla-appearance.css">
<link rel="preload" as="fetch" crossorigin href="https://cdn.jsdelivr.net/npm/@stedit/num-text/styles/vanilla-highlighting.css">
<script src="https://cdn.jsdelivr.net/npm/@stedit/num-text/dist/index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@stedit/menu-drop/dist/index.js"></script>
<script>
if (window.self === window.top){
document.documentElement.classList.add("startup-fade");
}
</script>
<link rel="stylesheet" href="./src/index.scss">
<style id="scrollbar_styles">
::-webkit-scrollbar {
width: var(--scrollbar-width);
height: var(--scrollbar-height);
}
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
background: none;
}
::-webkit-scrollbar-thumb {
width: 36px;
height: 36px;
background: #808080;
background-clip: content-box;
border: var(--scrollbar-border-width) solid transparent;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #a0a0a0;
}
</style>
<style id="theme_styles"></style>
</head>
<body class="code horizontal" data-view="code" data-orientation="horizontal" ontouchstart>
<div id="root"></div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>