Current (non-working-frontend) state
This commit is contained in:
@ -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;
|
||||
|
12
static/js/confettiHeader.js
Normal file
12
static/js/confettiHeader.js
Normal 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
BIN
static/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 71 KiB |
1
static/logo/Design_Logo_Black.svg
Normal file
1
static/logo/Design_Logo_Black.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 25 KiB |
1
static/logo/Design_Logo_white.svg
Normal file
1
static/logo/Design_Logo_white.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 25 KiB |
1
static/logo/Design_icon.svg
Normal file
1
static/logo/Design_icon.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 22 KiB |
Reference in New Issue
Block a user