updates June 2025
This commit is contained in:
parent
a984a1f5c0
commit
9624ba2ee3
@ -154,30 +154,25 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.projects-box {
|
.project-card {
|
||||||
display: flex;
|
margin-bottom: 40px;
|
||||||
flex-wrap: wrap;
|
}
|
||||||
margin: auto;
|
|
||||||
max-width: 70%;
|
|
||||||
|
|
||||||
} .projects-box .card {
|
.project-card img {
|
||||||
margin: auto;
|
width: 10%;
|
||||||
padding-bottom: 30px;
|
height: auto;
|
||||||
} .projects-box img {
|
margin-top: 20px;
|
||||||
width: 100%;
|
border: 2px solid var(--color-pallete-red);
|
||||||
height: 100%;
|
}
|
||||||
border-top-right-radius: 10%;
|
|
||||||
border-top-left-radius: 1%;
|
.project-card .hexlink {
|
||||||
|
font-size: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1000px)
|
@media (max-width: 1000px)
|
||||||
{
|
{
|
||||||
.projects-box {
|
.project-card img {
|
||||||
display: block;
|
width: 40%;
|
||||||
margin: 0 30px 0 30px;
|
|
||||||
} .projects-box .card {
|
|
||||||
margin: auto;
|
|
||||||
padding: 20px 0 20px 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
54
index.html
54
index.html
@ -45,7 +45,15 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="aboutme-box-right">
|
<div class="aboutme-box-right">
|
||||||
<h2>About Me</h2>
|
<h2>About Me</h2>
|
||||||
<p>Hi! I'm Chris Bell. I am a programmer, musician, and nerd. My passion has been Game Development for over 5 years, using Unreal Engine, Unity, and Godot. I am currently a full-time Unity developer, but have knowledge in C/C++, C#, Java, HTML/CSS, and a few other languages. Most of my projects can be found on either my <a class="hexlink" href="https://github.com/spudnut2000">personal GitHub</a> or my <a class="hexlink" href="https://github.com/HexStudios">Hex Studios GitHub</a> pages.</p>
|
<p>Hi! I'm Chris Bell. I am a programmer, musician, and nerd. My passion has been Game Development for over 5 years, using Unreal Engine, Unity, and Godot. I am currently a full-time Unity developer, but have knowledge in C/C++, C#, Java, HTML/CSS, and a few other languages. Most of my projects can be found on my <a class="hexlink" href="https://git.bellsworne.tech/chrisbell">Gitea site</a>.</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
HexStudios is mostly just my personal portfolio, but I am also the founder and CEO of <a class="hexlink" href="https://bellsworne.com">Bellsworne LLC</a>.
|
||||||
|
Bellsworne has multiple sub-sections like <a class="hexlink" href="https://bellsworne.tech">Bellsworne Tech</a>,
|
||||||
|
where a lot of my more professional software projects live,
|
||||||
|
and <a class="hexlink" href="https://bellsworne.com/games">Bellsworne Games</a>
|
||||||
|
where my future games will be published. You can find my open source projects at my <a class="hexlink" href="https://git.bellsworne.tech/Bellsworne">Bellsworne Gitea Site</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -55,19 +63,39 @@
|
|||||||
|
|
||||||
<div id="projects">
|
<div id="projects">
|
||||||
<div class="projects-box">
|
<div class="projects-box">
|
||||||
<!-- Shots in the Dark -->
|
|
||||||
<div class="card"><div class="upper"><a href="https://github.com/hexstudios/shotsinthedarkremaster"><img src="res/shots.png"></a></div><div class="lower">
|
|
||||||
<h2>Shots in the Dark - Remastered</h2>
|
|
||||||
<p>Shots in the dark was a Brackeys Game Jam 2022.2 submission. This is my attempt to remake it from scratch and finally complete it.</p>
|
|
||||||
</div></div>
|
|
||||||
<!-- Project 7 -->
|
|
||||||
<div class="card"><div class="upper"><a href="projectvii.html"><img src="res/project7-card.png"></a></div><div class="lower">
|
|
||||||
<h2>Project VII</h2>
|
|
||||||
<p>Project VII is an ongoing story-driven game. Details are not yet disclosed.</p>
|
|
||||||
</div></div>
|
|
||||||
<div class="card"><div class="upper"></div><div class="lower">
|
|
||||||
|
|
||||||
</div></div>
|
<div class="project-card">
|
||||||
|
<a class="hexlink" href="https://sessionzero.app">SessionZero</a>
|
||||||
|
<p>A TTRPG companion and management application</p>
|
||||||
|
<img src="res/seshzero.png" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="project-card">
|
||||||
|
<a class="hexlink" href="https://git.bellsworne.tech/Bellsworne/Cogwheel">Cogwheel</a>
|
||||||
|
<p>A C# Game and Software development toolset</p>
|
||||||
|
<img src="res/cogwheel.png" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="project-card">
|
||||||
|
<a class="hexlink" href="dev/blight">Let There Be Blight</a>
|
||||||
|
<p>A game made in 72 hours for the Minijam #150: Magic game jam. Made in Godot</p>
|
||||||
|
<img src="res/blight.png" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="project-card">
|
||||||
|
<a class="hexlink" href="dev/stars">Stars</a>
|
||||||
|
<p>A game made in 72 hours for the Minijam #150: Magic game jam. Made in Godot</p>
|
||||||
|
<img src="res/stars.png" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="project-card">
|
||||||
|
<a class="hexlink" href="dev/interactive-angular-map">Interactive World Map</a>
|
||||||
|
<p>A cool little demo showcasing an interactive world map using Angular</p>
|
||||||
|
<img src="res/map.png" />
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
BIN
res/cogwheel.png
Normal file
BIN
res/cogwheel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 866 KiB |
BIN
res/seshzero.png
Normal file
BIN
res/seshzero.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
Loading…
Reference in New Issue
Block a user