From 875a80488c7dbc10eb53021afcb35a05f74d98de Mon Sep 17 00:00:00 2001 From: MajorDroolz Date: Wed, 4 Jan 2023 02:34:29 -0500 Subject: [PATCH] FEAT: New projects page, Jekyllified home page too. --- _includes/header.html | 6 +++--- index.html | 42 +++++++++++++++++------------------------- styles/default.css | 4 +++- 3 files changed, 23 insertions(+), 29 deletions(-) diff --git a/_includes/header.html b/_includes/header.html index 8801f18..aa1e3f7 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -3,10 +3,10 @@
MAX HUTZ
- Experience + Experience Resume Contact - + @@ -22,7 +22,7 @@ - Experience + Experience Resume Contact diff --git a/index.html b/index.html index 404340c..bd5fd5a 100644 --- a/index.html +++ b/index.html @@ -4,22 +4,21 @@ description: This is the home page of Maxim Voldman Hutz's personal website. layout: default --- +{% assign home = site.data.home %} +{% assign work = site.data.work %} +
-

Hey! šŸ‘‹ I'm Max Hutz.

- Software engineer in New York. +

{{ home.welcome }}

+ {{ home.status }}
-

- I’m a passionate computer science student skilled in building responsive, - full-stack applications. I love learning from colleagues and teaching future - developers. I thrive where teamwork and creativity are key. -

+

{{ home.about }}


+ +

Worked on:


- View all experiences. + View all experiences.
\ No newline at end of file diff --git a/styles/default.css b/styles/default.css index 54b66dc..44f9b34 100644 --- a/styles/default.css +++ b/styles/default.css @@ -1,5 +1,7 @@ html { scroll-behavior: smooth; + background-image: linear-gradient(#0003 0% 50%, #0000 50% 100%), + linear-gradient(var(--dark) 0% 50%, var(--light) 50% 100%); } body { @@ -159,7 +161,7 @@ nav { /*----------------------------------------------------------------------------*/ #projects { - margin: 30px auto; + padding: 30px auto; position: relative; display: flex; flex-direction: column;