-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 835 Bytes
/
index.html
File metadata and controls
38 lines (37 loc) · 835 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<title>Signals</title>
<style>
body {
height: 100svh;
display: grid;
place-content: center;
margin: 0px;
font-family: 'Monaspace Neon', monospace;
color: #fff;
background-color: #1b1e28;
}
button {
padding: 1.4rem 2rem;
font: inherit;
font-size: 2rem;
font-weight: 500;
color: #011212;
background-color: #00eceb;
border: none;
border-top: 1px solid #00fffe;
border-radius: 4px;
box-shadow: 0px 0px 10px #000;
cursor: pointer;
}
</style>
</head>
<body>
<button>0</button>
<script type="module" src="/main.js"></script>
</body>
</html>