-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (43 loc) · 952 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Ukladanka</title>
<style media="screen">
*{
box-sizing: border-box;
}
body{
position: relative;
height: 90vh;
background-color: #333;
z-index: -10;
padding: 0 10px;
}
#ukladanka{
z-index: 1 !important;
}
#guideImage{
z-index: 0 !important;
position: absolute;
}
#puzzleTimer{
width: 100%;
font-size: 50px;
text-align: center;
color: white;
font-weight: bold;
user-select: none;
}
</style>
<script type="text/javascript" src="script.js">
</script>
</head>
<body onload="init();">
<div id="puzzleTimer"></div>
<canvas id="guideImage"></canvas>
<canvas id="ukladanka">
Twoja przeglądarka nie wspiera tej treści
</canvas>
</body>
</html>