added some cool seasonal banners
All checks were successful
Web/pipeline/head This commit looks good
All checks were successful
Web/pipeline/head This commit looks good
This commit is contained in:
parent
49558c0f74
commit
cbe4a615df
9 changed files with 42 additions and 21 deletions
|
@ -183,6 +183,10 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Seasonal banner -->
|
||||
<a id="banner" class="rounded-top" hidden></a>
|
||||
<script src="./scripts/banner.js"></script>
|
||||
|
||||
<!-- Footer -->
|
||||
<div class="footer rounded-top">
|
||||
<span class="text-muted"><a href="https://git.ellpeck.de/Ellpeck/Web">© 2018-2021 Ellpeck</a> – <a href="#impressum">Impressum</a> – <a href="#privacy">Privacy</a></span>
|
||||
|
|
BIN
res/autism.png
Normal file
BIN
res/autism.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 937 B |
BIN
res/blm.png
Normal file
BIN
res/blm.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 191 B |
BIN
res/pride.png
BIN
res/pride.png
Binary file not shown.
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 178 B |
|
@ -82,7 +82,7 @@ for (let question of questions) {
|
|||
$('#about-list').html(a);
|
||||
|
||||
function getAge() {
|
||||
let birthdayMillis = Date.UTC(1999, 4, 21);
|
||||
let birthdayMillis = Date.UTC(1999, 5 - 1, 21);
|
||||
let todayMillis = Date.now();
|
||||
let ageSinceStart = new Date(todayMillis - birthdayMillis);
|
||||
return ageSinceStart.getUTCFullYear() - 1970;
|
||||
|
|
16
scripts/banner.js
Normal file
16
scripts/banner.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
let date = new Date();
|
||||
if (date.getMonth() + 1 === 6) {
|
||||
setBanner("pride", "It's Pride Month! Consider donating to charities like The Trevor Project.", "https://www.thetrevorproject.org/");
|
||||
} else if (date.getMonth() + 1 === 2) {
|
||||
setBanner("blm", "It's Black History Month! Consider donating to charities like Black Lives Matter.", "https://blacklivesmatter.com/");
|
||||
} else if (date.getMonth() + 1 === 4 && date.getDate() <= 4) {
|
||||
setBanner("autism", "It's Autism Awareness Week! Consider donating to charities like the ASAN.", "https://autisticadvocacy.org/");
|
||||
}
|
||||
|
||||
function setBanner(name, desc, link) {
|
||||
let banner = $("#banner");
|
||||
banner.prop("title", desc);
|
||||
banner.prop("href", link);
|
||||
banner.css("background-image", `url(${loc}/res/${name}.png)`);
|
||||
banner.removeAttr("hidden");
|
||||
}
|
|
@ -1,13 +1,10 @@
|
|||
const dark = getCookie("dark") === "true";
|
||||
const pride = new Date().getMonth() === 5;
|
||||
const loc = $("script").last().attr("src").split("/")[0];
|
||||
|
||||
if (dark) {
|
||||
addStyle(`${loc}/style/dark.css`);
|
||||
addStyle(`${loc}/style/prettify-dark.css`);
|
||||
}
|
||||
if (pride)
|
||||
addStyle(`${loc}/style/pride.css`);
|
||||
|
||||
$(function () {
|
||||
openModals(window.location.hash);
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
.jumbotron {
|
||||
background-image: url("../res/pride.png");
|
||||
background-size: auto 100%;
|
||||
color: black;
|
||||
}
|
|
@ -140,11 +140,20 @@ body {
|
|||
width: 85%;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: 1200px;
|
||||
background-color: #f8f9fa;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
|
@ -210,18 +219,18 @@ blockquote {
|
|||
filter: saturate(130%);
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.navbar {
|
||||
width: 1200px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.footer {
|
||||
width: 1200px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#banner {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: 1200px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
|
Loading…
Reference in a new issue