fixed my CV with Vim!
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Successful in 23s

This commit is contained in:
BOTAlex 2025-05-26 05:19:26 +02:00
parent d3e11c32e6
commit 72811eacc4
3 changed files with 87 additions and 73 deletions

View file

@ -2,18 +2,16 @@
export let Style = ""; export let Style = "";
</script> </script>
<div class="container" style="{Style}"> <div class="container" style={Style}>
<div> <div class="w-full flex justify-center">
<div> <div class="text-center"></div>
Thank you! ❤
</div>
</div> </div>
</div> </div>
<style lang="scss"> <style lang="scss">
.container { .container {
position: absolute; position: absolute;
transform: translate(40.2mm, 5mm) rotate(-45deg); transform: translate(20.3mm, -5mm) rotate(-45deg);
display: grid; display: grid;
justify-self: end; justify-self: end;
vertical-align: bottom; vertical-align: bottom;
@ -25,7 +23,11 @@
padding-top: 5mm; padding-top: 5mm;
//border-bottom: #4472c4 dashed 2mm; //border-bottom: #4472c4 dashed 2mm;
background-image: linear-gradient(to right, #4472c4 70%, rgba(255,255,255,0) 0%); background-image: linear-gradient(
to right,
#4472c4 70%,
rgba(255, 255, 255, 0) 0%
);
background-position: top; background-position: top;
background-size: 6mm 1.5mm; background-size: 6mm 1.5mm;
background-repeat: repeat-x; background-repeat: repeat-x;
@ -48,3 +50,4 @@
} }
} }
</style> </style>

View file

@ -74,7 +74,7 @@
</div> </div>
</div> </div>
<div class="cv-container-container include-in-print"> <div class="NotoSans cv-container-container include-in-print">
<div class="cv-container sections decorations"> <div class="cv-container sections decorations">
<div id="left-section"> <div id="left-section">
<LeftTopDecor Style="pointer-events: none;" /> <LeftTopDecor Style="pointer-events: none;" />
@ -90,7 +90,11 @@
<div id="right-section"> <div id="right-section">
<AlexWatermark Style="pointer-events: none;" /> <AlexWatermark Style="pointer-events: none;" />
<div id="TopRightSkillsText"> <div id="TopRightSkillsText">
<RepeatedSkills targetTextHeight={30} targetTextWidth={75} /> <RepeatedSkills
class="Cozette"
targetTextHeight={30}
targetTextWidth={75}
/>
</div> </div>
<div id="Credit"> <div id="Credit">
<LinkToSource /> <LinkToSource />
@ -251,4 +255,3 @@
} }
} }
</style> </style>

View file

@ -13,7 +13,11 @@
url("/fonts/NotoSans-VariableFont_wdth,wght.ttf") format("truetype"); url("/fonts/NotoSans-VariableFont_wdth,wght.ttf") format("truetype");
} }
.cozette * { .NotoSans * {
font-family: "NotoSans";
}
.Cozette * {
font-family: "CozetteVector"; font-family: "CozetteVector";
} }
@ -28,10 +32,13 @@ body * {
} }
} }
.include-in-print { &, & * { .include-in-print {
&,
& * {
-webkit-print-color-adjust: exact !important; -webkit-print-color-adjust: exact !important;
print-color-adjust: exact !important; print-color-adjust: exact !important;
}} }
}
html { html {
background: var(--background1); background: var(--background1);
@ -44,7 +51,8 @@ body {
margin: 0; margin: 0;
} }
a, a:link a:visited { a,
a:link a:visited {
color: var(--text1); color: var(--text1);
text-decoration: none; text-decoration: none;
} }
@ -53,9 +61,9 @@ code {
font-weight: 400; font-weight: 400;
font-size: 0.9rem; font-size: 0.9rem;
line-height: 1.3; line-height: 1.3;
letter-spacing: .32px; letter-spacing: 0.32px;
border-radius: .25rem; border-radius: 0.25rem;
padding: 0 .5rem; padding: 0 0.5rem;
background-color: #333333; background-color: #333333;
} }