From fde099174398a386c42ff35a5abbbb1823924ba4 Mon Sep 17 00:00:00 2001 From: Jadon Yack Date: Tue, 5 Sep 2023 16:04:43 -0400 Subject: [PATCH] Fix Home page picture alignment. Update info. --- contact.html | 18 +++++++++++------- index.html | 29 ++++++++++++++++++++--------- projects.html | 18 +++++++++++------- style.css | 21 +++++++++++++++------ 4 files changed, 57 insertions(+), 29 deletions(-) diff --git a/contact.html b/contact.html index ee6241c..15496f1 100644 --- a/contact.html +++ b/contact.html @@ -6,13 +6,17 @@ -
- +
+ +
+ +
+
diff --git a/index.html b/index.html index fcac87e..78dd874 100644 --- a/index.html +++ b/index.html @@ -24,19 +24,19 @@

ABOUT ME

- I'm an undergraduate Computer Science student at the + Hey! I'm Jadon, and I'm an undergraduate Computer Science student at the University of Michigan in Ann Arbor, with a passion for - software engineering and computer networking. I particularly - enjoy the problem solving aspects, especially after - solving an issue that has been giving me trouble. + software engineering and computer networking. I am also interested in + gaining knowledge in cloud computing and DevOps. In particular, I enjoy + the problem solving aspects, especially after solving an issue that has + been giving me trouble. Some of the coursework I've taken at U of M includes + Computer Organization, Data Structures and Algorithms, Computer Networks, + and Computer Security. During my senior year I will be taking Operating Systems + and Web Systems as my final two electives.

-
- Close up view of a watercooled CPU -

I built my computer that I use day in and day out, including @@ -44,10 +44,21 @@ to include the graphics card in the loop later down the road. It's always a fun challenge to maintain the cooling system and make further additions to the system that has been a - work in progress for the past three years. + work in progress for the past three years. I chose the parts + primarily with gaming in mind, so a high-end graphics card and + processor were a must. These choices also allow me to stream + my gameplay on Twitch, which was something I kept in mind while + choosing parts. Soon after the initial build, I added more memory + to the system in order to host game servers off of this computer, + while still allowing me to use it without issue.

+
+ Close up view of a watercooled CPU +
+
diff --git a/projects.html b/projects.html index 22a40ba..2c064fd 100644 --- a/projects.html +++ b/projects.html @@ -6,13 +6,17 @@ -
- +
+ +
+ +
+
diff --git a/style.css b/style.css index f18fff9..765f857 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,7 @@ html { background-color: #303030; font-family: Verdana, Geneva, Tahoma, sans-serif; + font-size: larger; color: aliceblue; } @@ -57,24 +58,32 @@ body { .intro { text-align: center; - margin-bottom: 20vh; } .pc { - margin: 20vh 0; + margin: 10vh 0; width: 100%; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; +} + +.pc-picture { + float: right; + height: fit-content; + width: fit-content; } .pc-picture img { width: auto; - height: 50vh; - float: right; + height: 40vh; padding-left: 3vw; } .pc-text { - text-align: left; - padding: 20vh 0; + text-align: center; + float: left; } .resume-text {