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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode
.idea
./DevQuiz/.vscode
1 change: 0 additions & 1 deletion .gitignore.txt

This file was deleted.

1 change: 1 addition & 0 deletions BubbleGame/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ <h1>game over</h1>
<h3>your score:&nbsp<span class="current-score">0</span></h3>
<h3>High score:&nbsp<span class="high-score">0</span></h3>
<button class="video-game-button">PLAY AGAIN</button>
<a href="../index.html" class="video-game-button">HOME</a>
</div>
<div class="main">
<div class="main-panel">
Expand Down
2 changes: 2 additions & 0 deletions BubbleGame/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ body{
transform-style: preserve-3d;
-webkit-transition: background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
margin-bottom: .5em;
text-align: center;
}

.video-game-button::before {
Expand Down
7 changes: 4 additions & 3 deletions DevQuiz/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ <h3 class="remark-emoji">{emo}</h3>
<h3 class="score-section">score: <span class="score-box">0</span>/<span class="total-score">0<script></script></span></h3>
<h3 class="percent">( 0% )</h3>
<br><br>
<span class="btn">&emsp;&emsp;<button class="restart-btn">restartQuiz<span class="btn-brackets">()</span><span class="btn-colon">;</span></button></span>


<div>
<span class="btn">&emsp;&emsp;<button class="end-game-btn restart-btn">restartQuiz<span class="btn-brackets">()</span><span class="btn-colon">;</span></button></span>
<span class="btn"><a href="../index.html" class="end-game-btn">home</a></span>
</div>
</span>
<br>
<span class="brackets">}</span>
Expand Down
16 changes: 8 additions & 8 deletions DevQuiz/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ body{
}

.start-btn,
.restart-btn{
.end-game-btn{
background-color: transparent;
border: 1px solid white;
padding: 10px 25px;
Expand All @@ -107,27 +107,27 @@ body{
font-size: 1.3vw;
}

.restart-btn{
margin-right: 4vw;
.end-game-btn{
margin-right: 1em;
}

.start-btn:hover,
.restart-btn:hover{
.end-game-btn:hover{
color: #4def74;
}

.start-btn:hover .btn-brackets,
.restart-btn:hover .btn-brackets{
.end-game-btn:hover .btn-brackets{
color: #2c4f9e;
}

.start-btn:hover .btn-colon,
.restart-btn:hover .btn-colon{
.end-game-btn:hover .btn-colon{
color: #5aceff;
}

.start-btn:active,
.restart-btn:active{
.end-game-btn:active{
border-color: #db78a1;
}

Expand Down Expand Up @@ -370,7 +370,7 @@ body{
}

.start-btn,
.restart-btn{
.end-game-btn{
padding: 10px 25px;
border-radius: 30px;
font-size: 5vw;
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,17 @@ <h1>Web Games</h1>
</nav>

<div class="main-content">
<a href="tic-tac-toe/index.html" class="game game1" target="_blank">
<a href="tic-tac-toe/index.html" class="game game1">
<img src="assets/tic-tac-toe.png" alt="" />
<h3 class="game-text">Tic-Tac-Toe</h3>
</a>

<a href="BubbleGame/index.html" class="game game1" target="_blank">
<a href="BubbleGame/index.html" class="game game1">
<img src="assets/the_bubble_game.png" alt="" />
<h3 class="game-text">The Bubble Game</h3>
</a>

<a href="DevQuiz/index.html" class="game game1" target="_blank">
<a href="DevQuiz/index.html" class="game game1">
<img src="assets/dev_quiz.png" alt="" />
<h3 class="game-text">Dev Quiz</h3>
</a>
Expand Down
3 changes: 2 additions & 1 deletion tic-tac-toe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ <h3>Multiplayer</h3>
<div class="win-screen">
<h1 id="win-msg"><span class="winner-name"></span> is the <span class="winner">winner</span>!!</h1>
<h1 id="draw-msg" style="color:yellow;" hidden>Game Drawn</h1>
<button class="video-game-button-end">Restart</button>
<button class="video-game-button-restart video-game-button-end">Restart</button>
<a href="../index.html" class="video-game-button-end">Home</a>
</div>
<div class="main">
<h1><span class="player">X</span>'s Turn</h1>
Expand Down
2 changes: 2 additions & 0 deletions tic-tac-toe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ body{
transform-style: preserve-3d;
-webkit-transition: background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
margin-bottom: .5em;
text-align: center;
}

.video-game-button-end::before {
Expand Down