-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (103 loc) · 2.48 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Kevin Salter • Software Developer</title>
<meta name="description" content="Kevin Salter • Software Developer and Product Guy • Vancouver, BC">
<meta name="viewport" content="width=device-width">
<style>
body { background: #222; }
a { opacity: 0.8; }
a:hover { opacity: 1; }
.main {
width: 100%;
height: 100%;
}
.logo {
text-align: center;
max-width: 700px;
margin: 0 auto;
padding-top: 25px;
}
.bigK img {
max-width: 90%;
margin-bottom: 30px;
height: auto;
opacity: 0.05;
transition: all 400ms ease-in-out;
}
.bigK img:hover {
opacity: 0.9;
cursor: pointer;
}
.social {
margin: 0 auto;
}
.social-icons {
margin: 0 auto;
text-align: center;
padding: 0;
}
.social-icons li {
display: inline-block;
text-align: center;
padding: 0 20px 20px;
min-width: 65px;
}
@media screen and (min-width: 1200px) {
.social-icons li {
padding: 5px 20px;
}
.social-icons li a img {
transition: all 200ms ease-in-out;
}
.social-icons li a img:hover {
transform: scale(1.1);
}
}
</style>
<body>
<div class="main">
<div class="logo">
<a href="mailto:[email protected]" class="bigK">
<img src="img/K-logo-white.png" alt="Kevin Salter Development" width="500" height="500">
</a>
</div>
<div class="social">
<ul class="social-icons">
<li>
<a href="https://twitter.com/KevinSalter">
<img src="img/twitter.png" alt="Kevin Salter on Twitter">
</a>
</li>
<li>
<a href="https://medium.com/@kevinsalter">
<img src="img/medium.png" alt="Kevin Salter on Medium">
</a>
</li>
<li>
<a href="https://speakerdeck.com/KevinSalter">
<img src="img/speakerdeck.png" alt="Kevin Salter on Speakerdeck">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/kevsalter">
<img src="img/linkedin.png" alt="Kevin Salter on LinkedIn">
</a>
</li>
<li>
<a href="https://github.com/KevinSalter">
<img src="img/github.png" alt="Kevin Salter on GitHub">
</a>
</li>
<li>
<a href="mailto:[email protected]">
<img src="img/email.png" alt="Email Kevin Salter">
</a>
</li>
</ul>
</div>
</div>
</body>
</html>