add firefox polyfill for containers and fix some tweaks

pull/2/head
Midnight 1 year ago
parent 3c88121524
commit fd1dcaa5ff

@ -10,6 +10,10 @@
<body>
<div>%svelte.body%</div>
<script>
if (!("container" in document.documentElement.style)) {
import("https://unpkg.com/container-query-polyfill@^0.2.0");
}
let getCookie = (cname) => {
let name = cname + "=";
let decodedCookie = decodeURIComponent(document.cookie);

@ -102,7 +102,7 @@
<div class="absolute inset-0 w-full h-screen flex flex-col items-center gap-1 justify-center font-bold anim" id="lists">
</div>
<div class="flex h-full w-full @xl:p-20 gap-10 py-10 px-5 z-10">
<div class="flex h-full w-full @4xl:p-20 gap-10 py-10 px-5 z-10">
<img
src={randomBannerPic}
alt="mid"

@ -9,7 +9,8 @@
"overcome your challenges",
"push yourself forward",
"dare to dare",
"go out there and live"
"go out there and live",
"stop using twitter"
];
let text = texts[0];
@ -17,7 +18,7 @@
let i = 0;
text = texts[i % 7];
setInterval(() => {
text = texts[i % 7];
text = texts[i % texts.length];
i++;
}, 3000);
});

@ -29,6 +29,16 @@
<p>HBO-ICT / Bachelor Computer Science</p>
</div>
<div class="flex flex-col gap-2">
<span class="flex justify-between items-end"><b class="text-xl">Self taught</b><p class="text-sm">2016 and ongoing</p></span>
<p>Self taught</p>
</div>
<div class="flex flex-col gap-2">
<span class="flex justify-between items-end"><b class="text-xl">PuppyPride Developer</b><p class="text-sm">2020 and ongoing</p></span>
<p>Self taught</p>
</div>
<div class="flex flex-col gap-2">
<span class="flex justify-between items-end"><b class="text-xl">Internship Witteveen+Bos</b><p class="text-sm">2022</p></span>
<p>Witteveen+Bos is a major worldwide agricultural software company. During my internship me and my team developed a generic authentication system in Django that would be used as a customized plug-in template for new projects at the company.</p>

Loading…
Cancel
Save