-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Resolved_Branch
- Loading branch information
Showing
7 changed files
with
233 additions
and
24 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Comment on Issue Close | ||
|
||
on: | ||
issues: | ||
types: [closed] | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Comment on Closed Issue | ||
uses: actions/github-script@v3 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const response = await github.issues.createComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
body: ` | ||
Thank you for your contribution! If you have any questions or need further assistance, feel free to reach out to us on our Discord server: [Discord](https://discord.gg/rZb46cCMmK). We have separate channels for all projects. Happy coding! 🚀 | ||
Connect with us on social media: | ||
- **GitHub**: [ChromeGaming](https://github.com/ChromeGaming) | ||
- **LinkedIn**: [ChromeGaming](https://www.linkedin.com/company/chromegaming) | ||
- **Instagram**: [@chromegamingon](https://www.instagram.com/chromegamingon/) | ||
` | ||
}); | ||
console.log(response); |
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>404:Page not found</title> | ||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚀</text></svg>"> | ||
</head> | ||
<style> | ||
body{ | ||
margin: 0; | ||
padding: 0; | ||
font-family: Arial, sans-serif; | ||
background: linear-gradient(to bottom right, #FFEA7E, #FFA500); /* Default background gradient */ | ||
background-repeat: no-repeat; | ||
background-attachment: fixed; | ||
background-size: cover; | ||
height: 100vh; | ||
overflow: hidden; | ||
} | ||
.center { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
height: 90vh; | ||
|
||
} | ||
.pic{ | ||
width: 550px; | ||
height: 550px; | ||
animation: updown 2s ease-in-out infinite alternate; | ||
transition: all 0.3s ease-in-out; | ||
} | ||
.pic:hover{ | ||
filter: drop-shadow(0 0 10px #fffdef); | ||
} | ||
@keyframes updown { | ||
from{ | ||
transform: translateY(0); | ||
} | ||
to{ | ||
transform: translateY(20px); | ||
} | ||
} | ||
a{ | ||
text-decoration: none; | ||
color: #353535; | ||
} | ||
.btn{ | ||
position: absolute; | ||
padding: 10px 20px; | ||
background-color: #32ddaac9; | ||
border-radius: 5px; | ||
font-size: 20px; | ||
font-weight: bold; | ||
border: none; | ||
top: 600px; | ||
} | ||
@media screen and (max-width: 600px) { | ||
.pic{ | ||
width: 300px; | ||
height: 300px; | ||
} | ||
.btn{ | ||
top: 500px; | ||
} | ||
} | ||
</style> | ||
<body> | ||
<div class="center"> | ||
<img src="404pic2.png" alt="404 pic" class="pic"> | ||
<button class="btn"><a href="index.html">Home</a></button> | ||
</div> | ||
<script src="game.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Submodule PACKABUNCHAS
added at
80f510
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