deprived-main-website/src/routes/zhen/cv/CompsRev2/Education.svelte

81 lines
No EOL
2.1 KiB
Svelte

<script>
import placeholder from "$lib/zhen/cv-comps/400x400.png"
import NextLogo from "$lib/zhen/cv-comps/nextKbhLogo.png"
import SasLogo from "$lib/zhen/cv-comps/SASLogo.png"
import EmphasysLogo from "$lib/zhen/cv-comps/EmphasysLogo.png"
import DTU_Logo from "$lib/zhen/cv-comps/DTU_Logo.png"
import IconAndText from "./IconAndText.svelte"
</script>
<div class="container">
<div>
<b style="text-align:left;">
Education
</b>
</div>
<div class="table">
<div class="table-item">
<IconAndText logo={DTU_Logo}>
<b>University - Bacholor</b><br>
Technical University of Denmark<br>
<i>Sep 2024 - Now</i>
</IconAndText>
</div>
<div class="table-item">
<IconAndText logo={NextLogo}>
<b>Gymnasium/Collage - HTX</b><br>
NEXT-Mediegymnasiet: Computer science<br>
<i>May 2021 - Now</i>
</IconAndText>
</div>
<div class="table-item">
<IconAndText logo={SasLogo}>
<b>SAS Master class</b><br>
4-week project about SAS: OnDemand and SAS: Viya <br>
<i>Dec 2023 - Dec 2023</i>
</IconAndText>
</div>
<div class="table-item">
<IconAndText logo={EmphasysLogo}>
<b>Emphasys Centre - Erasmus+</b><br>
2 weeks of Unity VR <br>
<i>Oct 2023 - Oct 2023</i>
</IconAndText>
</div>
</div>
</div>
<style lang="scss">
.container{
display: grid;
place-items: center;
width: 90%;
overflow: hidden;
& > div:first-child {
width: 100%;
/* Bottom border stripe*/
border-bottom: 1mm solid black;
&:first-child {
font-size: x-large;
}
}
}
.table-item {
padding: 2mm;
display: flex;
justify-items: start;
width: 100%;
&:not(:last-child) {
border-bottom: 0.25mm solid #000000;
}
}
</style>