-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmod.ts
55 lines (53 loc) · 1.25 KB
/
mod.ts
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
const generate = () => {
return Math.round(Math.random() * 1000000)
}
const response = () => {
return `
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Número da Sorte</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body, html, .container {
min-height: 100vh;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.text-uppercase {
text-transform: uppercase;
}
.text-center {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1 class="text-uppercase text-center">Número da Sorte</h1>
<h2 class="text-center">${generate()}</h2>
</div>
</body>
</html>
`
}
addEventListener('fetch', event => {
event.respondWith(
new Response(response(), {
status: 200,
headers: { 'content-type': 'text/html' }
})
)
})