more content

This commit is contained in:
hellerve
2017-01-12 15:17:42 +01:00
parent e9a6e88e22
commit 2a37c5456e

View File

@@ -1,6 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<style> <style>
@font-face { @font-face {
font-family: 'charterregular'; font-family: 'charterregular';
@@ -9,6 +10,11 @@
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@media(max-device-width: 700px) {
body {
font-size: 36px;
}
}
body { body {
font-family: 'charterregular', Georgia, serif; font-family: 'charterregular', Georgia, serif;
width: 100vw; width: 100vw;
@@ -19,6 +25,7 @@
float: left; float: left;
width: 200px; width: 200px;
margin-left: 10vw; margin-left: 10vw;
height: 100vh;
} }
.aside h1 { .aside h1 {
font-size: 28px; font-size: 28px;
@@ -30,26 +37,33 @@
} }
.aside ul li { .aside ul li {
padding-bottom: 0.4em; padding-bottom: 0.4em;
font-size: 100%
} }
a { .aside a {
color: #444; color: #444;
text-decoration: none; text-decoration: none;
font-size: 17px;
} }
.main { .main {
width: calc(100% - 200px); max-width: 900px;
padding: 2em; padding: 2em;
hyphens: auto;
}
.main a {
color: #000;
text-decoration: none;
border-bottom: 2px solid #d6dde3;
} }
</style> </style>
<title>Veit Heller</title> <title>Veit Heller</title>
</head> </head>
<body> <body lang="en">
<div class="aside"> <div class="aside">
<h1>Veit Heller</h1> <h1>Veit Heller</h1>
<ul> <ul>
<li><a href="https://veitheller.de/static/resume.pdf">My Resume</a></li> <li><a href="https://veitheller.de/static/resume.pdf">My Résumé</a></li>
<li><a href="http://blog.veitheller.de">My Blog</a></li> <li><a href="http://blog.veitheller.de">My Blog</a></li>
<li><a href="mailto:veit@veitheller.de">Contact Me</a></li> <li><a href="mailto:veit@veitheller.de">Contact Me</a></li>
<li><a href="https://github.com/zepto-lang/zepto">zepto</a><li>
<li><a href="https://github.com/hellerve">Github</a><li> <li><a href="https://github.com/hellerve">Github</a><li>
</ul> </ul>
</div> </div>
@@ -59,5 +73,15 @@
I'm a software engineer at Port Zero based in Berlin. I'm a software engineer at Port Zero based in Berlin.
I do a lot of open source work. I do a lot of open source work.
</p> </p>
<p>
Some of my most popular projects are <a href="https://github.com/zepto-lang/zepto">zepto</a>,
a programming language I am working on; <a href="https://github.com/hellerve/hawkweed">hawkweed</a>,
a utility library for Python with an emphasis on functional programming; and a
<a href="https://github.com/port-zero/lens">number</a> <a href="https://github.com/port-zero/lwt">of</a>
<a href="https://github.com/ecix/fswatch">useful</a> <a href="https://github.com/port-zero/decode">tools</a>.
</p>
<p>
I am available for consulting work through Port Zero.
</p>
</body> </body>
</html> </html>