-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
114 lines (102 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tyson Gach</title>
<meta name=description
content="Tyson Gach is an independent designer, developer, and accessibility advocate.">
<link rel="me" href="https://mstdn.social/@tyson">
<style>
html {
box-sizing: border-box;
min-height: 100%;
min-width: 100%;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
img {
height: auto;
max-width: 100%;
}
body {
color: rgb(70, 70, 70);
font-family: ui-sans-serif, -apple-system, sans-serif;
margin: 12% auto 0;
max-width: 32em;
width: 90%;
}
.tagline {
font-size: 1.5em;
font-weight: 400;
text-align: center;
}
.tagline a,
.tagline a:active,
.tagline a:visited,
.tagline a:focus {
color: inherit;
}
a,
a:active,
a:visited {
color: rgb(110, 110, 110);
transition: color 0.2s ease-in-out;
}
a:hover {
color: rgb(244, 104, 2);
text-decoration: none;
}
.links {
display: flex;
font-size: 0.9375em;
justify-content: center;
list-style-type: none;
padding-left: 0;
}
.links li {
display: inline-flex;
}
.links li + li::before {
color: rgb(180, 180, 180);
content: "·";
padding-inline: 0.375em;
}
.headshot-wrapper {
margin-left: auto;
margin-right: auto;
width: 6.25rem;
}
.headshot {
border-radius: 6.25rem;
height: 6.25rem;
width: 6.25rem;
}
</style>
</head>
<body>
<main>
<div class="headshot-wrapper">
<picture>
<source class="headshot" srcset="tyson-gach.webp" type="image/webp">
<source class="headshot" srcset="tyson-gach.jpg" type="image/jpeg">
<img class="headshot" src="tyson-gach.jpg" alt="Tyson Gach" width="200" height="200">
</picture>
</div>
<h1 class="tagline">
Tyson Gach is an independent designer, developer, and accessibility advocate.
</h1>
<ol class="links">
<li>
<a href="https://www.linkedin.com/in/tysongach/">LinkedIn</a>
</li>
<li>
<a href="https://github.com/tysongach">GitHub</a>
</li>
</ol>
</main>
</body>
</html>