-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 809 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Popcorn</title>
</head>
<body>
<div class="container">
<button id="pushForPopcorn">
Push for Popcorn
</button>
</div>
<script src="./index.js"></script>
<style>
img {
position: fixed;
top: 0;
left: 0;
}
button {
position: fixed;
top: 25%;
padding: 8px 16px;
font-size: 64px;
background: #aa0f0f;
border: none;
border-radius: 16px;
align-self: center;
color: #afafaf;
}
body {
background: url("./bg.png");
}
.container {
display: flex;
flex-direction: column;
justify-content: space-around;
}
</style>
<img style="display: none" src="./popcorn.png" />
</body>
</html>