diff --git a/about/index.html b/about/index.html index 6c4a633..247b45c 100644 --- a/about/index.html +++ b/about/index.html @@ -29,6 +29,7 @@
Resume
diff --git a/index.html b/index.html index 3e9a62b..d36fa33 100644 --- a/index.html +++ b/index.html @@ -29,6 +29,7 @@
Resume
diff --git a/mainspring/Mainspring.zip b/mainspring/Mainspring.zip new file mode 100644 index 0000000..abf8330 Binary files /dev/null and b/mainspring/Mainspring.zip differ diff --git a/mainspring/index.html b/mainspring/index.html new file mode 100644 index 0000000..9a48f97 --- /dev/null +++ b/mainspring/index.html @@ -0,0 +1,66 @@ + + + + + + + + Mainspring - Grayson Riffe + + + + + + + + + + + +
+ +
+ + +
+ +
+
+ Mainspring Logo +
+
+

Mainspring

+

+ Mainspring is a simple timekeeper. + +

+
+ Mainspring screenshot +
+

+ This was created to keep track of the time spent on other projects easily. It can be used as a simple stopwatch, but if the time is saved to a file, it can be loaded and subsequent sessions will add to that time. Mainspring will also autosave your times. + + You can download the current version (1.0.0) here. + + The source can be found here. +

+
+ +
+ + \ No newline at end of file diff --git a/mainspring/msbackground.jpg b/mainspring/msbackground.jpg new file mode 100644 index 0000000..a3edc41 Binary files /dev/null and b/mainspring/msbackground.jpg differ diff --git a/mainspring/mslogo.png b/mainspring/mslogo.png new file mode 100644 index 0000000..d33db03 Binary files /dev/null and b/mainspring/mslogo.png differ diff --git a/mainspring/screenshot.png b/mainspring/screenshot.png new file mode 100644 index 0000000..347da7c Binary files /dev/null and b/mainspring/screenshot.png differ diff --git a/nf/index.html b/nf/index.html index 154eb34..2519e26 100644 --- a/nf/index.html +++ b/nf/index.html @@ -29,6 +29,7 @@
Resume
@@ -43,7 +44,7 @@

Nothin' Fancy

- Nothin' Fancy (NF) is a 3D game engine for Windows built with C++. I ultimately want to use my engine to create a game I can release on Steam for free. + Nothin' Fancy (NF) is a 3D game engine built with C++. I ultimately want to use my engine to create a game I can release on Steam for free.

@@ -51,7 +52,7 @@ I worked on this project during my senior year of high school, and it is the result of about 4 months of constant work. - The source of this original version can be found here. + The source of this original version can be found here.

diff --git a/style.css b/style.css index 01d9f81..01f23f4 100644 --- a/style.css +++ b/style.css @@ -2,6 +2,7 @@ --indexheadercolor: #7595ff; --nfheadercolor: #d0c000; --wcheadercolor: #21b9ff; + --msheadercolor: #00a516; --aboutheadercolor: #ff3535; --targetheadercolor: #ffffff; @@ -114,7 +115,7 @@ div.dropdown { position: absolute; top: 50%; left: 50%; - transform: translate(-50%, 20%); + transform: translate(-50%,13%); background-color: var(--headercolor); box-sizing: border-box; diff --git a/transitions.js b/transitions.js index 6505827..066036e 100644 --- a/transitions.js +++ b/transitions.js @@ -20,6 +20,8 @@ window.onload = () => { document.documentElement.style.setProperty('--targetheadercolor', getComputedStyle(document.documentElement).getPropertyValue('--nfheadercolor')) } else if (dest.includes('winchat')) { document.documentElement.style.setProperty('--targetheadercolor', getComputedStyle(document.documentElement).getPropertyValue('--wcheadercolor')) + } else if (dest.includes('mainspring')) { + document.documentElement.style.setProperty('--targetheadercolor', getComputedStyle(document.documentElement).getPropertyValue('--msheadercolor')) } else if (dest.includes('about')) { document.documentElement.style.setProperty('--targetheadercolor', getComputedStyle(document.documentElement).getPropertyValue('--aboutheadercolor')) } else { diff --git a/winchat/index.html b/winchat/index.html index f1aca93..a48eea6 100644 --- a/winchat/index.html +++ b/winchat/index.html @@ -9,7 +9,7 @@ - + @@ -29,6 +29,7 @@
Resume
@@ -43,18 +44,18 @@

WinChat

- WinChat is a simple chat application for Windows. + WinChat is a simple instant messaging app.

- Engine Logo + WinChat screenshot

I started this project to get a grasp of the network programming I would need to know if I were to add multiplayer support to Nothin' Fancy. The application has few features, but everything is done at a low level, only using old Win32 APIs to get the job done. You can download the current version (1.0.0) here. - The source can be found here. + The source can be found here.