From 5d888daa1d01dd800f29a700d1f6ca30fab612f5 Mon Sep 17 00:00:00 2001 From: sefaria Date: Fri, 8 May 2026 11:06:26 +0200 Subject: [PATCH 1/6] Changing license type adding license to README --- LICENSE.txt | 3 ++- README.md | 17 ++++------------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 294e91d..f844e62 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,5 @@ Copyright (c) HTML5 Boilerplate +Copyright (c) 2026 Lars Winter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in @@ -16,4 +17,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 9f55d7e..fc8ea62 100644 --- a/README.md +++ b/README.md @@ -2,19 +2,10 @@ This is the portfolio website and blog of Lars Winter. -## Table of Contents -- [Installation](#installation) -- [Usage](#usage) -- [Structure](#structure) +## License -## Installation -```bash -git clone -cd project -npm install # if applicable -``` +Code in this repository is licensed under the MIT License. See the `LICENSE` file. -## Usage -Quick start example. +## Asset notice -## Structure \ No newline at end of file +All images, screenshots, logos, trademarks, and project visuals in this repository are excluded from the code license unless explicitly stated otherwise. Such materials are the property of their respective copyright owners and may not be reused, redistributed, or modified without permission. \ No newline at end of file From 43d23aacab130eadefc5ce454ca6219d412e83fa Mon Sep 17 00:00:00 2001 From: sefaria Date: Wed, 13 May 2026 12:20:53 +0200 Subject: [PATCH 2/6] change div to section --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 5d67b46..5e8ee9b 100644 --- a/index.html +++ b/index.html @@ -35,11 +35,11 @@ -
+

As usual, my portfolio is a work in progress and currently only available on request. Please feel free to contact me via email for work collaborations and other requests. You can also find me on one of those fancy social networks, like Mastodon, LinkedIn (if really necessary), Instagram, and Twitter.

-
+
From 2a590a0310b797d7591ff072cbf9d0f4830e4060 Mon Sep 17 00:00:00 2001 From: sefaria Date: Wed, 13 May 2026 15:55:50 +0200 Subject: [PATCH 3/6] Updated border radius button --- css/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index a78d350..7d4e81d 100644 --- a/css/style.css +++ b/css/style.css @@ -350,12 +350,11 @@ button, .link-button { line-height: var(--line-normal); letter-spacing: 0.025rem; padding: 0.875rem 1rem; - min-height: 44px; background: var(--color-primary-button); font-size: var(--text-button); color: var(--color-text-button); border: none; - border-radius: var(--radius-lg); + border-radius: var(--radius-xxl); box-shadow: var(--shadow-button); text-decoration: none; } From 4737b78b8a015d59246ff34434b5d43bf3e0ab25 Mon Sep 17 00:00:00 2001 From: sefaria Date: Thu, 14 May 2026 13:39:56 +0200 Subject: [PATCH 4/6] change darkest black to #121212 --- css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index 7d4e81d..40bb6c8 100644 --- a/css/style.css +++ b/css/style.css @@ -65,7 +65,7 @@ --color-neutral-600: #5B5B5B; --color-neutral-700: #3D3D3D; --color-neutral-800: #292929; - --color-neutral-900: #0F0F0F; + --color-neutral-900: #121212; --color-orange-red-100: #FFE7CC; --color-orange-red-200: #FFC999; From cc6fa17247f2c5b27f69bf14f85cf4a8ec2881db Mon Sep 17 00:00:00 2001 From: sefaria Date: Thu, 14 May 2026 15:29:04 +0200 Subject: [PATCH 5/6] shadow depends on light/dark, media query added --- css/style.css | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/css/style.css b/css/style.css index 40bb6c8..de02df3 100644 --- a/css/style.css +++ b/css/style.css @@ -126,9 +126,8 @@ --radius-xl: 2rem; --radius-xxl: 2.5rem; - --shadow-box: 0px 2px 8px rgba(0, 0, 0, 0.4), 0px 1px 4px rgba(0, 0, 0, 0.12); - --shadow-button: inset 0px 1px 2px rgba(0, 0, 0, 0.16), inset 0px -1px 4px rgba(0, 0, 0, 0.28), var(--shadow-box); - --shadow-button-active: inset 0px -1px 2px rgba(0, 0, 0, 0.16), inset 0px 1px 4px rgba(0, 0, 0, 0.28), var(--shadow-box); + --shadow-light: 0px 2px 8px rgba(0, 0, 0, 0.3), 0px 1px 4px rgba(0, 0, 0, 0.2); + --shadow-dark: 0px 2px 8px rgba(0, 0, 0, 0.5), 0px 1px 4px rgba(0, 0, 0, 0.2); /* Semantic tokens: contextual usage */ --color-background: light-dark(var(--color-neutral-100), var(--color-neutral-900)); @@ -158,6 +157,11 @@ --color-text-button: var(--color-neutral-900); --color-text-button-active: var(--color-neutral-100); + --shadow-box: var(--shadow-light); + + --shadow-button: inset 0px 1px 2px rgba(0, 0, 0, 0.16), inset 0px -1px 4px rgba(0, 0, 0, 0.28), var(--shadow-box); + --shadow-button-active: inset 0px -1px 2px rgba(0, 0, 0, 0.16), inset 0px 1px 4px rgba(0, 0, 0, 0.28), var(--shadow-box); + --border: #d8d8d8; --overlay: rgb(12 12 12 / 0.24); --panel: rgb(255 255 255 / 0.76); @@ -650,6 +654,12 @@ footer a:visited { /* ======================= Media Queries for Responsive Design. ======================= */ + +@media (prefers-color-scheme: dark) { + :root { + --shadow-box: var(--shadow-dark); + } +} @media screen and (max-width:768px) { main { From 524afd03ea6d80e1b9f48be30e6e1320c10f1b61 Mon Sep 17 00:00:00 2001 From: sefaria Date: Thu, 14 May 2026 15:42:13 +0200 Subject: [PATCH 6/6] adding release tag --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 5e8ee9b..3bbaab7 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,7 @@
- +