Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'Arkanoid' Game Errors #984

Merged
merged 1 commit into from
Aug 8, 2023
Merged
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
42 changes: 40 additions & 2 deletions src/Games/Arkanoid/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
body{
font-family: math;
}
.App {
text-align: center;
}
Expand Down Expand Up @@ -34,11 +37,12 @@
}
.Paddle {
position: absolute;
border: 1px solid rgb(255, 0, 0);
border: none;
border-radius: 10px;
width: 100px;
height: 15px;
background-color: white;
background-color: #3e0f0f !important;
top: 300px !important;
}
.Ball {
position: absolute;
Expand All @@ -49,3 +53,37 @@
border: 1px solid black;
background-color: white;
}
.Text {
margin-top: 350px !important;
}
button.Button {
margin-top: 9rem;
background: none;
color: white;
padding: 12px 30px;
border: 1px solid grey;
border-radius: 1rem;
font-size: 1.3rem !important;
font-family: math;
}
.Signature {
top: 408px !important;
left: 409px !important;
color: cadetblue !important;
}
.Score {
top: 410px !important;
left: 216px !important;
color: cadetblue !important;
}
.Text {
letter-spacing: -3px !important;
position: absolute;
text-align: center;
left: 0px;
width: 100%;
font-size: 60px !important;
display: inline-block !important;
font-weight: bold !important;
color: #7594a3 !important;
}
Loading