-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (96 loc) · 1.85 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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>
Hörður Freyr Yngvason (vindvaki)
</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.css" type="text/css">
<style>
html {
background: #eee;
margin: 0;
padding: 0;
font-family: 'Source Code Pro', 'Inconsolata', 'Consolas', 'Menlo', 'Roboto Mono', monospace;
}
body {
position: relative;
background: #fff;
font-size: 14pt;
padding: 1em;
width: 100% - 2em;
margin: 1em 0 1em 0;
}
@media (min-width:801px) and (min-device-width: 801px) {
body {
width: 800px;
margin: 1em auto 1em auto;
}
}
h1,
h2 {
margin: 0;
position: relative;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 2em;
color: #555555;
}
ul {
list-style: none;
margin: 1em 0 0 0;
padding: 0;
position: relative;
}
li {
list-style: none;
margin: 0;
padding: 0;
}
li:before {
padding: 0 0;
font-size: 1.5em;
line-height: 1.5em;
vertical-align: middle;
}
a {
color: dodgerblue;
}
a:hover,
a:visited:hover {
color: #800000;
}
a:active {
color: #DD0000;
}
a:visited {
color: #440080;
}
</style>
<body>
<section>
<h1>Hörður Freyr Yngvason</h1>
<h2>Software Engineer</h2>
<ul>
<li class="fi-social-github">
<a href="https://github.com/vindvaki">GitHub</a>
</li>
<li class="fi-social-linkedin">
<a href="https://www.linkedin.com/in/vindvaki/">LinkedIn</a>
</li>
<li class="fi-social-stack-overflow">
<a href="http://stackoverflow.com/users/321825/vindvaki">Stack Overflow</a>
</li>
<li class="fi-social-instagram">
<a href="https://instagram.com/vindvaki">Instagram</a>
</li>
<li class="fi-social-500px">
<a href="http://500px.com/vindvaki">500px</a>
</li>
</ul>
</section>
</body>
</html>