-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (125 loc) · 3.88 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
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="utf-8">
<title>Cathryn Griffiths</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Cathryn Griffiths">
<meta name="description" content="Cathryn Griffiths is a software developer based in Canada who works as a Staff Front End Developer at Shopify.">
<meta property="og:image" content="./cathryn.png">
<meta property="og:description" content="Cathryn Griffiths is a software developer based in Canada who works as a Staff Front End Developer at Shopify.">
<meta property="og:title" content="Cathryn Griffiths">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap" rel="stylesheet">
<style>
body {
font-size: 1rem;
font-family: 'Fira Mono', monospace;
background-color: #000130;
color: #FF346A;
text-align: center;
}
h1 {
font-size: 3rem;
background: -webkit-linear-gradient(#29FFFF,#FF346A, #fffe5e, #3df779);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position: relative;
transform: rotate(-4deg);
margin-left: auto;
margin-right: auto;
}
main {
line-height: 1.4;
text-align: left;
padding: 0 1rem;
}
.img_wrapper {
flex-shrink: 0;
width: 180px;
height: 180px;
transform: rotate(7deg);
background: -webkit-linear-gradient(#29FFFF,#FF346A, #fffe5e, #3df779);
padding: 0.8rem 0.8rem 3rem 0.8rem;
margin: 4rem auto;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
ul {
list-style: none;
padding: 0;
}
a, a:visited {
color: #29FFFF;
text-decoration: none;
}
a:hover, a:active, a:focus {
color: #fffe5e;
text-decoration: none;
}
li::after {
content: "-";
display: block;
color: #fffe5e;
margin: 1rem 0;
}
li:last-child::after {
display: none;
}
@media only screen and (min-width: 750px) {
body {
font-size: 1.5rem;
}
h1 {
font-size: 6rem;
}
main {
display: flex;
align-items: center;
justify-content: center;
max-width: 800px;
margin: 3rem auto;
}
.img_wrapper {
margin: 0 0 0 2rem;
width: 300px;
height: 300px;
}
ul {
display: flex;
align-items: center;
justify-content: center;
}
li::after {
display: inline-block;
margin: 0 1rem;
}
}
</style>
</head>
<body>
<h1>Cathryn Griffiths</h1>
<main>
<div>
<p>Cathryn is a software developer based in Canada.</p>
<p>She works as a Staff Front End Developer at <a href="https://www.shopify.com">Shopify</a>, working on Shopify's checkout. Previously, she was one of the founding members of the <a href="https://hydrogen.shopify.dev">Hydrogen</a> team.</p>
<p>Cathryn is available for speaking engagements about personal development, leadership, and technical topics.</p>
</div>
<div class="img_wrapper">
<img src="./cathryn.png" alt="A photo of Cathryn standing in front of Morraine Lake in Banff National Park in Albera, Canada"/>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/c_a_t_h_r_y_n">Twitter</a></li>
<li><a href="https://github.com/cathryngriffiths">GitHub</a></li>
<li>[email protected]</li>
</ul>
</footer>
</body>
</html>