From 9ab6bb51ad9e0330b5b2f3412ac2f1b27a008a09 Mon Sep 17 00:00:00 2001 From: john Date: Tue, 7 May 2024 17:08:02 +0200 Subject: [PATCH] add stufgf --- README.md | 2 +- assets/icon-academic-cap.svg | 5 +++++ assets/icon-briefcase.svg | 4 ++++ assets/icon-user.svg | 3 +++ cv.html | 16 ++++++++++++---- styles/style.css | 26 ++++++++++++++++++++------ 6 files changed, 45 insertions(+), 11 deletions(-) create mode 100644 assets/icon-academic-cap.svg create mode 100644 assets/icon-briefcase.svg create mode 100644 assets/icon-user.svg diff --git a/README.md b/README.md index a2c330a..a8e391c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # My CV Repo ## Icons -Im using some heroicons icons +Im using some [heroicons](https://heroicons.dev/) icons (or [alternatively](https://heroicons.com/)) ## Original Resume PDF I was originally using [resume.io](https://resume.io) to maintain my resume (login with a magic link.), if you ever need to get back to it diff --git a/assets/icon-academic-cap.svg b/assets/icon-academic-cap.svg new file mode 100644 index 0000000..dbc882e --- /dev/null +++ b/assets/icon-academic-cap.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/icon-briefcase.svg b/assets/icon-briefcase.svg new file mode 100644 index 0000000..9bbac08 --- /dev/null +++ b/assets/icon-briefcase.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icon-user.svg b/assets/icon-user.svg new file mode 100644 index 0000000..c2d64b7 --- /dev/null +++ b/assets/icon-user.svg @@ -0,0 +1,3 @@ + + + diff --git a/cv.html b/cv.html index b122ee5..41ef0a1 100644 --- a/cv.html +++ b/cv.html @@ -16,7 +16,10 @@
-

Profile

+
+ +

About Me

+

I am a software developer, with passion for creativity and learning. My ultimate goal as a developer is to make cool things that help people in @@ -25,8 +28,10 @@

-

Employment History

- +
+ +

Employment History

+

Lead Software Engineer @ HYRE Solutions, Berlin

@@ -105,7 +110,10 @@
-

Education

+
+ +

Education

+
diff --git a/styles/style.css b/styles/style.css index 581ead5..f1b643c 100644 --- a/styles/style.css +++ b/styles/style.css @@ -1,12 +1,12 @@ :root { --primary: #000; --primary-light: #8a8a8a; - --primary-lightest: #eaeaea -} + --primary-lightest: #eaeaea; -html { font-family: "JetBrains Mono", Arial, sans-serif; - font-size: 10pt; + @media print { + font-size: 9pt; + } } body { @@ -31,8 +31,9 @@ body { column-gap: 2rem; padding-top: 2rem; + padding-bottom: 2rem; @media print { - padding-top: 0; + padding: 0; } } @@ -67,6 +68,19 @@ main > *:not(:last-child) { margin-bottom: 1.5rem } +.experiences-heading { + display: flex; + flex-direction: row; + /*align-items: baseline;*/ + justify-content: start; + gap: 0.5rem; + + & img { + width: 2rem; + height: 2rem; + } +} + .experience:not(:last-child) { margin-bottom: 1rem } @@ -153,4 +167,4 @@ a { &:hover { color: var(--primary); } -} +} \ No newline at end of file