update the profile picture

This commit is contained in:
2025-05-01 20:59:25 +01:00
parent b88295dabf
commit 77dc7f42b8
9 changed files with 11 additions and 12 deletions

View File

@@ -4,5 +4,5 @@
"start_url": "/", "start_url": "/",
"display": "standalone", "display": "standalone",
"background_color": "#fff", "background_color": "#fff",
"description": "Patryk Kuchta's Portfolio entailing his academic and professional work." "description": "Patryk Kuchta's portfolio entailing his academic and professional work."
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 MiB

After

Width:  |  Height:  |  Size: 3.2 MiB

View File

@@ -35,7 +35,7 @@
.title { .title {
color: $red; color: $accent_colour;
} }
.notes { .notes {

View File

@@ -30,7 +30,6 @@
} }
.redText { .redText {
color: $red;
} }
.industry { .industry {

View File

@@ -35,7 +35,7 @@
text-decoration: none; text-decoration: none;
&:hover { &:hover {
color: $strong_red; color: $accent_colour;
font-style: italic; font-style: italic;
} }
} }
@@ -79,14 +79,14 @@
} }
.greeting { .greeting {
color: $strong_red; color: $accent_colour;
font-style: italic; font-style: italic;
} }
} }
.profileContainer { .profileContainer {
margin: 0 0 0 auto; margin: 0 0 0 auto;
max-width: 35em; max-width: 40em;
height: max-content; height: max-content;
display: flex; display: flex;
position: relative; position: relative;

View File

@@ -63,10 +63,11 @@
.icon { .icon {
color: $white; color: $white;
filter: drop-shadow(7px 7px 5px $red); filter: drop-shadow(7px 7px 5px $accent_colour);
$size: 4em; $size: 4em;
width: $size; width: $size;
height: $size; height: $size;
svg { svg {
width: $size; width: $size;
height: $size; height: $size;

View File

@@ -43,7 +43,7 @@
text-decoration: none; text-decoration: none;
&:hover { &:hover {
color: $strong_red; color: $accent_colour;
font-style: italic; font-style: italic;
} }
} }

View File

@@ -3,8 +3,7 @@
$black: #000000; $black: #000000;
$white: #ffffff; $white: #ffffff;
$gray: #E3E3E3; $gray: #E3E3E3;
$strong_red: #ff0000; $accent_colour: #9b3c5c;
$red: #8F0000;
@mixin darkSection { @mixin darkSection {
background-color: $black; background-color: $black;

View File

@@ -22,11 +22,11 @@ body {
} }
.splide__arrow svg { .splide__arrow svg {
fill: $red !important; fill: $accent_colour !important;
} }
.splide__pagination__page.is-active { .splide__pagination__page.is-active {
background-color: $red !important; background-color: $accent_colour !important;
} }
.splide__arrow.splide__arrow--next { .splide__arrow.splide__arrow--next {