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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
227 changes: 0 additions & 227 deletions 26 - Stripe Follow Along Nav/index-START.html

This file was deleted.

42 changes: 0 additions & 42 deletions 27 - Click and Drag/index-START.html

This file was deleted.

2 changes: 1 addition & 1 deletion 29 - Countdown Timer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ <h1 class="display__time-left"></h1>
</div>
</div>

<script src="scripts-START.js"></script>
<script src="scripts-FINISHED.js"></script>
</body>
</html>
5 changes: 4 additions & 1 deletion 30 - Whack A Mole/index-FINISHED.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
<body>

<h1>Whack-a-mole! <span class="score">0</span></h1>
<button onClick="startGame()">Start!</button>
<div class="btn">
<button onClick="startGame()">Start the GAME</button>
</div>


<div class="game">
<div class="hole hole1">
Expand Down
43 changes: 0 additions & 43 deletions 30 - Whack A Mole/index-START.html

This file was deleted.

11 changes: 11 additions & 0 deletions 30 - Whack A Mole/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ body {
font-family: 'Amatic SC', cursive;
}

.btn{
padding: 30px;
}
button{
font-size: 2rem;
padding: 1rem 2rem;
border: none;
border-radius: 5px;
cursor: pointer;
}

h1 {
text-align: center;
font-size: 10rem;
Expand Down