92 lines
2.1 KiB
HTML
92 lines
2.1 KiB
HTML
<html>
|
|
<head>
|
|
<title>Personal Website of Andrew Tomaka</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<meta name="description" content="Personal website of Andrew Tomaka">
|
|
<link rel="canonical" href="http://www.atomaka.com/">
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: #4995C7;
|
|
font-family: 'Source Code Pro', monospace;
|
|
}
|
|
ul {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
li {
|
|
list-style: none;
|
|
display: inline-block;
|
|
padding: 5px;
|
|
}
|
|
@media all and (max-width: 480px) {
|
|
ul {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
h1 {
|
|
color: #07507F;
|
|
}
|
|
a {
|
|
color: #096EB0;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
color: #2988B9;
|
|
}
|
|
.container {
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
background-color: #72B0D9;
|
|
}
|
|
.content {
|
|
text-align: center;
|
|
}
|
|
.item {
|
|
max-width: 100%;
|
|
}
|
|
.contact {
|
|
position: absolute;
|
|
right: 15px;
|
|
bottom: 10px;
|
|
}
|
|
|
|
.color-primary-0 { color: #2980B9 } /* Main Primary color */
|
|
.color-primary-1 { color: #72B0D9 }
|
|
.color-primary-2 { color: #4995C7 }
|
|
.color-primary-3 { color: #096EB0 }
|
|
.color-primary-4 { color: #07507F }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="contact"><a href="mailto:me@atomaka.com">contact</a></div>
|
|
<div class="container">
|
|
<div class="item top"></div>
|
|
<div class="item content">
|
|
<div class="title">
|
|
<h1>Andrew Tomaka</h1>
|
|
</div>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="https://medium.com/@atomaka">writing</a></li>
|
|
<li><a href="https://stackoverflow.com/story/atomaka">working</a></li>
|
|
<li><a href="https://slides.com/atomaka">speaking</a></li>
|
|
<li><a href="https://github.com/atomaka">coding</a></li>
|
|
<li><a href="https://twitter.com/atomaka">tweeting</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
<div class="item bottom"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|