-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.html
96 lines (81 loc) · 4.7 KB
/
bootstrap.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
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
<!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, shrink-to-fit=yes">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Six+Caps" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap_local.css">
<link rel="stylesheet" href="css/simon.css">
<title>Blog Template for Bootstrap</title>
</head>
<body>
<div class="container">
<!--<div class="row">-->
<!--<div class="col-md-2"><p>Box md1</p></div>-->
<!--<div class="col-md-10"><p>Box md2</p></div>-->
<!--<div class="col-md-6"><p>Box md1</p></div>-->
<!--<div class="col-md-6"><p>Box md2</p></div>-->
<!--<div class="col-sm-2"><p>Box sm1</p></div>-->
<!--<div class="col-sm-10"><p>Box sm2</p></div>-->
<!--<div class="col-xs-5"><p>Box xs1</p></div>-->
<!--<div class="col-xs-7"><p>Box xs2</p></div>-->
<!--</div>-->
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-11">
<div class="svg-container">
<svg viewBox="0 0 510 90"><title>Top_bar</title><path class="cls-1" d="M495,0H465V30h30a15,15,0,0,0,0-30Z"/><rect class="cls-2" x="205" width="255" height="30"/><path class="cls-1" d="M150,0H75C33.58,0,0,33.39,0,74.59V90H149.5V67.13C149.5,46.53,169.29,30,190,30h10V0Z"/><text class="cls-3" transform="translate(215 24.1)">SIMPLE SIMON GAME</text></svg>
</div>
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-2 col-xs-4">
<div class="svg-container">
<svg viewBox="0 0 152 60"><rect class="cls-2" width="152" height="60"/><text class="cls-3" transform="translate(120 54)">GNDN</text></svg>
<svg id="start" cursor="pointer" viewBox="0 0 152 60"><rect class="cls-1" width="152" height="60"/><text class="cls-3" transform="translate(116 54)">START</text></svg>
<svg viewBox="0 0 152 60"><rect class="cls-2" width="152" height="60"/><text id="counter" class="cls-3" transform="translate(100 54)">ROUND: </text></svg>
<svg viewBox="0 0 152 60"><rect class="cls-4" width="152" height="60"/><text class="cls-5" transform="translate(120 54)">GNDN</text></svg>
<svg viewBox="0 0 152 60"><rect class="cls-4" width="152" height="60"/><text class="cls-6" transform="translate(120 54)">GNDN</text></svg>
</div>
</div>
<div class="col-md-10 col-sm-10 col-xs-8">
<table id="Simon-game">
<tr>
<td>
<audio src="sounds/redBox.mp3" id="redBoxAudio" type="audio/mp3"></audio>
<div id="redBox" class="btn square"></div>
</td>
<td>
<audio src="sounds/greenBox.mp3" id="greenBoxAudio" type="audio/mp3"></audio>
<div id="greenBox" class="btn square"></div>
</td>
</tr>
<tr>
<td>
<audio src="sounds/blueBox.mp3" id="blueBoxAudio" type="audio/mp3"></audio>
<div id="blueBox" class="btn square"></div>
</td>
<td>
<audio src="sounds/yellowBox.mp3" id="yellowBoxAudio" type="audio/mp3"></audio>
<div id="yellowBox" class="btn square"></div>
</td>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-11">
<div class="svg-container">
<svg viewBox="0 0 510 90"><defs><style>.cls-1{fill:#dfa047;}.cls-2{fill:#f1d167;}.cls-3{font-family: 'Six Caps', sans-serif; font-size: x-large;}</style></defs><title>Bottom_bar</title><path class="cls-1" d="M495,90H465V60h30a15,15,0,0,1,0,30Z"/><rect class="cls-2" x="205" y="60" width="255" height="30"/><path class="cls-1" d="M150,90H75C33.58,90,0,56.61,0,15.41V0H149.5V22.87C149.5,43.47,169.29,60,190,60h10V90Z"/><text class="cls-3" transform="translate(215 84.1)">HMT3DESIGN.COM</text><</svg>
</div>
</div>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
</body>
<script src="js/simon.js"></script>
</html>