-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (23 loc) · 1.8 KB
/
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
<!DOCTYPE html>
<html lang="en">
<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>Simon Game!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-blue-200">
<h1 class="text-center text-7xl pt-8 invisible xl:visible 2xl:visible lg:visible sm:invisible" id="gameStatus">Press a key to start !</h1>
<h1 class="text-center text-7xl pt-8 visible lg:invisible sm:visible md:visible" id="gameStatus2">Press start to begin !</h1>
<h2 class="text-center pt-24 text-4xl" >Level <b id="level">1</b></h2>
<div class="grid grid-cols-2 space-x-7 space-y-10" id="mains">
<div id="1" class="bg-red-500 move hover:bg-red-600 w-48 h-48 active:duration-75 active:border-8 active:transition-all active:bg-red-800 justify-self-end border-4 border-black rounded-xl mt-10"></div>
<div id="2" class="bg-blue-500 move hover:bg-blue-600 w-48 h-48 active:duration-75 active:border-8 active:transition-all active:bg-blue-800 justify-self-start border-4 border-black rounded-xl"></div>
<div id="3" class="bg-yellow-500 move hover:bg-yellow-600 w-48 h-48 active:border-8 active:duration-75 active:transition-all active:bg-yellow-800 justify-self-end border-4 border-black rounded-xl"></div>
<div id="4" class="bg-green-500 move hover:bg-green-600 w-48 h-48 active:border-8 active:duration-75 active:transition-all active:bg-green-800 justify-self-start border-4 border-black rounded-xl"></div>
<button id="btnn" class="visible lg:invisible sm:visible md:visible left-1/2 border-2 border-black bg-blue-400 hover:bg-inherit active:bg-blue-600 relative">Start!</button>
</div>
<script src="index.js" type="text/javascript"></script>
</body>
</html>