-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (62 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="application-name" content="Web oscilloscope">
<meta name="author" content="super16">
<meta name="description" content="Web oscilloscope application made with Vue.js">
<meta name="keywords" content="CSS, HTML, oscilloscope, JavaScript, Vue.js, canvas">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="/css/style.css" rel="stylesheet">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="manifest" href="/manifest.webmanifest">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<style>
:root {
--small: 16px;
--medium: 18px;
--large: 24px;
--extra-large: 32px;
--red: oklch(65% 0.29 27.5);
--red-fallback: red;
--violet: oklch(58% 0.28 300);
--violet-fallback: #9832ff;
}
@font-face {
font-family: 'Press Start 2P';
font-style: normal;
font-display: swap;
font-weight: 400;
src: local(''),
url('/fonts/press-start-2p-v14-latin-regular.woff2') format('woff2'),
url('/fonts/press-start-2p-v14-latin-regular.woff') format('woff');
}
body {
background: linear-gradient(to right, black, rgb(0, 0, 50)),
url("/img/noise.svg");
color: white;
display: grid;
gap: var(--large);
grid-auto-rows: auto 1fr auto;
font-family: 'Press Start 2P', normal;
margin: 0;
min-height: 100%;
padding: 0;
}
html {
height: 100%;
}
</style>
<title>Web Oscilloscope</title>
<script type="module" src="/src/main.ts"></script>
</head>
<body>
<header>
<h1>Web Oscilloscope</h1>
</header>
<main id="app"></main>
<footer>made by <a href="https://github.com/super16">super16</a></footer>
</body>
</html>