This commit is contained in:
Marc Beninca 2025-02-11 23:12:14 +01:00
parent b40aeec804
commit eda5a8acfc
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 29 additions and 5 deletions

View file

@ -22,7 +22,10 @@
<aside> <aside>
<header> <header>
<img class="photo" src="images/marc.png" alt="Me in front of hex dumps."> <section class="images">
<img class="big" src="images/marc.png" alt="VCF QR code.">
<img class="big" src="images/marc.png" alt="Me in front of hex dumps.">
</section>
<h1>Marc Beninca</h1> <h1>Marc Beninca</h1>
<table><tbody><tr> <table><tbody><tr>
<th>E-mail</th> <th>E-mail</th>
@ -33,6 +36,13 @@
</tr></tbody></table> </tr></tbody></table>
</header> </header>
<section>
<h2>Skills</h2>
<ul>
<li>build Debian images w/o installer</li>
</ul>
</section>
<section> <section>
<h2>Link</h2> <h2>Link</h2>

View file

@ -2,6 +2,24 @@ html {
font-family: DejaVu Sans Mono, monospace; font-family: DejaVu Sans Mono, monospace;
} }
section.images {
display: flex;
justify-content: space-around;
}
h1 { font-size: 1.5rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1.0rem; }
h1, h2, h3, h4, h5, h6 {
margin-block: .5em;
}
img.big {
block-size: 4em;
}
img.inline { img.inline {
block-size: 1.5em; block-size: 1.5em;
vertical-align: middle; vertical-align: middle;
@ -12,10 +30,6 @@ img.inline {
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
.photo {
block-size: 4em;
}
@media (width > 80ch) { @media (width > 80ch) {
.columns { grid-template-columns: 2fr 1fr; } .columns { grid-template-columns: 2fr 1fr; }
aside { order: 2; } aside { order: 2; }