-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
222 lines (194 loc) · 7.49 KB
/
index.html
File metadata and controls
222 lines (194 loc) · 7.49 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Will Chavez — Design Technologist</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="preload" href="fonts/source-serif-4-latin.woff2" as="font" type="font/woff2" crossorigin />
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
/* Self-hosted + preloaded so the font is ready before first paint
(no swap, no jump). Variable font covers weights 200-900. */
@font-face {
font-family: "Source Serif 4";
font-style: normal;
font-weight: 200 900;
font-display: swap;
src: url("fonts/source-serif-4-latin.woff2") format("woff2");
}
/* Metric-matched fallback: Georgia sized to match Source Serif 4
so there's no layout shift if the local font is ever delayed. */
@font-face {
font-family: "Source Serif Fallback";
src: local("Georgia");
size-adjust: 108.59%;
ascent-override: 95.41%;
descent-override: 30.85%;
line-gap-override: 0%;
}
html, body {
background: #f7f5f2;
font-family: "Source Serif 4", "Source Serif Fallback", Georgia, serif;
color: #1a1a1a;
font-size: 17px;
}
body { padding: 7.5rem 4rem 6rem; }
/* Header */
.title {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 4rem;
padding-bottom: 2rem;
border-bottom: 1px solid #b05a3a;
}
h1 {
font-size: 1.9rem;
font-weight: 400;
color: #1a1a1a;
line-height: 1.3;
}
.cursor {
display: inline-block;
width: 0.55em;
height: 0.85em;
background: #b05a3a;
vertical-align: baseline;
animation: blink 1.1s step-end infinite;
margin-left: 3px;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.pronouns {
font-size: 0.85rem;
color: #888;
margin-top: 0.3rem;
}
.title img {
max-width: 52px;
border-radius: 6px;
border: 1px solid #ddd;
}
/* Two-column sections */
.section {
display: grid;
grid-template-columns: 200px 1fr;
gap: 0 3rem;
margin-bottom: 2.5rem;
align-items: start;
}
.section-label {
font-size: 1rem;
font-weight: 400;
color: #111;
padding-top: 0.1rem;
line-height: 1.8;
letter-spacing: -0.02em;
}
.section-label::before {
content: "// ";
color: #b05a3a;
opacity: 0.7;
}
/* List */
ol {
list-style: none;
padding-left: 0.25rem;
border-left: 1px solid #b05a3a;
padding-left: 1rem;
}
li {
position: relative;
margin-bottom: 0.7rem;
font-size: 0.88rem;
line-height: 1.8;
letter-spacing: -0.02em;
color: #000;
}
li::before {
content: "> ";
color: #aaa;
}
a {
color: #1a1a1a;
text-decoration-color: #b05a3a;
text-underline-offset: 3px;
}
a:hover { text-decoration: none; }
.back {
font-size: 0.72rem;
color: #888;
margin-bottom: 2.5rem;
display: block;
text-decoration: none;
}
.back:hover { color: #1a1a1a; }
.footer { font-size: 0.88rem; color: #444; line-height: 1.55; }
.footer-grid {
display: grid;
grid-template-columns: 200px 1fr;
gap: 0 3rem;
}
/* Larger screens: widen the label column so it stays proportional */
@media (min-width: 1400px) {
.section, .footer-grid { grid-template-columns: 300px 1fr; }
}
@media (min-width: 1920px) {
.section, .footer-grid { grid-template-columns: 25% 1fr; }
}
@media (max-width: 640px) {
body { padding: 2.5rem 1.5rem 4rem; }
.section, .footer-grid { grid-template-columns: 1fr; gap: 1rem 0; }
.title img { max-width: 40px; }
}
</style>
</head>
<body>
<div class="title">
<div>
<h1>Will Chavez<span class="cursor"></span></h1>
<div class="pronouns">he/him</div>
</div>
<img src="https://cdn.jsdelivr.net/gh/willchavez/willchavez-site/img/will.png" alt="Will Chavez" />
</div>
<div class="section">
<span class="section-label">I prototype, design, and build new software experiences like</span>
<ol>
<li>gen ai experiences & prototyping @ <a href="https://fluent2.microsoft.design/">fluent design studio</a></li>
<li>digital security & risk engineering team @ <a href="https://www.microsoft.com/en-us/">Microsoft</a></li>
<li><a href="https://xcompanalytics.com/">XComp Analytics</a> @ <a href="https://www.ibm.com/garage">IBM Garage</a></li>
<li><a href="https://www.ibm.com/products/watsonx-assistant">chatbots</a> @ Watson</li>
<li>r&d projects @ <a href="https://www.lockheedmartin.com/">Lockheed Martin</a></li>
</ol>
</div>
<div class="section">
<span class="section-label">Currently, I'm</span>
<ol>
<li>taking an HCI course @ <a href="https://omscs.gatech.edu/">Georgia Tech</a></li>
<li>prototyping new AI experiences @ <a href="https://www.microsoft.com/en-us/">Microsoft</a></li>
<li>mentoring early-in-career new hires @ <a href="https://digitalnest.org/">Digital Nest</a></li>
<li>working on my spanish on <a href="https://preply.com/">Preply</a> 🙇🏽</li>
<li>learning Ableton Live and creating <a href="https://soundcloud.com/william-chavez-salinas/sets/2026-ep">music</a></li>
<li><a href="https://www.goodreads.com/user/show/126295152-will-chavez">reading</a> whenever I can</li>
</ol>
</div>
<div class="section">
<span class="section-label">Previously, I've</span>
<ol>
<li>shipped <a href="https://github.com/microsoft/fluentui-system-icons">icons</a>, <a href="https://github.com/microsoft/fluentui-emoji">emoji</a> 🫠, and <a href="https://github.com/microsoft/fluentui-emoji-animated">animated emoji</a> 🪄 @ <a href="https://fluent2.microsoft.design/">fluent design studio</a></li>
<li>taken vocal / piano / ensemble lessons @ <a href="https://www.seattlejazzacademy.com/">SJA</a></li>
<li>played piano in a <a href="https://www.youtube.com/watch?v=VOtTwHimb8A">jazz quintet</a></li>
<li>volunteered development to <a href="https://medium.com/@willchavez/rebuilding-hireharlem-com-f07773edb7dc">Hire Harlem</a>, a site that spotlighted minority-owned businesses</li>
<li>kept an ongoing playlist via <a href="https://open.spotify.com/user/wchavezsalinas">Spotify</a> / <a href="https://music.apple.com/profile/willchavez">Apple Music</a> for the past 8 years</li>
<li>kept a <a href="https://www.instagram.com/willchavez/">horrible</a> <a href="https://www.linkedin.com/in/willchavez/">amount</a> of <a href="https://x.com/_willchavez">social</a> <a href="https://medium.com/@willchavez">media</a> <a href="https://letterboxd.com/willchavez/">profiles</a></li>
</ol>
</div>
<div class="footer-grid">
<span></span>
<p class="footer">check out my <a href="work.html">work</a>, or shoot me an <a href="mailto:wchavezsalinas@gmail.com">email</a></p>
</div>
</body>
</html>