This commit is contained in:
CherryKitten 2024-08-28 10:04:00 +02:00
parent 381a2b1abe
commit c473d7d449
Signed by: sammy
GPG key ID: 98D8F75FB0658276
2 changed files with 10 additions and 3 deletions

View file

@ -4,14 +4,18 @@ template = "page.html"
path = "cv" path = "cv"
aliases = ["CV"] aliases = ["CV"]
+++ +++
<div class="onlyprint"> <div class="cvintro">
<p>Samantha Yilmaz</p> <p>Samantha Yilmaz</p>
<p>Pronouns: It/Its</p>
<div class="onlyprint">
<p>1997-03-25</p> <p>1997-03-25</p>
<p>https://Cherrykitten.dev</p> <p>https://Cherrykitten.dev</p>
<p>https://github.com/cherrykitten</p> <p>https://github.com/cherrykitten</p>
<p>contact@cherrykitten.dev</p> <p>contact@cherrykitten.dev</p>
</div>
</div> </div>
{% section() %} {% section() %}

View file

@ -282,8 +282,7 @@ hr {
display: none; display: none;
} }
.onlyprint { .cvintro {
display: none;
font-size: 0.8rem; font-size: 0.8rem;
p { p {
padding: 0; padding: 0;
@ -291,6 +290,10 @@ hr {
} }
} }
.onlyprint {
display: none;
}
@media print { @media print {
.section { .section {
break-inside: avoid-page; break-inside: avoid-page;