cv improvements

This commit is contained in:
CherryKitten 2024-08-20 10:15:19 +02:00
parent ccc1f8da31
commit 025259c3c5
Signed by: sammy
GPG key ID: 98D8F75FB0658276
2 changed files with 23 additions and 0 deletions

View file

@ -4,7 +4,15 @@ template = "page.html"
path = "cv"
aliases = ["CV"]
+++
<div class="onlyprint">
<p>Samantha Yilmaz</p>
<p>1997-03-25</p>
<p>https://Cherrykitten.dev</p>
<p>https://github.com/cherrykitten</p>
<p>contact@cherrykitten.dev</p>
</div>
{% section() %}
## Technical Skills

View file

@ -282,6 +282,15 @@ hr {
display: none;
}
.onlyprint {
#display: none;
font-size: 0.8rem;
p {
padding: 0;
margin: 0;
}
}
@media print {
.section {
break-inside: avoid-page;
@ -291,7 +300,13 @@ hr {
table {
break-inside: avoid-page;
}
td {
border: none;
}
.noprint {
display: none;
}
.onlyprint {
display: initial;
}
}