-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (146 loc) · 3.77 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Tobias Vetter: Web Developer</title>
<meta
name="description"
content="Tobias Vetter is a Web Developer from Heidelberg (Germany) with specialization in modern JavaScript, TypeScript, Vue, and Ruby on Rails."
/>
<link
href="https://fonts.googleapis.com/css?family=Quicksand:300,400"
rel="stylesheet"
/>
<style>
html {
scroll-behavior: smooth;
}
body,
h1,
p {
font-weight: 300;
margin: 0;
}
ul {
display: inline-flex;
list-style-type: none;
padding: 0px;
margin: 0px;
}
li {
padding: 8px;
}
a {
border-bottom: 1px dotted #ffffff;
text-decoration: none;
}
a:hover {
background: #f43b47;
}
body {
font-family: "Quicksand", "Avenir Next", Avenir, "Helvetica Neue",
Helvetica, Arial, sans-serif;
font-size: 100%;
font-weight: 300;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
header {
color: #e8eaf6;
padding: 2rem;
text-transform: uppercase;
}
header h1 {
margin-bottom: 20px;
font-size: calc(2rem + 7.5vmin);
}
header .subheadline {
margin-bottom: 40px;
font-size: calc(2rem + 1.5vmin);
}
header .bodycopy {
font-size: calc(1rem + 0.75vmin);
font-weight: 400;
line-height: 1.75;
margin-bottom: 20px;
max-width: 50vmax;
}
header a {
color: #ffffff;
}
footer a {
font-size: calc(1rem + 0.7vmin);
color: #e3f2fd;
}
.center-flex {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.hero {
background-image: linear-gradient(to top, #5f72bd 0%, #9b23ea 100%);
min-height: 100vh;
}
.hero-title {
flex-grow: 2;
}
.hero-footer {
flex-grow: 1;
padding: 2rem;
}
</style>
</head>
<body>
<main class="hero center-flex">
<header class="hero-title center-flex bounceIn">
<h1>Tobias Vetter</h1>
<p class="subheadline">Web Developer</p>
<p class="bodycopy">
I am a Web Developer from Heidelberg (Germany) with a specialization
in modern JavaScript, TypeScript, Vue.js, and Ruby on Rails. At the
moment I work as CTO at
<a href="https://www.chocobrain.com/" title="chocoBRAIN">chocoBRAIN</a
>.
</p>
</header>
<footer class="hero-footer center-flex fadeIn">
<nav>
<ul>
<li>
<a
href="https://twitter.com/tbsvttr"
title="Tobias Vetter on Twitter"
>Twitter</a
>
</li>
<li>
<a
href="https://medium.com/@tobias.vetter"
title="Tobias Vetter on Medium"
>Medium</a
>
</li>
<li>
<a
href="https://www.quora.com/profile/Tobias-Vetter-1"
title="Tobias Vetter on Quora"
>Quora</a
>
</li>
<li>
<a
href="https://github.com/tbsvttr"
title="Tobias Vetter on GitHub"
>GitHub</a
>
</li>
</ul>
</nav>
</footer>
</main>
</body>
</html>