Skip to content

Commit

Permalink
fixing gameover
Browse files Browse the repository at this point in the history
  • Loading branch information
LeahJKH committed May 13, 2024
1 parent 06bcc24 commit 173580d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions Css/stylesover.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,19 @@ body {
}
h1 {
color: red;
font-size: 59px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
button {
width: 200px;
height: 50px;
background-color: rgba(0, 0, 0, 1);
color: red;
background-color: rgb(20, 20, 20);
color: rgb(244, 242, 242);
border: 2px solid rgb(228, 226, 226);
}
button:hover {

background-color: rgb(51, 51, 51);
color: rgb(204, 202, 202);
border: 2px solid rgb(228, 226, 226);
}
2 changes: 1 addition & 1 deletion js/boss.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { elements, enemies, emilBossDialog, player } from "./module.js";
import { elements, enemies, player } from "./module.js";

document.addEventListener("DOMContentLoaded", function () {
function initializeGame() {
Expand Down

0 comments on commit 173580d

Please sign in to comment.