29 lines
555 B
Svelte
29 lines
555 B
Svelte
<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> |