Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ <h2 class="result"></h2>
<h2 class="winner">Choose an option</h2>
<div class="options">
<button class="rock">
<img src="./rock.svg" alt="rock"></img>
<img src="./rock.jpg" alt="rock"></img>
<br>
<label>rock</label>
</button>
<button class="paper">
<img src="./paper.svg" alt="paper"></img>
<img src="./paper.jpg" alt="paper"></img>
<br>
<label>paper</label>
</button>
<button class="scissor">
<img src="./scissor.svg" alt="scissor"></img>
<img src="./scissor.jpg" alt="scissor"></img>
<br>
<label>scissor</label>
</button>
Expand All @@ -62,7 +62,7 @@ <h2 class="winner">Choose an option</h2>

<!----- Reset Button ----->
<div class="reset-div">
<button class="reset">Reset Game</button>
<button class="reset">Reset</button>
</div>

</section>
Expand Down
Binary file added paper.jpg
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 rock.jpg
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 scissor.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ body {
margin: 0;
width: 100%;
overflow-x: hidden;
background: #0f0f0f;
background: black;
color: #fff;
font-family: "Open Sans", sans-serif;
}
Expand Down Expand Up @@ -155,10 +155,11 @@ section {
}

.options button img{
height: 50px;
height: 60px;
}

.options .paper img{
margin-top: 6.5px;
width: 50px;
height: auto;
}
Expand Down