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