-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmultimedia.njk
107 lines (94 loc) · 2.37 KB
/
multimedia.njk
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
title: 'Multimedia'
---
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
{% include 'components/meta.njk' %}
<title>Multimedia | EmptyWork</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="/css/style.css" />
<script src="/js/redirect.js"></script>
<style>
.score {
position: fixed;
top: 0;
left: 0;
padding: 1rem;
user-select: none;
z-index: 10;
}
.play {
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1rem 1.5rem;
color: #000;
position: fixed;
left: 50%;
top: 50%;
translate: x -50% y -50%;
}
.playButton {
margin-top: 1rem;
padding: 0.52rem 0.75rem;
border: none;
background-color: rebeccapurple;
color: #fff;
}
.overlay.pause {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
display: none;
z-index: 2;
align-items: center;
justify-content: center;
}
.pause {
position: fixed;
top: 1rem;
right: 1rem;
cursor: pointer;
padding: 0.52rem 0.75rem;
border: none;
background-color: rebeccapurple;
color: #fff;
z-index: 10;
}
</style>
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
</head>
<body class="t-all">
<main class="main">
<div class="overlay pause">
<p>PAUSE</p>
</div>
<div class="pause" onClick="pauseGame()">
Pause
</div>
<div class="score">
<span>Score:</span>
<span class="currentScore">0</span>
</div>
<div class="play">
<h1 class="currentScore">0</h1>
<p class="endScore">Score</p>
<button class="playButton">Start Game</button>
</div>
<canvas></canvas>
</main>
<script src="/js/gsap.min.js"></script>
<script src="/js/game.js"></script>
</body>
</html>