Added short profile
This commit is contained in:
parent
76cba0b60d
commit
41a6bb66b7
|
@ -0,0 +1,29 @@
|
|||
<div class="short-profile-container">
|
||||
<div>
|
||||
<b style="text-align:left;">
|
||||
Short profile
|
||||
</b>
|
||||
</div>
|
||||
<div>
|
||||
Student at NEXT-Copenhagen
|
||||
Mediagymnasium and
|
||||
volunteer at Kildevæld
|
||||
Makerspace.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.short-profile-container{
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.short-profile-container > div:first-child {
|
||||
width: 100%;
|
||||
|
||||
/* Bottom border stripe*/
|
||||
border-bottom: 1mm solid black;
|
||||
}
|
||||
</style>
|
|
@ -1,12 +1,13 @@
|
|||
<script lang="ts">
|
||||
import NameAndImage from "../Comps/NameAndImage.svelte";
|
||||
|
||||
import ShortProfile from "../Comps/ShortProfile.svelte"
|
||||
</script>
|
||||
|
||||
<div class="cv-container-container include-in-print">
|
||||
<div class="cv-container">
|
||||
<div id="left-section">
|
||||
<NameAndImage/>
|
||||
<ShortProfile/>
|
||||
</div>
|
||||
<div id="right-section"></div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue