-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
237 lines (206 loc) · 7.62 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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Gabriel's professional profile and contact information">
<title>What I do Page - Gabriel Martin</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary-color: #2563eb;
--primary-hover: #1d4ed8;
--text-color: #1a202c;
--background-color: #f8f9fa;
--quote-background: #ffffff;
}
body {
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Georgia', serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
color: var(--text-color);
background-color: var(--background-color);
}
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 80vh;
text-align: center;
padding: 1rem;
}
.quote-container {
margin: 2rem 0;
padding: 2rem;
position: relative;
border-left: 5px solid var(--primary-color);
background-color: var(--quote-background);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
blockquote {
font-size: 1.8rem;
font-style: italic;
margin: 0;
padding: 0;
}
.quote-mark {
font-size: 4rem;
position: absolute;
left: 0.5rem;
top: -1rem;
color: var(--primary-color);
opacity: 0.2;
aria-hidden="true"
}
.attribution {
font-size: 1.2rem;
margin-top: 1rem;
margin-bottom: 2rem;
}
a {
color: var(--primary-color);
text-decoration: underline;
padding: 0.2rem;
border-radius: 3px;
}
a:hover, a:focus {
color: var(--primary-hover);
text-decoration: underline double;
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
.blurb {
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
padding: 1.5rem;
background-color: var(--quote-background);
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.email-link {
display: inline-block;
margin-top: 1.5rem;
padding: 0.75rem 1.5rem;
background-color: var(--primary-color);
color: white;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
}
.email-link:hover, .email-link:focus {
background-color: var(--primary-hover);
color: white;
outline: 3px solid var(--primary-color);
outline-offset: 2px;
}
.email-link:focus:not(:focus-visible) {
outline: none;
}
.email-link i {
margin-right: 0.5rem;
}
@media (max-width: 600px) {
:root {
--base-font-size: 15px;
--reading-line-length: 45ch;
}
body {
padding: 1rem;
line-height: 1.5;
}
.quote-container {
padding: 1.5rem 1rem;
margin: 1rem 0;
}
blockquote {
/* Ensure comfortable reading width on mobile */
max-width: 90vw;
/* Slightly tighter line height for smaller screens */
line-height: 1.4;
/* Adjust font size for mobile */
font-size: 1.0rem;
text-align: left;
}
.blurb {
font-size:0.9rem;
padding: 1.25rem;
text-align: left;
/* Ensure comfortable reading width */
max-width: 45ch;
line-height: 1.5;
}
.attribution {
text-align: left;
margin: 1rem 0;
}
/* Increase touch target size */
.email-link {
padding: 0.875rem 1.75rem;
width: 100%;
box-sizing: border-box;
text-align: center;
}
}
/* Special handling for very small screens */
@media (max-width: 350px) {
:root {
--base-font-size: 14px;
--reading-line-length: 40ch;
}
.quote-container {
padding: 1rem 0.75rem;
}
blockquote {
font-size: 1.15rem;
}
}
</style>
</head>
<body>
<main id="main-content">
<div class="quote-container" role="region" aria-label="Featured Quote">
<span class="quote-mark" aria-hidden="true">"</span>
<blockquote>
In my experience, projects almost always ship because one single person makes them ship. To be clear, that person doesn't write all the code or do all the work, and I'm not saying the project could ship without an entire team behind it. But it's really important that one person on the project has an end-to-end understanding of the whole thing: how it hangs together technically, and what product or business purpose it serves.
</blockquote>
<footer class="attribution">
— <cite><a href="https://www.seangoedecke.com/how-to-ship/"
target="_blank"
rel="noopener noreferrer"
aria-label="Read more about Sean Goedecke and his comments"> Sean Goedecke </a></cite>
</footer>
</div>
<section class="blurb" aria-label="About Me">
<h1 class="visually-hidden">About Gabriel Martin</h1>
<p>Hi, I'm Gabriel, the quote above is how I aspire to deliver value within a team.</p>
<p>I bring 15 years of experience across UX disciplines, engineering, design, and user research. This variety of experiences helps me bring diverse perspectives and expertise together, understand user and business needs, and have the technical and design chops to help teams transform complex challenges into elegant solutions that users love.</p>
<p> I believe the secret is to use that experience to be a bridging force within cross-disciplinary teams, so we can represent the best of all of our vision, to set our sights on delivering technically robust, intuitive to use, and accessible products for all. </p>
</p>
<br>
<a href="mailto:[email protected]"
class="email-link"
aria-label="Send email to Gabriel Martin">
<i class="fas fa-envelope" aria-hidden="true"></i>
<span>Get in touch</span>
</a>
</section>
</main>
</body>