-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (142 loc) · 2.92 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
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Tomáš Belada - personal site" />
<meta name="author" content="Tomas Belada (tomasbelada.com)" />
<meta name="keywords" content="belada, tomas, software engineer" />
<meta name="robots" content="index,follow" />
<meta name="googlebot" content="snippet,archive" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<meta name="theme-color" content="#e9eaec" />
<title>Tomas Belada | Software Engineer | Not an athlete</title>
<style>
body {
font-family: georgia;
font-size: 16px;
color: #333652;
background-color: #e9eaec;
line-height: 1.618;
height: 100vh;
width: 100vw;
margin: 0;
background: radial-gradient(
circle at 10% 20%,
#f1f6f8 0.1%,
#e9eaec 90.1%
);
}
.content {
border-left: 16px solid #333652;
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
margin-top: 20vh;
}
.col {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
width: 61.8%;
}
@media (max-width: 760px) {
.col {
width: 100%;
}
.content {
margin-top: 0;
}
}
h1,
h2,
h3 {
margin-top: 22px;
margin-bottom: 11px;
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 {
font-size: 59px;
}
h2 {
font-size: 37px;
}
h3 {
font-size: 23px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li:not(:first-child)::before {
content: "|";
}
li {
display: inline-block;
}
a {
color: #333652;
}
a:hover {
color: #90adc6;
}
</style>
</head>
<body>
<main class="content" role="main">
<div class="col">
<h2>Hi! My name is</h2>
<h1>Tomáš Belada</h1>
<h2>
<a
href="https://www.linkedin.com/in/tomasbelada/"
title="LinkedIn profile"
>I am a software engineer</a
>
</h2>
<ul>
<li>
<a
href="https://www.linkedin.com/in/tomasbelada/"
title="LinkedIn profile"
>Linkedin</a
>
</li>
<li>
<a href="https://github.com/belaczek" title="Github">Github</a>
</li>
<li>
<a
href="https://www.twitter.com/tomasbelada"
title="Twitter profile"
>Twitter</a
>
</li>
<li>
<a
href="https://www.facebook.com/tomasbelada"
title="Facebook profile"
>Facebook</a
>
</li>
<li>
<a
href="https://www.goodreads.com/user/show/67691498-tom-belada"
title="Goodreads"
>Goodreads</a
>
</li>
<li>
<a href="mailto:[email protected]" title="Email">email</a>
</li>
</ul>
</div>
</main>
</body>
</html>