From d99dc901ac5df4c90742208d765c83f377904939 Mon Sep 17 00:00:00 2001 From: chris bell Date: Sat, 31 Jan 2026 21:40:57 -0600 Subject: [PATCH] add more projects and change default colors --- css/main.css | 10 ++++-- index.html | 83 +++++++++++++++++++++++++++++++------------------ scripts/main.js | 4 +-- 3 files changed, 62 insertions(+), 35 deletions(-) diff --git a/css/main.css b/css/main.css index 59106e8..22d8cb9 100644 --- a/css/main.css +++ b/css/main.css @@ -1,6 +1,6 @@ :root { - --color-background: #0f0f0f; - --color-foreground: #dd0000; + --color-background: #010101; + --color-foreground: #4d6e8d; --frame-spacing: 15px; --frame-border-radius: 10px; @@ -27,6 +27,9 @@ html { } @media (max-width: 900px) { + #main { + width: 90vw !important; + } #page-heading { font-size: 20pt; } @@ -58,6 +61,7 @@ html { padding: 20px; max-height: 30px; display: flex; + font-size: 10pt; } #tui-status-bar p { margin-left: 10px; @@ -110,7 +114,7 @@ html { } .tui-frame-content h2::before { - content: '// '; + content: '//'; } .tui-frame-content li { diff --git a/index.html b/index.html index 252119a..861932e 100644 --- a/index.html +++ b/index.html @@ -21,16 +21,52 @@

WELCOME

-

Hello! My name is Chris, aka Spudnut2000. Welcome to my personal portfolio site!

+

Hello! My name is Chris. Welcome to my personal portfolio site!

About Me

-

I am a husband, programmer, musician, and all around nerd. I like to develop both software and games.

+

I am a husband, programmer, musician, and all around nerd! I like to make games and software, as well as tinker with robots and motorcycles. I am a huge advocate for FOSS (Free and Open Source Software), a Linux user (NixOS), and a novice homelabber.

I am primarily a Software Engineer by trade with a Bachelor's in Sotware Engineering and ~5 years of professional experience, where the majority of my knowledge is in C#/.NET, XAML, and HTML/CSS. I am also proficient in many other languages like Odin, C/C++, Java, QML, and JavaScript.

+

I am also the CEO and Co-Founder of Bellsworne LLC. with my wife Alex.

IMAGE

- +
+ +
+
+ +
+

credentials

+
+

Education

+
    +
  • Bachelors, Software Engineering - 2026
  • +
  • Associates, Computer Science - 2022
  • +
+

Experience

+
    +
  • Software Engineer (C#, .NET, Unity) - 4 years
  • +
  • Computer Technician (Repair, IT) - 2 years
  • +
+

Certs

+
    +
  • CompTIA Project+
  • +
  • AWS Certified Cloud Practitioner
  • +
+
+
+ +
+

LINKS

+
@@ -56,33 +92,6 @@
-
-

credentials

-
-

Education

-
    -
  • Bachelors, Software Engineering - 2026
  • -
  • Associates, Computer Science - 2022
  • -
-

Experience

-
    -
  • Software Engineer (C#, .NET, Unity) - 4 years
  • -
  • Computer Technician (Repair, IT) - 2 years
  • -
-
-
- -
-

LINKS

- -
-

projects

@@ -95,7 +104,21 @@

A simple cross-platform full-stack application for managing your critters, for farms or pet owners. Made in C# with Avalonia UI.

This project was developed as my Software Engineering Capstone project, but the idea came from my wife who breeds goats and needed an easy way to track linage and other notes about her goats.

It still needs some work, but you can download it for Windows, Linux, or Android HERE.

+ +

Let there be blight

+

A game made in 72 hours for the MiniJam #150 game jam, made in Godot. -- Click here to play in your browser! --

+

Cogwheel

+

A C# .NET 9 library that provides a robust and extendible Command and Developer Console system for Games and Software applications. -- Click here to view on Gitea --

+ +

Interactive Map

+

An interactive world map that uses the World Bank REST API to display country information. Made as a school project in AngularJS. -- Click here to access--

+ +

Stars

+

A really simple plain JS webpage that randomly generates a lot of stars. -- Click here to view --

+ +

More

+

To see more of my personal or professional projects, see my Gitlab page.

diff --git a/scripts/main.js b/scripts/main.js index fa20178..f660be9 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -10,8 +10,8 @@ const resetBtn = document.getElementById('reset-settings-button'); let lightMode = false; const defaultSettings = { - foreground: "#ba1818", - background: "#0f0f0f", + foreground: "#4d6e8d", + background: "#010101", spacing: "15px", radius: "10px" };