Skip to content

Commit

Permalink
Merge branch 'main' into mention-game-to-website
Browse files Browse the repository at this point in the history
  • Loading branch information
prachi-kurmi authored Oct 7, 2024
2 parents 1365120 + 8b5b460 commit 8305bd9
Show file tree
Hide file tree
Showing 615 changed files with 55,619 additions and 382 deletions.
Binary file added assets/image/Lastwar.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 assets/image/Mã_QR.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 assets/image/amazon_clone_card.jpeg
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 assets/image/buildingblock.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 assets/image/candy.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 assets/image/chat-7767693_1280.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 assets/image/cutrope.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 assets/image/mole logo.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 assets/image/mole-bop.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 assets/image/spaceinvade.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 assets/image/supermario.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 assets/image/tiltingmaze.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 assets/image/traintrack.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 assets/image/vp.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 assets/image/zeroLine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ body {
padding: 1rem;
}

/* Hover Effects for Project */
.projects-container a:hover {
background-color: #f9cbd3;
transform: translateY(-6px);
transition: transform 0.3s ease, background-color 0.3s ease;
}

.card {
background: var(--card);
border-radius: 8px;
Expand Down
239 changes: 236 additions & 3 deletions index.html

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"mongoose": "^8.7.0"
Expand Down
28 changes: 28 additions & 0 deletions projects/Building Block/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Building Block</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/cannon.js/0.6.2/cannon.min.js"></script>
</head>
<body>
<div id="instructions">
<div class="content">
<p>Stack the blocks on top of each other</p>
<p>Click, tap or press Space when a block is above the stack. Can you reach the blue color blocks?</p>
<p>Click, tap or press Space to start game</p>
</div>
</div>
<div id="results">
<div class="content">
<p>You missed the block</p>
<p>To reset the game press R</p>
</div>
</div>
<div id="score">0</div>
<script src="script.js"></script>
</body>
</html>
Loading

0 comments on commit 8305bd9

Please sign in to comment.