Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehab Elasam committed Apr 3, 2024
2 parents e6574af + a628781 commit 0985256
Show file tree
Hide file tree
Showing 4 changed files with 694 additions and 174 deletions.
56 changes: 56 additions & 0 deletions frontend/css/player3d1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;

}

/* Styled game canvas */
#gameCanvas {
width: 640px;
height: 360px;
border: 5px solid #333; /* Dark border */
border-radius: 10px; /* Rounded corners */
background-color: #1a1a1a; /* Dark gray background */
}

/* Styled scoreboard */
#scoreboard {
text-align: center;
font-family: 'Segoe UI', 'Helvetica', 'Ubuntu', sans-serif;
color: #fff; /* White text color */
margin-top: 20px; /* Spacing above the scoreboard */
}

/* Styled scores */
#scores {
font-size: 4em; /* Larger font size */
padding: 10px; /* Increased padding */
margin: 0;
color: #ffc107; /* Yellow text color */
}

/* Styled title */
#title {
background-color: #ffc107; /* Yellow background */
color: #333; /* Dark text color */
padding: 10px; /* Padding around the title */
font-size: 1.5em; /* Larger font size */
margin-bottom: 20px; /* Spacing below the title */
border-radius: 5px; /* Rounded corners */
}

/* Instructions */
#instructions {
text-align: center;
color: #fff; /* White text color */
font-family: 'Segoe UI', 'Helvetica', 'Ubuntu', sans-serif;
margin-top: 20px; /* Spacing above the instructions */
}

/* Unique styling for instructions */
#instructions h3 {
font-size: 1em; /* Font size for instructions */
}
113 changes: 0 additions & 113 deletions frontend/index.html

This file was deleted.

Loading

0 comments on commit 0985256

Please sign in to comment.