Big progress on personal cv from pdf to html
This commit is contained in:
parent
88a86fe2b0
commit
23ade8d085
9 changed files with 220 additions and 71 deletions
23
src/routes/zhen/CVs/Comps/NameAndImage.svelte
Normal file
23
src/routes/zhen/CVs/Comps/NameAndImage.svelte
Normal file
|
@ -0,0 +1,23 @@
|
|||
<script lang="ts">
|
||||
import NamePlate from "./NamePlate.svelte";
|
||||
import selfie from "$lib/zhen/cv-comps/zhenSelfie.jpg"
|
||||
</script>
|
||||
|
||||
<div class="nameAndImageContainer">
|
||||
<NamePlate/>
|
||||
<img src={selfie} class="selfie-constraints" alt="nothing"/>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.nameAndImageContainer {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
.selfie-constraints{
|
||||
padding-top: 2.5mm;
|
||||
|
||||
max-width: 65%;
|
||||
border-radius: 5mm;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue