Merge pull request 'Update visuals and content' (#11) from new-visuals into master
Reviewed-on: #11
This commit is contained in:
commit
0b7fa5571c
134
cv.html
134
cv.html
|
|
@ -24,34 +24,44 @@
|
|||
<title>CV Benjamin Stadlbauer</title>
|
||||
<style>
|
||||
:root {
|
||||
--color-primary-light: #000000;
|
||||
--color-background-light: #ffffff;
|
||||
--color-primary-dark: #ffffff;
|
||||
--color-background-dark: #121212;
|
||||
--color-hover-background-light: #ececec;
|
||||
--color-hover-background-dark: #202020;
|
||||
--color-a-after: #999;
|
||||
--color-primary: var(--color-primary-light);
|
||||
--color-background: var(--color-background-light);
|
||||
--color-hover-background: var(--color-hover-background-light);
|
||||
--white-neutral: #f4f4f9;
|
||||
--white-hover: #e5e5ff;
|
||||
--black-neutral: #1a1a1c;
|
||||
--black-hover: #282833;
|
||||
--accent: #7a7a99;
|
||||
|
||||
--primary: var(--black-neural);
|
||||
--background: var(--white-neutral);
|
||||
--hover-background: var(--white-hover);
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--color-primary);
|
||||
background-color: var(--color-background);
|
||||
padding: 1ch;
|
||||
color: var(--primary);
|
||||
background-color: var(--background);
|
||||
padding: 3ch;
|
||||
max-width: 80ch;
|
||||
margin: 0 auto;
|
||||
font-family: system-ui;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
li:not(:last-child) {
|
||||
margin-bottom: 0.2em;
|
||||
ul {
|
||||
list-style-type: "-";
|
||||
padding-left: 1.5em;
|
||||
}
|
||||
|
||||
li {
|
||||
padding-left: 0.25em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
line-height: 1.4;
|
||||
font-weight: normal;
|
||||
font-size: 1.2rem;
|
||||
margin: 1.2rem 0;
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
@ -66,27 +76,40 @@
|
|||
margin-left: 0.1em;
|
||||
font-size: 90%;
|
||||
top: -0.1em;
|
||||
color: var(--color-a-after);
|
||||
color: var(--accent);
|
||||
font-feature-settings: "caps";
|
||||
font-variant-numeric: normal;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background: var(--color-hover-background);
|
||||
background: var(--hover-background);
|
||||
transition-property: background;
|
||||
transition-duration: 0.2s;
|
||||
}
|
||||
|
||||
h2 {
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-color: var(--color-primary);
|
||||
border-bottom-color: var(--accent);
|
||||
border-bottom-style: solid;
|
||||
line-height: 1.2;
|
||||
font-size: 1.44rem;
|
||||
font-weight: normal;
|
||||
margin: 1.44rem 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
line-height: 1.0;
|
||||
font-weight: normal;
|
||||
font-size: 1.73rem;
|
||||
margin: 1.73rem 0;
|
||||
}
|
||||
|
||||
aside {
|
||||
margin-top: -2ch;
|
||||
margin-top: -0.6rem;
|
||||
text-transform: uppercase;
|
||||
opacity: 0.7;
|
||||
letter-spacing: 0.05em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
section#publications span.journal,
|
||||
|
|
@ -94,54 +117,40 @@
|
|||
font-style: italic;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
body {
|
||||
padding: 2ch;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 800px) {
|
||||
body {
|
||||
padding: 3ch;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 900px) {
|
||||
body {
|
||||
max-width: 900px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
--color-primary: var(--color-primary-light);
|
||||
--color-background: var(--color-background-light);
|
||||
--color-hover-background: var(--color-hover-background-light);
|
||||
--primary: var(--black-neural);
|
||||
--background: var(--white-neutral);
|
||||
--hover-background: var(--white-hover);
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--color-primary: var(--color-primary-dark);
|
||||
--color-background: var(--color-background-dark);
|
||||
--color-hover-background: var(--color-hover-background-dark);
|
||||
--primary: var(--white-neutral);
|
||||
--background: var(--black-neutral);
|
||||
--hover-background: var(--black-hover);
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
:root {
|
||||
--primary: #000000;
|
||||
--background: #ffffff;
|
||||
--accent: #000000;
|
||||
}
|
||||
|
||||
h2 {
|
||||
border-bottom-width: 0.5pt;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
max-width: initial;
|
||||
font-size: 10pt;
|
||||
background-color: #ffffff;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
aside {
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
|
@ -259,27 +268,18 @@
|
|||
</section>
|
||||
<section style="break-inside: avoid-page;">
|
||||
<h2>Skills</h2>
|
||||
German is my native language and I am fluent and experienced in English (I have an Academic-IELTS-score of 8.0
|
||||
from 2018 which is equivalent to an CEFR-score of C1–C2).
|
||||
<h3>Technologies</h3>
|
||||
I have experience with and can work right away with:
|
||||
<ul>
|
||||
<li>Java.</li>
|
||||
<li>JavaScript,</li>
|
||||
<li>Git,</li>
|
||||
<li>C++.</li>
|
||||
<li>Experience with Java, C/C++ and JavaScript</li>
|
||||
<li>With help and preparation I can work with Apache Maven, Apache Thrift, HTML, CSS, Python, Common Lisp, LaTeX</li>
|
||||
<li>Deeper knowledge of and experience with Git</li>
|
||||
<li>Can work in a Windows, Linux and MacOS environment</li>
|
||||
<li>Willing to learn and adapt to other programming languages</li>
|
||||
<li>Very conscientious way of working</li>
|
||||
</ul>
|
||||
I have some experience with and can work with some preparation/help along the way with:
|
||||
<ul>
|
||||
<li>Apache Maven, Thrift</li>
|
||||
<li>HTML,</li>
|
||||
<li>CSS,</li>
|
||||
<li>Python,</li>
|
||||
<li>Common Lisp,</li>
|
||||
<li>LaTeX.</li>
|
||||
</ul>
|
||||
<p>I have worked in Windows 10, Ubuntu (18.04, 20.04, 22.04) and MacOS. I am experienced with typical Microsoft
|
||||
365 products.</p>
|
||||
<p>
|
||||
German is my native language and I am fluent and experienced in English (I have an Academic-IELTS-score of 8.0
|
||||
from 2018 which is equivalent to an CEFR-score of C1–C2).
|
||||
</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Internships</h2>
|
||||
|
|
|
|||
Loading…
Reference in a new issue