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
4 changes: 2 additions & 2 deletions myScripts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

//TypeScript is more preferred over Javascript now as it defines the type!
var playerone,playertwo;
var player1color = 'rgb(244, 65, 65)';
var player2color = 'rgb(66, 134, 244)';
Expand Down Expand Up @@ -204,4 +204,4 @@ function startTimer() {
clearInterval(timer);
timer = setInterval(updateTimer, 1000);
updateTimer();
}
}
3 changes: 2 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
border: 4px solid black;
border-radius: 50%;
}

/* By using tailwind much of the efforts would have been saved! */
.navbar, .footer{
height: 80px;
background-color: magenta;
Expand Down Expand Up @@ -135,3 +135,4 @@ input::-webkit-inner-spin-button {
input[type=number] {
-moz-appearance: textfield;
}