From 08ad294d4609476980858babdc7e706b56481edd Mon Sep 17 00:00:00 2001 From: john Date: Sat, 18 May 2024 12:28:21 +0200 Subject: [PATCH] font size yo --- cv.html | 47 ++++++++++++++++++++++++++++++++--------------- styles/style.css | 21 +++++++++++++++++++-- 2 files changed, 51 insertions(+), 17 deletions(-) diff --git a/cv.html b/cv.html index 41ef0a1..86077ae 100644 --- a/cv.html +++ b/cv.html @@ -37,19 +37,33 @@

Lead Software Engineer @ HYRE Solutions, Berlin

September 2022 - Present

-

As the lead software engineer at a small Berlin-based recruitment startup, I lead the development and - maintenance of our - web frontend and backend systems, alongside participating in the development - of the projects roadmap. My responsibilities included:

+

+ As the lead software engineer at a small Berlin-based recruitment startup, I lead the development and + maintenance of our web frontend and backend systems, administrate devops, and collaborate in the + development of the project's roadmap. My responsibilities include: +

@@ -156,20 +170,23 @@
  • - + the github logo + /johnbotris
  • - + the linkedin logo + src="assets/In-Blue-48.png" + > + /in/johnbotris
  • @@ -250,7 +267,7 @@ const year = now.getFullYear() const month = now.getMonth() + 1 const day = now.getDate() - document.title = `John Morris CV ${year}-${month.toString().padStart(2, "0")}-${day.toString().padStart(2, "0")}`; + document.title = `John Morris CV`; }); window.addEventListener("afterprint", (event) => { diff --git a/styles/style.css b/styles/style.css index f1b643c..7082722 100644 --- a/styles/style.css +++ b/styles/style.css @@ -5,7 +5,7 @@ font-family: "JetBrains Mono", Arial, sans-serif; @media print { - font-size: 9pt; + font-size: 6.7pt; } } @@ -109,7 +109,7 @@ div:has(> .pfp) { border: 4px solid var(--primary-light); } -menu.links { +.links { list-style-type: none; display: flex; flex-direction: row; @@ -117,6 +117,23 @@ menu.links { padding: 0; margin-bottom: 1rem; + + @media print { + flex-direction: column; + } +} + +.external-link { + display: flex; + flex-direction: row; + gap: 0.5rem; + align-items: center; +} + +.print-only { + @media not print { + display: none; + } } .experience-time-span {