skill
This commit is contained in:
parent
b40aeec804
commit
eda5a8acfc
2 changed files with 29 additions and 5 deletions
12
index.html
12
index.html
|
@ -22,7 +22,10 @@
|
|||
<aside>
|
||||
|
||||
<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>
|
||||
<table><tbody><tr>
|
||||
<th>E-mail</th>
|
||||
|
@ -33,6 +36,13 @@
|
|||
</tr></tbody></table>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<h2>Skills</h2>
|
||||
<ul>
|
||||
<li>build Debian images w/o installer</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Link</h2>
|
||||
|
||||
|
|
|
@ -2,6 +2,24 @@ html {
|
|||
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 {
|
||||
block-size: 1.5em;
|
||||
vertical-align: middle;
|
||||
|
@ -12,10 +30,6 @@ img.inline {
|
|||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.photo {
|
||||
block-size: 4em;
|
||||
}
|
||||
|
||||
@media (width > 80ch) {
|
||||
.columns { grid-template-columns: 2fr 1fr; }
|
||||
aside { order: 2; }
|
||||
|
|
Loading…
Add table
Reference in a new issue