27 lines
638 B
Svelte
27 lines
638 B
Svelte
<div class="short-profile-container">
|
|
<div>
|
|
<b style="text-align:left;">
|
|
Biggest flex
|
|
</b>
|
|
</div>
|
|
<div>
|
|
Me and my small group of devs has won each and every gamejam, which we have participated in. <br/>
|
|
<h1 style="font-size: 0.75rem; color: grey;">*Gamejams that had competitions.</h1>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<style>
|
|
.short-profile-container{
|
|
display: grid;
|
|
place-items: center;
|
|
width: 90%;
|
|
}
|
|
|
|
.short-profile-container > div:first-child {
|
|
width: 100%;
|
|
|
|
/* Bottom border stripe*/
|
|
border-bottom: 1mm solid black;
|
|
}
|
|
</style> |