Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseoverright committed Dec 12, 2015
0 parents commit 2e335fe
Show file tree
Hide file tree
Showing 19 changed files with 39,054 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
.DS_Store
/node_modules/
214 changes: 214 additions & 0 deletions dist/blank.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
[
{
"name": "",
"questions": [
{
"value": 100,
"question": "",
"answer": "",
"answered": true
},
{
"value": 200,
"question": "",
"answer": "",
"answered": true
},
{
"value": 300,
"question": "",
"answer": "",
"answered": true
},
{
"value": 400,
"question": "",
"answer": "",
"answered": true
},
{
"value": 500,
"question": "",
"answer": "",
"answered": true
}
]
},
{
"name": "",
"questions": [
{
"value": 100,
"question": "",
"answer": "",
"answered": true
},
{
"value": 200,
"question": "",
"answer": "",
"answered": true
},
{
"value": 300,
"question": "",
"answer": "",
"answered": true
},
{
"value": 400,
"question": "",
"answer": "",
"answered": true
},
{
"value": 500,
"question": "",
"answer": "",
"answered": true
}
]
},
{
"name": "",
"questions": [
{
"value": 100,
"question": "",
"answer": "",
"answered": true
},
{
"value": 200,
"question": "",
"answer": "",
"answered": true
},
{
"value": 300,
"question": "",
"answer": "",
"answered": true
},
{
"value": 400,
"question": "",
"answer": "",
"answered": true
},
{
"value": 500,
"question": "",
"answer": "",
"answered": true
}
]
}
,
{
"name": "",
"questions": [
{
"value": 100,
"question": "",
"answer": "",
"answered": true
},
{
"value": 200,
"question": "",
"answer": "",
"answered": true
},
{
"value": 300,
"question": "",
"answer": "",
"answered": true
},
{
"value": 400,
"question": "",
"answer": "",
"answered": true
},
{
"value": 500,
"question": "",
"answer": "",
"answered": true
}
]
},
{
"name": "",
"questions": [
{
"value": 100,
"question": "",
"answer": "",
"answered": true
},
{
"value": 200,
"question": "",
"answer": "",
"answered": true
},
{
"value": 300,
"question": "",
"answer": "",
"answered": true
},
{
"value": 400,
"question": "",
"answer": "",
"answered": true
},
{
"value": 500,
"question": "",
"answer": "",
"answered": true
}
]
}
,
{
"name": "",
"questions": [
{
"value": 100,
"question": "",
"answer": "",
"answered": true
},
{
"value": 200,
"question": "",
"answer": "",
"answered": true
},
{
"value": 300,
"question": "",
"answer": "",
"answered": true
},
{
"value": 400,
"question": "",
"answer": "",
"answered": true
},
{
"value": 500,
"question": "",
"answer": "",
"answered": true
}
]
}
]
Binary file added dist/css/korinnaitc.ttf
Binary file not shown.
97 changes: 97 additions & 0 deletions dist/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
body {
margin: 0;
padding: 0;
font-family: helvetica, serif;
background-color: #041F9D;
}

@font-face {
font-family: 'ITC Korinna';
src: url('korinnaitc.ttf');
}

@font-face {
font-family: 'Swiss 911';
src: url('swiss911_ucm_bt.ttf');
}

.board {
margin: 0 auto;
}

.category {
width: 16.66667%;
float: left;
background-color: #000;
}

.category-header {
display: table;
width: 100%;
height: 75px;
background: gray;
padding: 1.5%;
text-shadow: 2px 2px 2px #000;
text-transform: uppercase;
}

.category-header p {
display: table-cell;
vertical-align: middle;
text-align: center;
color: #fff;
font-size: 50px;
background: #041F9D;
height: 115px;
font-family: 'Swiss 911';
}

.question {
background-color: #041F9D;
display: table;
width: 97%;
margin: 1.5%;
height: 115px;
border-radius: 10px;
}

.question p {
color: #EDA958;
display: table-cell;
vertical-align: middle;
text-align: center;
font-size: 100px;
font-weight: bold;
text-shadow: 3px 3px 2px #000;
font-family: 'Swiss 911';
}

.current-question {
background-color: #041F9D;
position: absolute;
width: 100%;
height: 100%;
display: table;
}

.current-question p {
font-size: 90px;
color: #fff;
text-transform: uppercase;
text-shadow: 8px 8px 2px #000;
padding: 0 200px;
vertical-align: middle;
text-align: center;
display: table-cell;
font-family: 'ITC Korinna', helvetica, serif;
line-height: 1.1em;
}

.final-jeopardy {
background-image: url('../final-jeopardy.png');
background-repeat: no-repeat;
width: 80%;
height: 750px;
margin: 0 auto;
background-size: cover;
}
Binary file added dist/css/swiss911_ucm_bt.ttf
Binary file not shown.
Binary file added dist/final-jeopardy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions dist/final.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Final Jeopardy</title>
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="main"></div>
<script src="js/final.js"></script>
</body>
</html>
13 changes: 13 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Jeopardy</title>
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="main"></div>
<script src="js/bundle.js"></script>
</body>
</html>
Binary file added dist/jeopardy-game-board-daily-double.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2e335fe

Please sign in to comment.