Updated stats

This commit is contained in:
James Dinh 2023-03-14 01:40:10 -07:00
parent 6f699432a8
commit 11aa7ca850
5 changed files with 3982 additions and 3976 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -505,23 +505,17 @@ nav * {
} }
} }
@media (max-height: 550px) { @media (max-height: 550px) {
#logo { /* #logo {
transform: scale(0.8); transform: scale(0.8);
} } */
.header-subtitle-date {
transform: translateY(-30px);
}
.spots-container {
transform: translateY(-30px);
}
#line-header {
transform: translateY(-30px);
}
#entrance-arrow { #entrance-arrow {
visibility: hidden; visibility: hidden;
} }
.header {
transform: scale(0.8);
}
} }
@media (max-height: 400px) { @media (max-height: 450px) {
.header { .header {
transform: scale(0.7); transform: scale(0.7);
} }
@ -1426,6 +1420,9 @@ li .splide__pagination__page.is-active {
min-width: 200px; min-width: 200px;
justify-content: space-around; justify-content: space-around;
margin: 20px 0; margin: 20px 0;
background-color: #1d1d1d;
padding: 10px;
border-radius: 5px;
} }
.info-card { .info-card {
@ -1433,20 +1430,24 @@ li .splide__pagination__page.is-active {
max-width: 400px; max-width: 400px;
padding: 10px 20px; padding: 10px 20px;
margin: 10px 0; margin: 10px 0;
background-color: #197e47; background-color:rgb(49, 48, 48);
border-radius: 5px; border-radius: 5px;
} }
.info-card.green { .hcb-container {
background-color: #197e47; font-size: 24px;
padding: 2px;
display: flex;
justify-content: center;
align-items: center;
} }
.info-card.blue { .hcb-svg {
background-color: #188592; margin-right: 5px
} }
.info-card.red { .spots-container.bankacc-click {
background-color: #a83e32; background:#9a4752;
} }
.card-heading { .card-heading {

BIN
img/.DS_Store vendored

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -116,6 +116,11 @@ document.addEventListener('DOMContentLoaded', function(){
observer.observe(entry); observer.observe(entry);
}); });
const info_card_container = document.querySelectorAll('.card-info-container');
info_card_container.forEach(entry => {
observer.observe(entry);
});
const workshop_entry = document.querySelectorAll('.workshop-entry'); const workshop_entry = document.querySelectorAll('.workshop-entry');
workshop_entry.forEach(entry => { workshop_entry.forEach(entry => {
observer.observe(entry); observer.observe(entry);