bring back blue background
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Successful in 21s
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Successful in 21s
This commit is contained in:
parent
3efc93280f
commit
04ef603bca
2 changed files with 42 additions and 34 deletions
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export let logo:string;
|
export let logo: string;
|
||||||
export let logoWidths: string = "10%";
|
export let logoWidths: string = "10%";
|
||||||
|
|
||||||
export let fontSize: string = "3mm";
|
export let fontSize: string = "3mm";
|
||||||
|
@ -14,10 +14,15 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<img src={logo} class="" alt="{imageCaption}" width="{logoWidths}"/>
|
<img
|
||||||
|
src={logo}
|
||||||
|
class="bg-white w-10 h-10 object-contain"
|
||||||
|
alt={imageCaption}
|
||||||
|
width={logoWidths}
|
||||||
|
/>
|
||||||
<div style="line-height: {lineHeight};">
|
<div style="line-height: {lineHeight};">
|
||||||
<span style="font-size: {fontSize};">
|
<span style="font-size: {fontSize};">
|
||||||
<slot/>
|
<slot />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -27,8 +32,6 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-items: start;
|
justify-items: start;
|
||||||
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
& > div {
|
& > div {
|
||||||
padding-left: 3mm;
|
padding-left: 3mm;
|
||||||
|
|
||||||
|
@ -41,3 +44,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
if (!hideOnPrintParam) {
|
if (!hideOnPrintParam) {
|
||||||
window.location.href = `${window.location.href}?hideOnPrint=1`;
|
window.location.href = `${window.location.href}?hideOnPrint=1`;
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
||||||
function getFormattedDate(): string {
|
function getFormattedDate(): string {
|
||||||
const date = new Date();
|
const date = new Date();
|
||||||
|
@ -79,7 +79,10 @@
|
||||||
<div id="left-section">
|
<div id="left-section">
|
||||||
<LeftTopDecor Style="pointer-events: none;" />
|
<LeftTopDecor Style="pointer-events: none;" />
|
||||||
<BottomRightDecor Style="pointer-events: none;" />
|
<BottomRightDecor Style="pointer-events: none;" />
|
||||||
<div class="absolute rotate-12 width-[10cm] h-full right-[15cm]" style="background-color: #bdd6ee"></div>
|
<div
|
||||||
|
class="absolute rotate-12 width-[10cm] h-full right-[15cm]"
|
||||||
|
style="background-color: #bdd6ee"
|
||||||
|
></div>
|
||||||
<div>
|
<div>
|
||||||
<NameAndImage />
|
<NameAndImage />
|
||||||
<ShortProfile />
|
<ShortProfile />
|
||||||
|
@ -101,7 +104,7 @@
|
||||||
<LinkToSource />
|
<LinkToSource />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<Profile/>
|
<Profile />
|
||||||
<BiggestFlex />
|
<BiggestFlex />
|
||||||
<TableOfProjects />
|
<TableOfProjects />
|
||||||
<Experience />
|
<Experience />
|
||||||
|
@ -170,6 +173,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#left-section {
|
#left-section {
|
||||||
|
background-color: #bdd6ee;
|
||||||
|
|
||||||
> div:last-child {
|
> div:last-child {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue