Skip to content

Commit

Permalink
Update next piece text to look less placeholder-y
Browse files Browse the repository at this point in the history
  • Loading branch information
elocnatsirt committed Apr 26, 2020
1 parent 275c0d4 commit 9d9413d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
</div>
</main>
<span class="anchor" id="section1"></span>
<span id="nextpiece">NEXT PIECE: [ ]</span>
<div id="keyBinds" style='color: white;' class="section">
<span id="upArrow" style='font-size:100px;color: white;'>&#8673;</span>
<br/>
Expand Down Expand Up @@ -79,6 +78,7 @@
</ul>
</div>
</body>
<span id="nextpiece">NEXT PIECE: [ ]</span>
<footer class='footer'>
<!-- Audio Tracks -->
<audio id="soundtrack">
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const numGrids = 8;
const sceneFPS = 60;

// Helper Vars
let toggleKeyBoard = true;
let toggleKeyBoard = false;
let toggleDebug = false;

// Cannon Vars
Expand Down
10 changes: 9 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,13 @@ canvas {
}
#nextpiece {
color: white;
position: absolute;
position: fixed;
bottom: 150px;
text-align: center;
width: 100%;
display: block;
font-family: 'Orbitron', sans-serif;
font-size: 20px;
}
#text {
position: absolute;
Expand All @@ -105,6 +111,8 @@ canvas {
display: block;
font-family: Arial, Helvetica, sans-serif;
color: white;
outline: 1px;
outline-color: #050505;
}
button {
font-size: 20px;
Expand Down

0 comments on commit 9d9413d

Please sign in to comment.