Skip to content

Commit

Permalink
messed up, fixing them
Browse files Browse the repository at this point in the history
  • Loading branch information
hexterminal committed Dec 12, 2024
0 parents commit 293ade3
Show file tree
Hide file tree
Showing 103 changed files with 8,270 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bgeninja.sublime-project
bgeninja.sublime-workspace
55 changes: 55 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="../../img/bgeninja.ico">
<title>No such page dude</title>
</head>
<body>
<div class="nah">
<h1 title="four zero four">404</h1>
<p><a href="https://chrisbradleyjones.itch.io/" target="_blank" title="go ahead, play my games">yo dawg</a> the page you're trying to visit <span title="ye bro you gotta check some other stuff">aint real</span></p>
</div>
<style>
.nah{
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
color: whitesmoke;
background: #222;
padding: 0px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.nah a{
text-decoration-color: none;
text-decoration: none;
color: whitesmoke;
cursor: default;
}

.nah span{
cursor: no-drop;
}

.nah h1{
margin: 0px;
transition: 1s;
text-shadow: 0px 0px 5px black;
font-weight: bolder;
font-size: 5rem;
}

.nah h1:hover{
text-shadow: 0px 0px 10px azure;
}
</style>
</body>
</html>
Binary file added MerriweatherSans-Italic-VariableFont_wght.ttf
Binary file not shown.
Binary file added MerriweatherSans-VariableFont_wght.ttf
Binary file not shown.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# BGENinja
Hi, this is a tutorial for the game engine [UPBGE](https://upbge.org/) and [Range Engine](https://rangeengine.tech/).
Project files are available in this site too.
Making changes as fast as possible.
58 changes: 58 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="img/bgeninja.ico">
<title>BGENinja - About</title>
</head>
<body>
<div class="dawg-serious">
<h1>About</h1>
<p>
Hi I'm Chris the developer of this website,
I created this site just to be an alternative to <u>tutorialsforblender3d.com</u> which was dead for long time and was a pretty good site for game engine tutorials.
I use <a href='https://kitsuystudio.itch.io/upbge-026' target="_blank" title="You gotta check this one out if u still wanted to experiment with UPBGE 2.5+, there were lots of fixes. I mean, A LOT.">UPBGE 2.6</a> series and <a href="https://rangeengine.tech/" title="This is some real work on the graphics, bugs, new feature implementations, etc." target="_blank">RanGE</a>.
</p>
<div class="divide"></div>
<h3>Contact</h3>
<p>
If you would like to contribute you can do it, but please read <a href="contribute.html" target="_blank">this</a>.
Here is where you can contact me.
</p>
<ul>
<li><a href="mailto:chrisbradleyjones@proton.me" target="_blank">Mail</a></li>
<li><a href="https://discord.com/users/800750244831952936" target="_blank">Discord</a> (More active)</li>
</ul>
</div>
<style>
/* ============ ABOUT.HTML ============ */
body{
margin: 0px 2rem 0px;
}

h3{
margin: 20px auto 0px;
}

.dawg-serious a{
text-decoration-color: navajowhite;
color: navajowhite;
}

.divide{
margin-top: 30px;
border: 1px solid darkgray;
width: 50vw;
margin-left: auto;
margin-right: auto;
}
@media screen and (orientation: portrait) and (max-width: 1080px){
.divide{
width: 75vw;
}
}
</style>
</body>
</html>
8 changes: 8 additions & 0 deletions bgeninja.sublime-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders":
[
{
"path": ".",
},
],
}
Loading

0 comments on commit 293ade3

Please sign in to comment.