Skip to content

Commit b977604

Browse files
committed
photo, viewport
1 parent c8b70e0 commit b977604

File tree

3 files changed

+54
-13
lines changed

3 files changed

+54
-13
lines changed
86.7 KB
Loading

index.html

Lines changed: 53 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,70 @@
99
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png">
1010
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png">
1111
<link rel="manifest" href="/site.webmanifest">
12+
<style>
13+
.about-wrapper {
14+
display: flex;
15+
flex-direction: column;
16+
align-items: flex-start;
17+
max-width: 900px;
18+
padding: 0;
19+
gap: 1.5rem;
20+
}
21+
22+
.about-photo {
23+
width: 160px;
24+
height: auto;
25+
object-fit: cover;
26+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
27+
}
28+
29+
.about-text {
30+
max-width: 600px;
31+
margin-top: 0rem;
32+
margin-bottom: 0rem;
33+
}
34+
35+
@media (min-width: 768px) {
36+
.about-wrapper {
37+
flex-direction: row;
38+
align-items: flex-start;
39+
}
40+
.about-text {
41+
margin-top: 2rem;
42+
margin-bottom: 0rem;
43+
}
44+
}
45+
</style>
1246
</head>
1347
<body>
14-
15-
<h1>Andrew Zitek-Estrada</h1>
1648

17-
<p>Cryptography Engineer</p>
49+
<div class="about-wrapper">
50+
<img src="/images/Andrew-Zitek-Estrada-pic.webp" alt="Andrew Zitek-Estrada" class="about-photo" />
1851

19-
<p>École Polytechnique Fédérale de Lausanne</p>
52+
<section class="about-text">
53+
<h1>Andrew Zitek-Estrada</h1>
2054

21-
<p>andrew.zitek [at] epfl [dot] ch</p>
55+
<p>Cryptography Engineer</p>
56+
57+
<p>École Polytechnique Fédérale de Lausanne</p>
58+
59+
<p>andrew.zitek [at] epfl [dot] ch</p>
60+
</section>
61+
</div>
2262

2363
<section>
2464
<h2>About Me</h2>
2565
<p>
26-
I am a cryptography engineer at
27-
<a href="https://www.epfl.ch" target="_blank" rel="noopener noreferrer">EPFL</a>, working in the
28-
<a href="https://compsec.epfl.ch" target="_blank" rel="noopener noreferrer">Laboratory for Computation Security</a> led by
29-
<a href="https://ic-people.epfl.ch/~achiesa" target="_blank" rel="noopener noreferrer">Alessandro Chiesa</a>.
66+
I am a cryptography engineer at
67+
<a href="https://www.epfl.ch" target="_blank" rel="noopener noreferrer">EPFL</a>, working in the
68+
<a href="https://compsec.epfl.ch" target="_blank" rel="noopener noreferrer">Laboratory for Computation Security</a> led by
69+
<a href="https://ic-people.epfl.ch/~achiesa" target="_blank" rel="noopener noreferrer">Alessandro Chiesa</a>.
3070
</p>
3171
<p>
32-
Previously, I was a research assistant at
33-
<a href="https://www.nyu.edu" target="_blank" rel="noopener noreferrer">NYU</a> with
34-
<a href="https://jbonneau.com" target="_blank" rel="noopener noreferrer">Joseph Bonneau</a> and also a software engineer at
35-
<a href="https://www.ibm.com/us-en" target="_blank" rel="noopener noreferrer">IBM</a>.
72+
Previously, I was a research assistant at
73+
<a href="https://www.nyu.edu" target="_blank" rel="noopener noreferrer">NYU</a> with
74+
<a href="https://jbonneau.com" target="_blank" rel="noopener noreferrer">Joseph Bonneau</a> and also a software engineer at
75+
<a href="https://www.ibm.com/us-en" target="_blank" rel="noopener noreferrer">IBM</a>.
3676
</p>
3777
</section>
3878

style.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
color: #222;
1515
}
1616

17+
1718
header, footer {
1819
margin-bottom: 2rem;
1920
}

0 commit comments

Comments
 (0)