-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from TheSecretOrganization/updateCss
Fix 404 missing route & Little update of css
- Loading branch information
Showing
8 changed files
with
120 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
<p>Page not found</p> | ||
<div class="h-100 d-flex align-items-center justify-content-center"> | ||
<div> | ||
<p>Page not found</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div id="gameSelection"> | ||
<button id="pongBtn" class="btn btn-secondary gameBtn">Pong</button> | ||
<button id="game2Btn" class="btn btn-secondary gameBtn">Tic-Tac-Toe</button> | ||
<div id="gameSelection" class="d-flex justify-content-center"> | ||
<button id="pongBtn" class="btn btn-secondary">Pong</button> | ||
<button id="game2Btn" class="btn btn-secondary">Tic-Tac-Toe</button> | ||
</div> | ||
<div id="game"> | ||
<button id="backBtn" class="btn btn-dark gameBtn">Back</button> | ||
<div class="container-fluid center-content"> | ||
<button id="backBtn" class="btn btn-dark">Back</button> | ||
<div class="center-content"> | ||
<canvas id="gameCanvas" width="800" height="600"></canvas> | ||
</div> | ||
</div> | ||
<div id="gameAgain" class="container-fluid center-content"></div> | ||
<div id="gameAgain" class="center-content"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
<div class="container-fluid center-content"> | ||
<p>This is Index</p> | ||
<div class="h-100 d-flex align-items-center justify-content-center"> | ||
<div> | ||
<p>This is Index</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
urlpatterns = [ | ||
path('index/', views.index), | ||
path('games/', views.games), | ||
path('404/', views.error_404), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters