Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .DS_Store
Binary file not shown.
Binary file added public/.DS_Store
Binary file not shown.
43 changes: 43 additions & 0 deletions public/Simon.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!doctype html>
<html>

<head>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" media="screen" />
<link rel="stylesheet" href="css/Simon.css" />
<link href="https://fonts.googleapis.com/css?family=Russo+One" rel="stylesheet">
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="js/Simon.js"></script>
</head>

<body>
<div class="container-fluid" style="margin-top:20px">
<div class="display" id="display">SIMON</div>
<div>
<button class="mode selected" id="btnoriginal ">ORIGINAL</button>
<button class="mode" id="btnstrict">STRICT</button>
</div>
<div class="circle">

<div class="position:absolute">
<div class="red but" id="0"></div>
<div class="blue but" id="1"></div>
<div class="yellow but" id="2"></div>
<div class="green but" id="3"></div>
<div class="panel">
SIMON
<div class="counter"><span id="count">999</span></div>
<div class="start" id="start">
<div>START</div>
</div>
</div>
</div>

</div>
<audio id="redsound" src="audio/simonSound1.mp3" preload="auto"></audio>
<audio id="bluesound" src="audio/simonSound2.mp3" preload="auto"></audio>
<audio id="yellowsound" src="audio/simonSound3.mp3" preload="auto"></audio>
<audio id="greensound" src="audio/simonSound4.mp3" preload="auto"></audio>
<audio id="losesound" src="audio/DONKEY_C.WAV" preload="auto"></audio>
</body>

</html>
Binary file added public/audio/.DS_Store
Binary file not shown.
Binary file added public/audio/DONKEY_C.WAV
Binary file not shown.
Binary file added public/audio/simonSound1.mp3
Binary file not shown.
Binary file added public/audio/simonSound2.mp3
Binary file not shown.
Binary file added public/audio/simonSound3.mp3
Binary file not shown.
Binary file added public/audio/simonSound4.mp3
Binary file not shown.
45 changes: 45 additions & 0 deletions public/bower_components/bootstrap/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "bootstrap",
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
"keywords": [
"css",
"js",
"less",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "http://getbootstrap.com",
"license": "MIT",
"moduleType": "globals",
"main": [
"less/bootstrap.less",
"dist/js/bootstrap.js"
],
"ignore": [
"/.*",
"_config.yml",
"CNAME",
"composer.json",
"CONTRIBUTING.md",
"docs",
"js/tests",
"test-infra"
],
"dependencies": {
"jquery": "1.9.1 - 3"
},
"version": "3.3.7",
"_release": "3.3.7",
"_resolution": {
"type": "version",
"tag": "v3.3.7",
"commit": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
},
"_source": "https://github.com/twbs/bootstrap.git",
"_target": "^3.3.7",
"_originalSource": "bootstrap",
"_direct": true
}
5 changes: 5 additions & 0 deletions public/bower_components/bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.

See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.

Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
6 changes: 6 additions & 0 deletions public/bower_components/bootstrap/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://rubygems.org'

group :development, :test do
gem 'jekyll', '~> 3.1.2'
gem 'jekyll-sitemap', '~> 0.11.0'
end
43 changes: 43 additions & 0 deletions public/bower_components/bootstrap/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.4.0)
colorator (0.1)
ffi (1.9.14-x64-mingw32)
jekyll (3.1.6)
colorator (~> 0.1)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 3.0)
mercenary (~> 0.3.3)
rouge (~> 1.7)
safe_yaml (~> 1.0)
jekyll-sass-converter (1.4.0)
sass (~> 3.4)
jekyll-sitemap (0.11.0)
addressable (~> 2.4.0)
jekyll-watch (1.4.0)
listen (~> 3.0, < 3.1)
kramdown (1.11.1)
liquid (3.0.6)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
mercenary (0.3.6)
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.11.1)
safe_yaml (1.0.4)
sass (3.4.22)

PLATFORMS
x64-mingw32

DEPENDENCIES
jekyll (~> 3.1.2)
jekyll-sitemap (~> 0.11.0)

BUNDLED WITH
1.12.5
Loading