-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
269 lines (224 loc) · 6.01 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Hello! I'm a UI engineer & frontend developer living in Berlin. I specialise in design systems and bridging the gap between engineering and design">
<title>Mike Mitchell | Frontend Developer & UI Engineer</title>
<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=IBM+Plex+Mono&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;1,6..12,600&display=swap" rel="stylesheet">
<style>
:root {
--color-black-100: #21222c;
--color-black-200: #414558;
--color-black-300: #a7abbe;
--color-grey-100: #414558;
--color-grey-200: #626784;
--color-grey-300: #b6b9c9;
--color-white-100: #f8f8f2;
--color-white-200: #ffffff;
--color-purple-100: #9580ff;
--color-purple-200: #d4ccff;
--color-pink-100: #ff80bf;
--color-pink-200: #ffcce5;
}
html {
min-height: 100%;
}
html, body {
margin: 0;
}
body {
background: var(--color-black-200);
color: var(--color-white-100);
padding: 0 64px;
display: flex;
flex-direction: column;
height: 100vh;
font-family: 'Nunito Sans', sans-serif;
overflow: hidden;
transition: ease-in-out padding 100ms;
}
header {
display: flex;
justify-content: center;
animation: fade-in ease 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.global-heading {
text-align: center;
margin: 10vh 0;
font-size: 24px;
text-transform: uppercase;
letter-spacing: 4px;
font-weight: 600;
display: inline-block;
}
.global-heading span {
display: block;
border-top: 4px solid;
margin-top: 8px;
padding-top: 8px;
text-transform: none;
font-size: 16px;
font-weight: 500;
}
.about {
background: var(--color-black-100);
max-width: 1200px;
width: 100%;
box-sizing: border-box;
margin: 0 auto;
border-top: 32px solid var(--color-grey-300);
border-radius: 8px 8px 0 0;
padding: 64px;
flex: 1;
font-family: 'IBM Plex Mono', monospace;
overflow-x: auto;
transition: ease-in-out padding 100ms;
transform: translate3d(0,100%,0);
animation: slide-in 1s ease 0.5s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.about > * {
opacity: 0;
animation: fade-in 1s ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.markdown h1:before {
content: '# ';
}
.markdown h2:before {
content: '## ';
}
.markdown li:before {
content: '* ';
}
.prompt {
font-size: 18px;
font-weight: 400;
margin: 0 0 24px;
}
.prompt:last-child {
margin: 0;
}
.prompt-decoration {
color: var(--color-pink-100);
}
.prompt-caret {
background-color: var(--color-grey-300);
width: 4px;
height: 22px;
display: inline-block;
vertical-align: top;
animation: pulse 1s ease-in-out infinite;
}
.markdown p,
.markdown h1,
.markdown h2,
.markdown li {
font-size: 18px;
font-weight: 400;
margin: 0;
line-height: 1.5;
}
.markdown ul {
margin: 0;
padding: 0;
list-style: none;
}
.markdown h1,
.markdown h2,
.markdown p,
.markdown ul {
margin-bottom: 24px;
}
.markdown a {
text-decoration: none;
border-bottom: 2px solid transparent;
color: var(--color-purple-100);
transition: ease-in-out color 100ms, ease-in-out border 100ms;
}
.markdown a:focus {
outline: none;
}
.markdown a:hover,
.markdown a:focus {
color: var(--color-pink-100);
border-bottom: 2px solid var(--color-pink-100);
}
@media only screen and (max-width: 1160px) {
body {
padding: 0 32px;
}
.about {
padding: 32px;
}
}
@media only screen and (max-width: 660px) {
body {
padding: 0 16px;
}
.about {
padding: 16px;
}
}
@keyframes pulse {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes slide-in {
0% {
transform: translate3d(0,100%,0);
}
100% {
transform: translate3d(0,0,0);
}
}
</style>
</head>
<body>
<header>
<h1 class="global-heading">
Mike Mitchell
<span>Frontend Developer</span>
</h1>
</header>
<section class="about">
<p class="prompt"><span class="prompt-decoration">❯</span> cat about.md</p>
<div class="markdown">
<h1>Mike Mitchell</h1>
<ul>
<li>A UI Engineer & Frontend Developer living in Berlin</li>
<li>Over 10 years of experience of building features and products with product teams</li>
<li>Specialises in design systems and bridging the gap between design and engineering</li>
<li>Previously at <a href="https://www.contentful.com/" target="_blank">Contentful</a>, building <a href="https://f36.contentful.com/" target="_blank">Forma 36</a> - Contentful’s design system</li>
</ul>
<h2>Get in Touch</h2>
<p>
<a href="mailto:omg@lol.xxx" target="_blank">omg@lol.xxx</a> | <a href="https://linkedin.com/in/mike-mitchell87" target="_blank">linkedin.com/in/mike-mitchell87</a> | <a href="https://github.com/m10l" target="_blank">github.com/m10l</a>
</p>
</div>
<p class="prompt"><span class="prompt-decoration">❯ </span><span class="prompt-caret"></span></p>
</section>
</body>
</html>