-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
259 lines (209 loc) · 7.22 KB
/
about.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
<!doctype html>
<html>
<head>
<title>Alex Cabral - Home</title>
<link rel = "stylesheet" href="https://fonts.googleapis.com/css?family=Playfair+Display|Lato:300,400,700|Source+Sans+Pro:light" />
<link rel="shortcut icon" href="ACtransparent.png" type="image/png">
<!-- Metadata declaration, mostly for SEO type stuff. Description is what will typically show up on search.-->
<meta charset="UTF-8">
<meta name="keywords" content="Alex Cabral, portfolio, personal website">
<meta name = "description" content="Alex Cabral is a UX Researcher on the Cloud Native Experiences team for Microsoft Azure, currently specializing in Linux and Open Source projects.">
<meta name = "author" content="Alex Cabral">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- viewport helps scale for mobile devices more easily, avoid weird scrolling left issues-->
<style>
* {
/*margin: 0;
padding: 1%;*/
box-sizing: border-box;
}
header {
font-family: 'Playfair Display', serif;
font-size: 2.65em;
padding: 2% 2% 0% 2%;
}
h1 {
font-family: 'Playfair Display', serif;
/*font-size: 48px*/
font-size: 2.65em;
}
h2 {
font-family: 'Playfair Display', serif;
font-size: 1.4em;
}
h3 {
font-family: 'Lato', sans-serif;
font-size: 1.15em;
}
body {
font-family: 'Lato', sans-serif;
font-size: 1.15em;
font-weight: 300;
margin: 0% 0% 0% 0%
}
.header-link {
color: #000000;
text-decoration: none;
/*margin: 0% 0%;
font-size: 1.2rem;*/
/*font-family: 'Playfair Display', serif;
font-size: 2.65em;
padding: 2% 2% 0% 2%; */
}
/* SECTION CLASSES */
.portfolio {
/* for spacing and responsiveness of project section */
display: flex;
/*flex-flow: row wrap;*/
flex-wrap: wrap;
/*justify-content: space-around;*/
justify-content: center;
/*padding: 0;
margin: 0;
list-style: none;*/
gap:20px;
}
/* DIV CLASSES */
.projects {
text-align: center;
margin: 0% 10% 3% 10%
}
/* Anchor tag must be block-level and take full size of child div */
.project-link {
display: block; /* Makes the <a> behave like a block container */
text-decoration: none; /* Remove underline from links */
width: 360px; /* Match the .project dimensions */
height: 285px;
}
.project {
/*display: block;*/
/*width: 360px;
height: 285px;*/
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
position: relative;
border: 2px solid #c6d9e7; /* img border */
border-radius: 8px; /* how rounded the corners are */
overflow: hidden;
transition: transform 0.3s ease, border-color 0.3s ease;
}
.project:hover {
transform: scale(1.03);
/*transition: transform 0.3s ease; -- moved to .project for debug purposes*/
border-color: #2E3532; /*#244f6e*/
}
.project-title {
position: absolute;
bottom: 0;
width: 100%;
background: rgba(0, 0, 0, 0.7);
color: #fff;
text-align: center;
font-size: 1.5rem;
padding: 2%;
}
.top-nav {
list-style-type: none;
font-family: "Lato", sans-serif;
font-size: 1.1em;
font-weight: 400;
text-transform: uppercase;
display: flex + safe;
background-color: #EEE;
padding: 0.75% 1% 0.75% 1%;
text-align: center;
}
.top-nav_items {
display: inline-flex;
padding: 0% 4% 0% 4%;
}
.nav-link {
color: #0576C7;
text-decoration: none;
margin: 0% 0%;
font-size: 1.2rem;
}
.nav-link:hover {
color: #2E3532; /*#0078d7*/
text-decoration: underline;
}
.intro {
margin: 0% 10% 0% 10%
}
/* Responsive Design */
@media (max-width: 1200px) {
/*.project {
width: 400px;
height: 400px;
}*/
.project-link {
width: 300px;
height: 300px;
}
}
@media (max-width: 768px) {
/*.project {
width: 300px;
height: 300px;
}*/
.project-link {
width: 300px;
height: 300px;
}
}
@media (max-width: 680px) { /* 480px */
/*.project {
width: 100%;
aspect-ratio: 1; /* Maintain square shape on small screens
height: auto; /* Ensure height adjusts
}*/
.project-link {
width: 70%;
aspect-ratio: 1;
height: auto;
}
}
</style>
</head>
<body>
<header id="site-header">
<a href = "index.html" class="header-link">
<center>Alex Cabral</center>
</a>
</header>
<nav>
<center>
<ul class = "top-nav">
<li class = "top-nav_items"><a href="index.html" class = "nav-link">Home</a></li>
<li class = "top-nav_items"><a href="about.html" class = "nav-link">About</a></li>
<li class = "top-nav_items"><a href="contact.html" class = "nav-link">Contact</a></li>
<li class = "top-nav_items"><a href="AlexCabral_Resume.pdf" class = "nav-link">Résumé</a></li>
<li class = "top-nav_items"><a href="https://www.linkedin.com/in/alex-cabral-720b73135/" class = "nav-link">LinkedIn</a></li>
</ul>
</center>
</nav>
<div class="intro">
<center>
<p>
I am a UX Researcher on the Cloud Native Experiences team for Microsoft Azure, currently specializing in Linux and Open Source projects.
</p>
<p>
My expertise is in accessibility, and I previously led research for new projects on Benetech's Labs team, a nonprofit focused on bridging
the gap between people and technologies. Most known for Bookshare, the world's largest library of ebooks for people with
reading disabilities, Benetech works to bridge the gap between people and technology.
<p>I was previously active in / am currently involved in the DIAGRAM Center.</p>
</p>
<p>
I received my Bachelor's degree from the University of California, Santa Cruz (UCSC) in 2018 in Cogntive Science, with a focus on Human-Computer Interaction (HCI) and Artificial Intelligence (AI).
<p>
I was a member of the ASSIST Lab, the Re-Embodied Cognition lab, and the Cognitive Modelling Lab. I was mentored by Leila Takayama and Sri Kurniawan.
</p>
<p>I received first place in ASSETS ACM Student Research Competition and am published in the 2018 journal proceedings for my work on using telepresence robots to improve museum access for people with developmental disabilities.</p>
</p>
</div>
<!-- consider: little icons. e.g. first place is a trophy, member of labs is an office building, degree is a degree icon / cert icon, etc -->
</center>
</body>
</html>