Skip to content

Commit

Permalink
fixed responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
mifthulyn07 committed Apr 29, 2024
1 parent 0da936d commit ebfcc2a
Show file tree
Hide file tree
Showing 10 changed files with 387 additions and 346 deletions.
Binary file added asset/paper.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added asset/redo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added asset/rock.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added asset/scissors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 65 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="wrap">
<h1>Rock Paper Scissors Game</h1>
<main>
<div class="topbar">
<div class="control">
<div class="reset">
<button>
<img src="../../asset/redo.png" alt="reset" />
</button>
</div>
</div>
<div class="score">
<div class="scorecomputer">
<p>Computer:</p>
<p>0</p>
</div>
<div class="scoreuser">
<p>User:</p>
<p>0</p>
</div>
</div>
</div>
<div class="computerChoice">
<div class="computer">
<img />
</div>
</div>
<div class="info">
<div class="desc">
<p></p>
</div>
</div>
<div class="userChoice">
<div class="scissors">
<button id="scissors">
<img src="../../asset/scissors.png" alt="scissors" />
</button>
</div>
<div class="rock">
<button id="rock">
<img src="../../asset/rock.png" alt="rock" />
</button>
</div>
<div class="paper">
<button id="paper">
<img src="../../asset/paper.png" alt="paper" />
</button>
</div>
</div>
</main>
</div>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>
147 changes: 0 additions & 147 deletions rock-paper-scissors-game.css

This file was deleted.

57 changes: 0 additions & 57 deletions rock-paper-scissors-game.html

This file was deleted.

Loading

0 comments on commit ebfcc2a

Please sign in to comment.