Current (non-working-frontend) state

This commit is contained in:
2023-05-22 18:39:47 +02:00
parent b29550f429
commit cfc28c5959
13 changed files with 354 additions and 89 deletions

View File

@ -8,7 +8,7 @@ body {
.sidebar {
position: fixed;
top: 0;
top: 0.5rem;
bottom: 0;
left: 0;
@ -16,12 +16,12 @@ body {
padding: 48px 0 0; /* Height of navbar */
box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
/*
@media (max-width: 767.98px) {
.sidebar {
top: 5rem;
}
}
}*/
.sidebar-sticky {
position: relative;
@ -63,7 +63,6 @@ body {
/*
* Navbar
*/
.navbar-brand {
padding-top: 0.75rem;
@ -71,7 +70,7 @@ body {
font-size: 1rem;
box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
}
*/
.navbar .navbar-toggler {
top: 0.25rem;
right: 1rem;

View File

@ -0,0 +1,12 @@
function randomInRange(min, max) {
return Math.random() * (max - min) + min;
}
function doTheConfetti() {
confetti({
angle: 100,
spread: randomInRange(70, 120),
particleCount: randomInRange(100, 200),
origin: { y: 0.6 }
});
}

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB