chore: touchups and fixes

This commit is contained in:
2026-02-22 20:07:03 +00:00
parent bdf5c0d4d7
commit f492626e45
5 changed files with 57 additions and 120 deletions

View File

@@ -26,20 +26,6 @@ const educationData : EducationArgs[] = [
"Recipient of the Westfield Trust Academic Prize", "Recipient of the Westfield Trust Academic Prize",
"Graduated with overall average at 90%" "Graduated with overall average at 90%"
] ]
},
{
title: "High-school Education",
subtitle: "advanced IT, Maths and Physics",
institution: "Zamoyski High-school",
city: "Warsaw",
startDate: "Sep 2017",
endDate: "Jul 2020",
notes: [
"Final exam in Computer Science: 98% percentile",
"Final exam in Physics: 97% percentile",
"Final exam in Mathematics: 92% percentile"
],
useWith: true //todo fix this (i.e. this does nothing)
} }
]; ];

View File

@@ -17,36 +17,3 @@
text-align: center; text-align: center;
} }
} }
.education {
text-align: left;
background-color: transparentize($gray, 0.5);
border-radius: $smallGap;
box-shadow: 0.5em 0.5em transparentize($black, 0.5);
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: $mediumGap;
row-gap: $smallGap;
.title {
color: $accent_colour;
}
.notes {
font-size: 0.9em;
margin-top: 0.4em;
}
.otherDetails {
margin: auto 0 auto auto;
.location {
display: flex;
justify-content: space-around;
}
}
}

View File

@@ -28,19 +28,15 @@
@media (min-width: 1280px) { @media (min-width: 1280px) {
flex-direction: row; flex-direction: row;
gap: 1.5rem; gap: 2rem;
align-items: flex-start; align-items: stretch;
} }
} }
.currentWorkSection { .currentWorkSection {
flex: 1;
padding: 0 1rem;
@media (min-width: 1280px) { @media (min-width: 1280px) {
flex: 0 0 54%; flex: 1 1 54%;
padding-right: 1.5rem; padding-right: 2rem;
padding-left: 0;
border-right: 2px solid $accent_colour; border-right: 2px solid $accent_colour;
} }
@@ -53,18 +49,13 @@
} }
.educationSection { .educationSection {
flex: 1;
padding: 0 1rem;
@media (min-width: 1280px) { @media (min-width: 1280px) {
flex: 0 0 42%; flex: 1 1 42%;
padding-left: 1.5rem; margin: auto 0;
padding-right: 0;
} }
@media (max-width: 1279px) { @media (max-width: 1279px) {
padding-top: 2rem; padding-top: 2rem;
padding-bottom: 2rem;
border-top: 2px solid $accent_colour; border-top: 2px solid $accent_colour;
} }
@@ -72,67 +63,54 @@
text-align: center; text-align: center;
font-size: 1.75rem; font-size: 1.75rem;
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
margin-top: 0;
color: $accent_colour; color: $accent_colour;
} }
}
.educationEntry { .educationEntry {
background-color: transparentize($gray, 0.85); background-color: transparentize($gray, 0.85);
padding: 1rem; padding: 1rem;
margin-bottom: 1rem; margin-bottom: 1rem;
border-radius: 8px; border-radius: 8px;
border-left: 3px solid $accent_colour; border-left: 3px solid $accent_colour;
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
}
.degree {
font-weight: bold;
color: $accent_colour;
font-size: 1rem;
margin-bottom: 0.3rem;
}
.institution {
font-style: italic;
font-size: 0.9rem;
margin-bottom: 0.5rem;
color: #666;
}
.notes {
font-size: 0.85rem;
margin: 0.5rem 0;
padding-left: 1rem;
li {
margin-bottom: 0.25rem;
} }
}
.degree { .details {
font-weight: bold; display: flex;
color: $accent_colour; justify-content: space-between;
font-size: 1rem; align-items: center;
margin-bottom: 0.3rem; font-size: 0.8rem;
line-height: 1.4; color: #999;
} margin-top: 0.5rem;
flex-wrap: wrap;
.institution { gap: 0.5rem;
font-style: italic;
font-size: 0.9rem;
margin-bottom: 0.5rem;
color: #666;
}
.notes {
font-size: 0.85rem;
margin: 0.5rem 0;
padding-left: 1rem;
li {
margin-bottom: 0.25rem;
line-height: 1.5;
}
}
.details {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.8rem;
color: #999;
margin-top: 0.5rem;
flex-wrap: wrap;
gap: 0.5rem;
.location {
color: #999;
}
.dates {
display: flex;
gap: 0.5rem;
align-items: center;
}
}
} }
} }

View File

@@ -9,7 +9,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
gap: 0.75rem; gap: 0.75rem;
padding: 2rem; padding: 1rem 2rem;
p { p {
margin: 0; margin: 0;
@@ -19,8 +19,8 @@
.logoWrapper { .logoWrapper {
position: relative; position: relative;
width: 2rem; width: 3rem;
height: 1rem; height: 1.5rem;
flex-shrink: 0; flex-shrink: 0;
} }

View File

@@ -46,11 +46,17 @@
.left{ .left{
margin-left: auto; margin-left: auto;
display: flex;
align-items: center;
a { a {
font-size: 1em; font-size: 1em;
font-weight: 300; font-weight: 300;
} }
span {
margin-top: 0.5em;
}
} }
.logoContainer { .logoContainer {