diff --git a/13_whack_a_mole(game)/app.js b/13_whack_a_mole(game)/app.js new file mode 100644 index 0000000..e69de29 diff --git a/13_whack_a_mole(game)/images/mario-bg.jpg b/13_whack_a_mole(game)/images/mario-bg.jpg new file mode 100644 index 0000000..d2e4aa3 Binary files /dev/null and b/13_whack_a_mole(game)/images/mario-bg.jpg differ diff --git a/13_whack_a_mole(game)/images/monty-mole.png b/13_whack_a_mole(game)/images/monty-mole.png new file mode 100644 index 0000000..523a515 Binary files /dev/null and b/13_whack_a_mole(game)/images/monty-mole.png differ diff --git a/13_whack_a_mole(game)/images/pipe.png b/13_whack_a_mole(game)/images/pipe.png new file mode 100644 index 0000000..fb1d6be Binary files /dev/null and b/13_whack_a_mole(game)/images/pipe.png differ diff --git a/13_whack_a_mole(game)/images/piranha-plant.png b/13_whack_a_mole(game)/images/piranha-plant.png new file mode 100644 index 0000000..ad5fb99 Binary files /dev/null and b/13_whack_a_mole(game)/images/piranha-plant.png differ diff --git a/13_whack_a_mole(game)/images/soil.png b/13_whack_a_mole(game)/images/soil.png new file mode 100644 index 0000000..94e3b38 Binary files /dev/null and b/13_whack_a_mole(game)/images/soil.png differ diff --git a/13_whack_a_mole(game)/index.html b/13_whack_a_mole(game)/index.html new file mode 100644 index 0000000..6a80485 --- /dev/null +++ b/13_whack_a_mole(game)/index.html @@ -0,0 +1,17 @@ + + + + + + Whack a Mole Game + + + +

Whack a Mole

+

0

+
+ + + + + \ No newline at end of file diff --git a/13_whack_a_mole(game)/styles.css b/13_whack_a_mole(game)/styles.css new file mode 100644 index 0000000..f1dedd2 --- /dev/null +++ b/13_whack_a_mole(game)/styles.css @@ -0,0 +1,20 @@ +body { + font-family: Arial, Helvetica, sans-serif; + text-align: center; + background: url("./images/mario-bg.jpg"); + background-size: cover; +} + +#board { + /* background-color: green; */ + width: 540px; + height: 540px; + margin: 0 auto; + + display: flex; + flex-wrap: wrap; + background: url(./images/soil.png); + background-size: cover; + border: 3px solid white; + border-radius: 20px; +} \ No newline at end of file