summaryrefslogtreecommitdiff
path: root/assets/logo
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
committerRaindropsSys <raindrops@equestria.dev>2024-03-30 23:40:33 +0100
commit6b796258d413f00e498ce7f80f73a9f6c061f29c (patch)
tree49e64a5dd4cde2acff7f0a93ed3f8e20e1cb2dc8 /assets/logo
parent5860551daa0f60103ad24e93da29f401a653f144 (diff)
downloadpluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.gz
pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.tar.bz2
pluralconnect-6b796258d413f00e498ce7f80f73a9f6c061f29c.zip
Updated 5 files, added 2 files, deleted 495 files and renamed 7 files (automated)
Diffstat (limited to 'assets/logo')
-rw-r--r--assets/logo/banner.js174
-rw-r--r--assets/logo/custom-2023.css1115
-rw-r--r--assets/logo/light-2023.css182
-rw-r--r--assets/logo/newlogo-ng.pngbin101963 -> 0 bytes
4 files changed, 0 insertions, 1471 deletions
diff --git a/assets/logo/banner.js b/assets/logo/banner.js
deleted file mode 100644
index d092c62..0000000
--- a/assets/logo/banner.js
+++ /dev/null
@@ -1,174 +0,0 @@
-// noinspection JSUnresolvedVariable
-window.bannerFrench = false;
-
-function timeAgo(time) {
- if (!isNaN(parseInt(time))) {
- time = new Date(time).getTime();
- }
-
- let periods = ["sec", "min", "hr", "d", "wk", "mo", "y", "ages"];
-
- let lengths = ["60", "60", "24", "7", "4.35", "12", "100"];
-
- let now = new Date().getTime();
-
- let difference = Math.round((now - time) / 1000);
- let tense;
- let period;
-
- if (difference <= 10 && difference >= 0) {
- return "now";
- } else if (difference > 0) {
- tense = "ago";
- } else {
- tense = "later";
- }
-
- let j;
-
- for (j = 0; difference >= lengths[j] && j < lengths.length - 1; j++) {
- difference /= lengths[j];
- }
-
- difference = Math.round(difference);
-
- period = periods[j];
-
- return `${difference} ${period} ${tense}`;
-}
-
-async function refreshBanner(_, french) {
- offline = false;
- if (!french) french = false;
-
- window.bannerFrench = french;
-
- let data = window.currentMemberData;
- let index;
-
- if (data['last_fronted'] && data['last_fronted']['timestamp']) {
- data['last_fronted']['relative'] = timeAgo(currentMemberData.last_fronted.timestamp * 1000);
- }
-
- let active = 0;
- if (data['relations']['marefriends'] && data['relations']['marefriends'].length > 0) active++;
- if (data['relations']['caretakers'] && data['relations']['caretakers'].length > 0) active++;
- if (data['relations']['sexfriends'] && data['relations']['sexfriends'].length > 0) active++;
- if (data['relations']['sisters'] && data['relations']['sisters'].length > 0) active++;
- if (data['relations']['friends'] && data['relations']['friends'].length > 0) active++;
-
- document.getElementById("member-banner").innerHTML = `
-
-<div id="system-info" style="background:#${data['color']}55;border-radius:10px;display:grid;grid-template-columns: 128px 1fr; margin-left:-20px;margin-right: -20px;margin-top: -20px; padding: 0 10px;">
- <div style="margin:10px;width:100%;display:flex;align-items: center;justify-content: center;" id="member-icon-outer">
- <img id="member-icon" src="${offline ? JSON.parse(await localforage.getItem("images")).profile[data['icon']['offline'].split(".")[0].split("-")[1]][data['icon']['offline'].split(".")[0].split("-")[2]] : (data['icon']['online'] ?? (data['id'] === "fusion" ? '/assets/logo/logo.png' : data['system']['icon']))}" alt="" style="background-color:rgba(255, 255, 255, .125);width:128px;height:128px;border-radius:5px;">
- </div>
-
- <div id="mobile-left" style="padding:10px 10px 10px 20px;text-align:center;">
- <h3 style="margin-bottom:0;">
- <img id="member-icon-mobile" src="${offline ? JSON.parse(await localforage.getItem("images")).profile[data['icon']['offline'].split(".")[0].split("-")[1]][data['icon']['offline'].split(".")[0].split("-")[2]] : (data['icon']['online'] ?? (data['id'] === "fusion" ? '/assets/logo/logo.png' : data['system']['icon']))}" alt="" style="background-color:rgba(255, 255, 255, .125);width:36px;height:36px;border-radius:999px;display:none;margin-right:5px;">
- <span style="vertical-align: middle;">
- ${data['id'] === "unknown" ? `
- <span class="text-muted">${french ? "Membre inconnu" : "Unknown member"} (${data['system']['name']})</span>
- ` : data['id'] === "fusion" ? (data['name'] === "fusion" ? `
- <span class="text-muted">${french ? "Plusieurs membres fusionnés" : "Multiple merged members"}</span>
- ` : data['name']) : data['name']}
- </span><span id="mobile-species" style="float: right; display: none;">
- ${data['species'].filter(i => i && i['name'] !== "_").map(species => `
- <img data-bs-toggle="tooltip" title="${species['name']}" style="width:32px;vertical-align: middle;position:relative;top:-5px;" src="${offline ? species['icon_offline'] : `/assets/species/${species['icon']}`}" alt="${species['name']}">
- `).join("")}</span>
- </h3>
-
- <div style="margin-bottom:0.5rem;">
- ${data['badges'].map(i => i.html).join(" ")}
- ${data['badges'].length === 0 ? "&nbsp;" : ""}
- </div>
-
- <div style="display:grid;grid-template-columns: repeat(${data['median'] || data['id'] === "unknown" ? (french || data['gender'] === null ? 3 : 4) : data['id'] === "fusion" ? (french || data['gender'] === null ? 2 : 3) : (french || data['gender'] === null ? 4 : 5)}, 1fr);" id="member-card">
- ${french ? "" : `<span>
- ${data['id'] === "fusion" ? "she/her" : data['pronouns']}${data['age'] !== "-" ? '<br>' + data['age'] : ''}
- </span>`}
- <span>
- <b>${french ? `Préfixe${data['prefixes'].length > 1 ? 's' : ''} ` : `Prefix${data['prefixes'].length > 1 ? 'es' : ''}`}: </b><span class="member-small-separator"><br></span>
- ${data['prefixes'].length > 0 && data['prefixes'][0] !== null ? `<code style="color: white;">${data['prefixes'].join('</code>, <code style="color: white;">')}</code>` : `-`}
- </span>
- ${!data['median'] && data['id'] !== "unknown" ? `
- <span>
- ${data["id"] === "fusion" ? `
- <b>${french ? "Fronte depuis " : "Fronting since"}: </b><span class="member-small-separator"><br></span>
- ${data['last_fronted'] ? `
- ${data['last_fronted']['now'] ? `
- <span class="relative-time" data-relative-timestamp="${data['last_fronted']['timestamp']}">${data['last_fronted']['relative']}</span><br>&nbsp;
- ` : `
- <span class="text-muted">${french ? "Pas au front" : "Not fronting"}</span><br>&nbsp;
- `}
- ` : `<span class="text-muted">${french ? "Pas au front" : "Not fronting"}</span><br>&nbsp;`}` : `
- <b>${french ? "Front :" : "Last fronted:"} </b><span class="member-small-separator"><br></span>
- ${data['last_fronted'] ? `
- ${data['last_fronted']['now'] ? `
- ${french ? "En ce moment" : "Right now"}<br>
- (${french ? "commencé" : "started"} <span class="relative-time" data-relative-timestamp="${data['last_fronted']['timestamp']}">${data['last_fronted']['relative']}</span>)
- ` : `
- <span class="relative-time" data-relative-timestamp="${data['last_fronted']['timestamp']}">${data['last_fronted']['relative']}</span><br>
- (${french ? "pendant" : "for"} ${data['last_fronted']['duration']['pretty']})
- `}
- ` : `${french ? "Jamais" : "Never"}<br>&nbsp;`}`}
- </span>
- ` : ''}
- ${data['id'] !== "fusion" && data['gender'] !== null ? `
- <span>
- ${data['id'] === "unknown" ? (french ? "<b>Genre : </b><span class=\"member-small-separator\"><br></span> préférez demander" : "<b>Gender: </b><span class=\"member-small-separator\"><br></span> best to ask") : `
- <span><b>${french ? "Genre :" : "Gender:"} </b><span class="member-small-separator"><br></span></span>
- ${data['gender']}`}
- </span>` : ''}
- ${data['id'] !== "fusion" ? `
- <span>
- <span class="member-small-only"><b>${french ? "Position :" : "Location:"} </b></span>
- ${data['system']['page'] ? `<a class="member-link" href="${data['system']['page']}"><img style="width:24px;" src="${offline ? data['system']['icon_offline'] : `${data['system']['icon']}`}"> ${data['system']['name']}</a>` : `<img style="width:24px;" src="${offline ? data['system']['icon_offline'] : `${data['system']['icon']}`}"> ${data['system']['name']}`}<span class="member-small-separator"><br>
- ${data['species'].filter(i => i && i['name'] !== "_").map(species => `
- <img data-bs-toggle="tooltip" title="${species['name']}" style="width:32px;vertical-align: middle;position:relative;top:-5px;" src="${offline ? species['icon_offline'] : `/assets/species/${species['icon']}`}" alt="${species['name']}">
- `).join("")}</span>
- </span>
- ` : ''}
- </div>
- ${data['id'] !== "unknown" && data['id'] !== "fusion" ? `
- <div style="display:grid;grid-template-columns: repeat(${active}, 1fr);margin-top:5px;" id="member-relations">
- ${data['relations']['sexfriends'] && data['relations']['sexfriends'].length > 0 ? `<span>
- <b>${french ? (data['relations']['sexfriends'].length > 1 ? 'Rel. sexuelles ' : 'Rel. sexuelle ') : `Sexfriend${data['relations']['sexfriends'].length > 1 ? 's' : ''}`}: </b>${data['relations']['sexfriends'].length > 1 ? '<span class="list-separator-mobile"><br></span>' : ''}
- ${data['relations']['sexfriends'].map(relation => `
- <a title="${relation['name']}" data-bs-toggle="tooltip" class="member-link tooltip-nohelp" href="${relation['link']}"><img src="${offline ? relation['icon_offline'] : `${relation['icon']}`}" style="width:24px;"></a>`).join(``)}
- ${data['relations']['sexfriends'].length === 0 ? '-' : ''}
- </span>` : ``}
- ${data['relations']['marefriends'] && data['relations']['marefriends'].length > 0 ? `<span>
- <b>${french ? (data['relations']['marefriends'].length > 1 ? 'Copines ' : 'Copine ') : `Marefriend${data['relations']['marefriends'].length > 1 ? 's' : ''}`}: </b>${data['relations']['marefriends'].length > 1 ? '<span class="list-separator-mobile"><br></span>' : ''}
- ${data['relations']['marefriends'].map(relation => `
- <a title="${relation['name']}" data-bs-toggle="tooltip" class="member-link tooltip-nohelp" href="${relation['link']}"><img src="${offline ? relation['icon_offline'] : `${relation['icon']}`}" style="width:24px;"></a>`).join(``)}
- ${data['relations']['marefriends'].length === 0 ? '-' : ''}
- </span>` : ``}
- ${data['relations']['sisters'] && data['relations']['sisters'].length > 0 ? `<span>
- <b>${french ? (data['relations']['sisters'].length > 1 ? 'Sœurs ' : 'Sœur ') : `Sister${data['relations']['sisters'].length > 1 ? 's' : ''}`}: </b>${data['relations']['sisters'].length > 1 ? '<span class="list-separator-mobile"><br></span>' : ''}
- ${data['relations']['sisters'].map(relation => `
- <a title="${relation['name']}" data-bs-toggle="tooltip" class="member-link tooltip-nohelp" href="${relation['link']}"><img src="${offline ? relation['icon_offline'] : `${relation['icon']}`}" style="width:24px;"></a>`).join(``)}
- ${data['relations']['sisters'].length === 0 ? '-' : ''}
- </span>` : ``}
- ${data['relations']['caretakers'] && data['relations']['caretakers'].length > 0 ? `
- <span>
- <b>${french ? (data['relations']['caretakers'].length > 1 ? 'Gardiens ' : 'Gardien ') : `Caretaker${data['relations']['caretakers'].length > 1 ? 's' : ''}`}: </b>${data['relations']['caretakers'].length > 1 ? '<span class="list-separator-mobile"><br></span>' : ''}
- ${data['relations']['caretakers'].map(relation => `
- <a title="${relation['name']}" data-bs-toggle="tooltip" class="member-link tooltip-nohelp" href="${relation['link']}"><img src="${offline ? relation['icon_offline'] : `${relation['icon']}`}" style="width:24px;"></a>`).join(``)}
- ${data['relations']['caretakers'].length === 0 ? '-' : ''}
- </span>
- ` : ''}
- ${data['relations']['friends'] && data['relations']['friends'].length > 0 ? `<span>
- <b>${french ? (data['relations']['friends'].length > 1 ? 'Amies ' : 'Amie ') : `Friend${data['relations']['friends'].length > 1 ? 's' : ''}`}: </b>${data['relations']['sisters'].length > 1 ? '<span class="list-separator-mobile"><br></span>' : ''}
- ${data['relations']['friends'].map(relation => `
- <a title="${relation['name']}" data-bs-toggle="tooltip" class="member-link tooltip-nohelp" href="${relation['link']}"><img src="${offline ? relation['icon_offline'] : `${relation['icon']}`}" style="width:24px;"></a>`).join(``)}
- ${data['relations']['friends'].length === 0 ? '-' : ''}
- </span>` : ``}
- </div>
- ` : '<div style="margin-top:5px;">&nbsp;</div>'}
- </div>
-</div>
-
-`;
-} \ No newline at end of file
diff --git a/assets/logo/custom-2023.css b/assets/logo/custom-2023.css
deleted file mode 100644
index 0f8c75b..0000000
--- a/assets/logo/custom-2023.css
+++ /dev/null
@@ -1,1115 +0,0 @@
-img {
- image-rendering: pixelated !important;
-}
-
-.modal-dialog {
- margin-bottom: 3.5rem !important;
-}
-
-#admin-page {
- margin-left: 32px;
-}
-
-.debug-hidden {
- display: none;
-}
-
-#system-banner-container, #member-banner-container {
- z-index: -1;
-}
-
-.debug-outer:hover .debug-hidden {
- display: inline-block;
-}
-
-.modal {
- backdrop-filter: blur(30px);
- -webkit-backdrop-filter: blur(30px);
-}
-
-nav.navbar {
- background-color: rgba(0, 0, 0, .75) !important;
- backdrop-filter: blur(10px);
- -webkit-backdrop-filter: blur(10px);
- border-bottom: 1px solid rgba(255, 255, 255, .25);
-}
-
-.hpd-item-card:hover {
- background-color: rgba(255, 255, 255, .15) !important;
-}
-
-.hpd-item-card:active, .hpd-item-card:focus {
- background-color: rgba(255, 255, 255, .2) !important;
-}
-
-.hpd-system {
- transition: opacity 200ms;
-}
-
-.hpd-item-card {
- outline-style: solid;
- outline-width: 0;
- transition: background-color 200ms, outline-width 200ms;
-}
-
-.hpd-item-card:hover {
- outline-style: solid;
- outline-width: 4px;
-}
-
-.hpd-item-card:active {
- outline-style: solid;
- outline-width: 6px;
-}
-
-.hpd-system:hover {
- opacity: .9 !important;
-}
-
-.hpd-system:active, .hpd-system:focus {
- opacity: .8 !important;
-}
-
-.hpd-link:hover {
- background-color: rgba(255, 255, 255, .15) !important;
-}
-
-.hpd-link:active, .hpd-link:focus {
- background-color: rgba(255, 255, 255, .2) !important;
-}
-
-.list-separator-mobile {
- display: none;
-}
-
-@media (max-width: 991px) {
- #hpd-raindrops > div, #hpd-legacy > div, #hpd-other > div {
- grid-template-columns: repeat(3, 1fr) !important;
- }
-
- .list-separator-desktop {
- display: none;
- }
-
- span.list-separator-mobile {
- display: inline;
- }
-}
-
-@media (max-width: 768px) {
- #hpd-raindrops > div, #hpd-legacy > div, #hpd-other > div {
- grid-template-columns: repeat(2, 1fr) !important;
- }
-}
-
-@media (max-width: 575px) {
- #hpd-raindrops > div, #hpd-legacy > div, #hpd-other > div {
- grid-template-columns: repeat(1, 1fr) !important;
- }
-
- .hpd-item-card img {
- display: inline-block !important;
- margin-right: 5px !important;
- height: 32px !important;
- width: 32px !important;
- }
-
- #hpd-raindrops > div, #hpd-legacy > div, #hpd-other > div {
- grid-gap: 5px !important;
- }
-
- .hpd-item-card div {
- display: inline-block !important;
- }
-
- .hpd-item-card div:nth-child(3)::before {
- content: "(";
- padding-left: 5px;
- color: white !important;
- }
-
- .hpd-item-card div:nth-child(3)::after {
- content: ")";
- color: white !important;
- }
-}
-
-.dropdown-menu {
- background-color: #222 !important;
-}
-
-.dropdown-item:hover {
- background-color: rgba(255, 255, 255, .1) !important;
-}
-
-.dropdown-item:active, .dropdown-item:focus {
- background-color: rgba(255, 255, 255, .2) !important;
-}
-
-.dropdown-item {
- color: white !important;
-}
-
-.dropdown-icon {
- filter: invert(1) !important;
-}
-
-.dropdown-toggle .dropdown-icon {
- opacity: .5; !important;
- transition: 200ms opacity !important;
-}
-
-.dropdown-toggle:hover .dropdown-icon, .dropdown-toggle:active .dropdown-icon, .dropdown-toggle:focus .dropdown-icon {
- opacity: .75 !important;
-}
-
-dd {
- margin-left: 20px;
-}
-
-#system-info a {
- color: white !important;
-}
-
-#system-info a:hover {
- opacity: .75;
-}
-
-#system-info a:active, #system-info a:focus {
- opacity: .5;
-}
-
-@media (max-width: 991px) {
- #member-card {
- grid-template-columns: repeat(3, 1fr) !important;
- }
-
- .species-name {
- display: none;
- }
-}
-
-.member-small-only {
- display: none;
-}
-
-@media (max-width: 767px) {
- #member-card {
- grid-template-columns: 1fr !important;
- text-align: left;
- }
-
- #member-icon-mobile {
- display: inline-block !important;
- }
-
- #mobile-left {
- text-align: left !important;
- }
-
- #mobile-species {
- display: inline-block !important;
- }
-
- #system-info {
- grid-template-columns: 1fr !important;
- }
-
- #member-icon, #member-icon-outer {
- display: none !important;
- }
-
- #member-relations {
- grid-template-columns: 1fr !important;
- text-align: left;
- }
-
- .member-small-separator {
- display: none;
- }
-
- .member-small-only {
- display: inline-block;
- }
-}
-
-#page-content a {
- color: #afd0ff;
-}
-
-#page-content .btn-outline-light:hover {
- color: black !important;
-}
-
-#page-content a:hover {
- opacity: .75;
-}
-
-#page-content a:active, #page-content a:focus {
- opacity: .5;
-}
-
-.tooltip.show {
- opacity: 1;
-}
-
-.tooltip-inner {
- background: #151515;
- box-shadow: 3px 4px 10px #ffffff26;
-}
-
-.alert {
- filter: invert(1) hue-rotate(180deg);
-}
-
-.member-link {
- color: white !important;
- text-decoration: none !important;
-}
-
-.system-action {
- border-radius: 10px;
- color: white !important;
- text-decoration: none !important;
- cursor: pointer;
- transition: background 200ms;
-}
-
-.system-action:hover {
- background: rgba(255, 255, 255, .1);
-}
-
-.table-dark {
- --bs-table-bg: #000000;
-}
-
-.comparison {
- display: grid;
- grid-template-columns: 3fr 1.5fr 1.5fr 2fr repeat(4, 1fr);
-}
-
-.comparison-header {
- border-bottom: 2px solid rgba(255, 255, 255, .25);
- font-weight: bold;
-}
-
-.comparison-item {
- padding: 5px 10px;
- text-align: center;
-}
-
-.comparison-item-clickable:hover {
- background-color: rgba(255, 255, 255, .1);
-}
-
-.comparison-item-clickable:active, .comparison-item-clickable:focus {
- background-color: rgba(255, 255, 255, .25);
-}
-
-@media (min-width: 1400px) {
- .comparison-header-l0 {
- display: inline;
- }
- .comparison-header-l1 {
- display: none;
- }
- .comparison-header-l2 {
- display: none;
- }
- .comparison-header-l3 {
- display: none;
- }
- .comparison-header-l4 {
- display: none;
- }
- .comparison-header-l5 {
- display: none;
- }
- .comparison-name-full {
- display: inline;
- }
- .comparison-name-small {
- display: none;
- }
- .comparison-colors {
- display: inline;
- }
- .comparison-relations-count {
- display: none;
- }
- .comparison-relations-full {
- display: inline;
- }
-}
-
-@media (max-width: 1399px) {
- .comparison-header-l0 {
- display: none;
- }
- .comparison-header-l1 {
- display: inline;
- }
- .comparison-header-l2 {
- display: none;
- }
- .comparison-header-l3 {
- display: none;
- }
- .comparison-header-l4 {
- display: none;
- }
- .comparison-header-l5 {
- display: none;
- }
- .comparison-name-full {
- display: inline;
- }
- .comparison-name-small {
- display: none;
- }
- .comparison-colors {
- display: inline;
- }
- .comparison-relations-count {
- display: none;
- }
- .comparison-relations-full {
- display: inline;
- }
-}
-
-@media (max-width: 1199px) {
- .comparison-header-l0 {
- display: none;
- }
- .comparison-header-l1 {
- display: none;
- }
- .comparison-header-l2 {
- display: initial;
- }
- .comparison-header-l3 {
- display: none;
- }
- .comparison-header-l4 {
- display: none;
- }
- .comparison-header-l5 {
- display: none;
- }
- .comparison-name-full {
- display: none;
- }
- .comparison-name-small {
- display: inline;
- }
- .comparison-colors {
- display: inline;
- }
- .comparison-relations-count {
- display: inline;
- }
- .comparison-relations-full {
- display: none;
- }
-}
-
-@media (max-width: 991px) {
- .comparison-header-l0 {
- display: none;
- }
- .comparison-header-l1 {
- display: none;
- }
- .comparison-header-l2 {
- display: none;
- }
- .comparison-header-l3 {
- display: initial;
- }
- .comparison-header-l4 {
- display: none;
- }
- .comparison-header-l5 {
- display: none;
- }
- .comparison-name-full {
- display: none;
- }
- .comparison-name-small {
- display: inline;
- }
- .comparison-colors {
- display: none !important;
- }
- .comparison-relations-count {
- display: inline;
- }
- .comparison-relations-full {
- display: none;
- }
-}
-
-@media (max-width: 767px) {
- .comparison-header-l0 {
- display: none;
- }
- .comparison-header-l1 {
- display: none;
- }
- .comparison-header-l2 {
- display: none;
- }
- .comparison-header-l3 {
- display: none;
- }
- .comparison-header-l4 {
- display: initial;
- }
- .comparison-header-l5 {
- display: none;
- }
- .comparison-name-full {
- display: none;
- }
- .comparison-name-small {
- display: none;
- }
- .comparison-colors {
- display: none !important;
- }
- .comparison-relations-count {
- display: inline;
- }
- .comparison-relations-full {
- display: none;
- }
-}
-
-@media (max-width: 575px) {
- .comparison-header-l0 {
- display: none;
- }
- .comparison-header-l1 {
- display: none;
- }
- .comparison-header-l2 {
- display: none;
- }
- .comparison-header-l3 {
- display: none;
- }
- .comparison-header-l4 {
- display: none;
- }
- .comparison-header-l5 {
- display: initial;
- }
- .comparison-name-full {
- display: none;
- }
- .comparison-name-small {
- display: none;
- }
- .comparison-colors {
- display: none !important;
- }
- .comparison {
- grid-template-columns: repeat(4, 2fr) repeat(4, 1fr) !important;
- }
- .comparison-relations-count {
- display: inline;
- }
- .comparison-relations-full {
- display: none;
- }
-}
-
-.tree-first-separator {
- height: 14px !important;
- top: 0 !important;
-}
-
-.tree-l0-separator {
- display: inline-block;
- width: 20px;
- margin-left: 35px;
- border-bottom: 1px solid white;
- border-left: 1px solid white;
- height: 26px;
- position: relative;
- top: -12px;
-}
-
-.tree-l1 .tree-l0-separator {
- border-bottom: none !important;
-}
-
-.tree-l1-separator {
- display: inline-block;
- width: 20px;
- margin-left: 35px;
- border-bottom: 1px solid white;
- border-left: 1px solid white;
- height: 26px;
- position: relative;
- top: -12px;
- left: -10px;
-}
-
-.tree-l1 .tree-l0-separator {
- width: 30px;
-}
-
-.tree-l1 .tree-inner {
- position: relative;
- left: -10px;
-}
-
-.tree-l1 .tree-l0-separator {
- border-bottom: none !important;
-}
-
-.tree-l2-separator {
- display: inline-block;
- width: 20px;
- margin-left: 35px;
- border-bottom: 1px solid white;
- border-left: 1px solid white;
- height: 26px;
- position: relative;
- top: -12px;
- left: -10px;
-}
-
-.tree-l2 .tree-l1-separator {
- width: 30px;
-}
-
-.tree-l2 .tree-l0-separator {
- width: 30px;
-}
-
-.tree-l2 .tree-inner {
- position: relative;
- left: -10px;
-}
-
-.tree-inner {
- display: inline-block;
-}
-
-.navbar-collapse.collapse.show, .navbar-collapse.collapsing {
- background: black;
- margin: 7px -12px;
- padding: 0 12px;
- border-bottom: 1px solid rgba(255, 255, 255, .25);
-}
-
-.new-homepage-system-title:hover {
- opacity: .85;
-}
-
-#new-homepage-systems {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- grid-gap: 20px;
-}
-
-@media (max-width: 1198px) {
- #new-homepage-systems {
- grid-template-columns: 1fr 1fr !important;
- }
-}
-
-@media (max-width: 991px) {
- #new-homepage-systems {
- grid-template-columns: 1fr !important;
- }
-}
-
-.new-homepage-system-list {
- background-color: rgba(255, 255, 255, .1);
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
- display: grid;
-}
-
-.new-homepage-link-last {
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
-}
-
-.new-homepage-link:hover {
- opacity: .85;
-}
-
-.new-homepage-link:active {
- opacity: .75;
-}
-
-.new-homepage-system-title:active {
- opacity: .75;
-}
-
-peh-muted {
- --bs-text-opacity: 1;
- color: #6c757d!important;
-}
-
-.dropdown-toggle::after {
- margin-bottom: -3px !important;
-}
-
-.navbar-nav {
- width: 100%;
-}
-
-.card {
- background-color: #111 !important;
- border: 1px solid rgba(255, 255, 255, .125) !important;
-}
-
-#member-banner-container > #member-banner > #system-info {
- border-bottom-right-radius: 0 !important;
- border-bottom-left-radius: 0 !important;
-}
-
-#member-details {
- background: rgba(255, 255, 255, .1);
- border: 1px solid transparent;
- border-top: none;
- padding: 10px 20px;
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- text-align: center;
-}
-
-#member-details.member-details-loggedIn {
- border-radius: 0;
- padding-bottom: 0 !important;
-}
-
-#member-details-2 {
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
- padding: 10px 20px;
- text-align: center;
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- background: rgba(255, 255, 255, .1);
- border: 1px solid transparent;
- border-top: none;
-}
-
-.navbar-collapse.show {
- z-index: 99999;
-}
-
-@media (max-width: 991px) {
- div#member-details.member-details-loggedIn, div#member-details.member-details-loggedIn2 {
- grid-template-columns: repeat(3, 1fr) !important;
- text-align: center;
- }
-
- #member-details {
- grid-template-columns: 1fr !important;
- text-align: left;
- }
-}
-
-@media (max-width: 767px) {
- div#member-details.member-details-loggedIn, div#member-details.member-details-loggedIn2 {
- grid-template-columns: repeat(2, 1fr) !important;
- text-align: left;
- }
-
- #member-details-2 {
- grid-template-columns: repeat(2, 1fr) !important;
- text-align: left;
- }
-
- .member-detail-desktop {
- display: none !important;
- }
-
- .member-detail-mobile {
- display: initial !important;
- }
-}
-
-.member-detail-desktop {
- display: initial;
-}
-
-.member-detail-mobile {
- display: none;
-}
-
-.linked-card {
- opacity: 1 !important;
- color: white !important;
- text-decoration: none !important;
-}
-
-.linked-card:hover {
- opacity: .75 !important;
-}
-
-.linked-card:active {
- opacity: .5 !important;
-}
-
-.navbar-brand {
- position: relative;
- z-index: 9999;
-}
-
-html, body {
- overflow-x: hidden;
-}
-
-.form-check-input {
- filter: invert(1) hue-rotate(180deg);
-}
-
-body {
- margin: 0 !important;
-}
-
-#app {
- background-color: var(--palette-0);
- position: fixed;
- top: 52px;
- right: 10px;
- bottom: 10px;
- overflow: auto;
- left: 64px;
- border-radius: 15px;
-}
-
-#app > #member-banner-container, #system-banner-container {
- top: 52px !important;
- width: calc(100% - 74px) !important;
- border-top-left-radius: 15px !important;
- border-top-right-radius: 15px !important;
-}
-
-div#member-banner-inner, div#system-banner-inner {
- border-top-left-radius: 15px !important;
- border-top-right-radius: 15px !important;
- background: linear-gradient(180deg, rgba(var(--palette-0-rgb),0) 0%, rgba(var(--palette-0-rgb),.25) 50%, rgba(var(--palette-0-rgb),1) 100%) !important;
-}
-
-.alert, .btn-close, .text-danger, .text-success, .form-select, .ck-toolbar, .system-action img, #member-designs-inner img, .list-group-item img {
- filter: none !important;
-}
-
-@media (prefers-color-scheme: light), (prefers-color-scheme: no-preference) {
- .dark-only {
- display: none !important;
- }
-}
-
-@media (prefers-color-scheme: dark) {
- .light-only {
- display: none !important;
- }
-}
-
-hr {
- border-color: var(--bs-link-color) !important;
-}
-
-.modal {
- z-index: 9999999 !important;
-}
-
-.modal-backdrop {
- display: none !important;
-}
-
-:root {
- /* Overrides the border radius setting in the theme. */
- --ck-border-radius: 4px !important;
-
- /* Overrides the default font size in the theme. */
- --ck-font-size-base: 14px !important;
-
- /* Helper variables to avoid duplication in the colors. */
- --ck-custom-background: var(--bs-tertiary-bg) !important;
- --ck-custom-foreground: var(--palette-5) !important;
- --ck-custom-border: var(--palette-3) !important;
- --ck-custom-white: hsl(0, 0%, 100%) !important;
-
- /* -- Overrides generic colors. ------------------------------------------------------------- */
-
- --ck-color-base-foreground: var(--ck-custom-background) !important;
- --ck-color-focus-border: hsl(208, 90%, 62%) !important;
- --ck-color-text: var(--palette-6) !important;
- --ck-color-shadow-drop: hsla(0, 0%, 0%, 0.2) !important;
- --ck-color-shadow-inner: hsla(0, 0%, 0%, 0.1) !important;
-
- /* -- Overrides the default .ck-button class colors. ---------------------------------------- */
-
- --ck-color-button-default-background: var(--ck-custom-background) !important;
- --ck-color-button-default-active-shadow: hsl(270, 2%, 23%) !important;
- --ck-color-button-default-disabled-background: var(--ck-custom-background) !important;
-
- --ck-color-button-on-background: var(--ck-custom-foreground) !important;
- --ck-color-button-on-active-background: hsl(255, 4%, 14%) !important;
- --ck-color-button-on-active-shadow: hsl(240, 3%, 19%) !important;
- --ck-color-button-on-disabled-background: var(--ck-custom-foreground) !important;
-
- --ck-color-button-action-background: hsl(168, 76%, 42%) !important;
- --ck-color-button-action-hover-background: hsl(168, 76%, 38%) !important;
- --ck-color-button-action-active-background: hsl(168, 76%, 36%) !important;
- --ck-color-button-action-active-shadow: hsl(168, 75%, 34%) !important;
- --ck-color-button-action-disabled-background: hsl(168, 76%, 42%) !important;
- --ck-color-button-action-text: var(--ck-custom-white) !important;
-
- --ck-color-button-save: hsl(120, 100%, 46%) !important;
- --ck-color-button-cancel: hsl(15, 100%, 56%) !important;
-
- /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */
-
- --ck-color-dropdown-panel-background: var(--ck-custom-background) !important;
- --ck-color-dropdown-panel-border: var(--ck-custom-foreground) !important;
-
- /* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */
-
- --ck-color-split-button-hover-background: var(--ck-color-button-default-hover-background) !important;
- --ck-color-split-button-hover-border: var(--ck-custom-foreground) !important;
-
- /* -- Overrides the default .ck-input class colors. ----------------------------------------- */
-
- --ck-color-input-background: var(--ck-custom-background) !important;
- --ck-color-input-border: hsl(257, 3%, 43%) !important;
- --ck-color-input-text: hsl(0, 0%, 98%) !important;
- --ck-color-input-disabled-background: hsl(255, 4%, 21%) !important;
- --ck-color-input-disabled-border: hsl(250, 3%, 38%) !important;
- --ck-color-input-disabled-text: hsl(0, 0%, 78%) !important;
-
- /* -- Overrides the default .ck-labeled-field-view class colors. ---------------------------- */
-
- --ck-color-labeled-field-label-background: var(--ck-custom-background) !important;
-
- /* -- Overrides the default .ck-list class colors. ------------------------------------------ */
-
- --ck-color-list-background: var(--ck-custom-background) !important;
- --ck-color-list-button-hover-background: var(--palette-5) !important;
- --ck-color-list-button-on-background: var(--palette-5) !important;
- --ck-color-list-button-on-text: var(--ck-color-base-background) !important;
-
- /* -- Overrides the default .ck-balloon-panel class colors. --------------------------------- */
-
- --ck-color-panel-background: var(--ck-custom-background) !important;
- --ck-color-panel-border: var(--ck-custom-border) !important;
-
- /* -- Overrides the default .ck-toolbar class colors. --------------------------------------- */
-
- --ck-color-toolbar-background: var(--ck-custom-background) !important;
- --ck-color-toolbar-border: var(--ck-custom-border) !important;
-
- /* -- Overrides the default .ck-tooltip class colors. --------------------------------------- */
-
- --ck-color-tooltip-background: hsl(252, 7%, 14%) !important;
- --ck-color-tooltip-text: hsl(0, 0%, 93%) !important;
-
- /* -- Overrides the default colors used by the ckeditor5-image package. --------------------- */
-
- --ck-color-image-caption-background: var(--bs-body-bg) !important;
- --ck-color-image-caption-text: var(--bs-body-color) !important;
-
- /* -- Overrides the default colors used by the ckeditor5-widget package. -------------------- */
-
- --ck-color-widget-blurred-border: hsl(0, 0%, 87%) !important;
- --ck-color-widget-hover-border: hsl(43, 100%, 68%) !important;
- --ck-color-widget-editable-focus-background: var(--ck-custom-white) !important;
-
- /* -- Overrides the default colors used by the ckeditor5-link package. ---------------------- */
-
- --ck-color-link-default: hsl(190, 100%, 75%) !important;
-
- /* CUSTOM OPTIONS */
- --ck-color-button-on-color: var(--bs-link-color) !important;
- --ck-color-button-on-hover-background: var(--palette-3) !important;
- --ck-color-button-default-hover-background: var(--palette-4) !important;
- --ck-color-list-button-on-background-focus: var(--palette-1) !important;
- --ck-color-base-background: transparent !important;
- --ck-color-button-default-active-background: var(--palette-2) !important;
-}
-
-:root {
- --ck-color-base-border: var(--bs-secondary-bg) !important;
- --ck-focus-outer-shadow: transparent !important;
- --ck-focus-ring: 1px solid transparent !important;
-}
-
-.ck.ck-button.ck-on.ck-button_with-text {
- color: var(--bs-body-color) !important;
-}
-
-.ck.ck-content {
- background-color: var(--bs-body-bg) !important;
- color: var(--bs-body-color) !important;
-}
-
-.ck.ck-content.ck-focused {
- border-color: var(--bs-link-color) !important;
-}
-
-.relation {
- background-color: var(--palette-1) !important;
-}
-
-.relation-intro {
- background-color: var(--palette-2) !important;
- border-right: 1px solid var(--palette-3) !important;
-}
-
-body {
- margin-left: 300px;
-}
-
-.modal {
- left: 150px;
-}
-
-nav {
- display: none !important;
-}
-
-#navigation-pane {
- z-index: 9999;
- background: black;
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- width: 300px;
- border-right: 1px solid rgba(255, 255, 255, .25);
- overflow: auto;
-}
-
-#title-bar {
- position: fixed;
- top: 0;
- left: 300px;
- right: 0;
- height: 34px;
- background: rgba(0, 0, 0, .75);
- z-index: 9999;
- padding: 5px;
- text-align: center;
- backdrop-filter: blur(10px);
- -webkit-backdrop-filter: blur(10px);
- border-bottom: 1px solid rgba(255, 255, 255, .25);
-}
-
-#mobile-navigation {
- display: none;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 48px;
- background: rgba(0, 0, 0, .75);
- backdrop-filter: blur(30px);
- -webkit-backdrop-filter: blur(30px);
- border-top: 1px solid rgba(255, 255, 255, .25);
- z-index: 999999;
-}
-
-@media (max-width: 1360px) {
- .modal.show {
- left: 250px !important;
- width: calc(100% - 250px) !important;
- }
-
- .modal {
- left: 125px !important;
- }
-
- #title-bar {
- left: 250px !important;
- }
-
- #navigation-pane {
- width: 250px !important;
- }
-
- body {
- margin-left: 250px !important;
- }
-
- #system-banner-container, #member-banner-container {
- width: 100% !important;
- }
-}
-
-@media (max-width: 1300px) {
- .modal.show {
- left: 200px !important;
- width: calc(100% - 200px) !important;
- }
-
- .modal {
- left: 100px !important;
- }
-
- #title-bar {
- left: 200px !important;
- }
-
- #navigation-pane {
- width: 200px !important;
- }
-
- body {
- margin-left: 200px !important;
- }
-}
-
-@media (max-width: 1195px) {
- .modal.show {
- left: 0 !important;
- width: 100% !important;
- }
-
- .modal {
- left: 0 !important;
- }
-
- #title-bar {
- left: 0 !important;
- }
-
- #navigation-pane {
- display: none !important;
- }
-
- body {
- margin-left: 0 !important;
- }
-
- #mobile-navigation {
- display: block !important;
- }
-}
-
-@media (max-width: 700px) {
- #title-bar-parts-mobile {
- display: inline !important;
- }
-
- #title-bar-parts-desktop {
- display: none;
- }
-
- #title-bar {
- text-align: left;
- }
-} \ No newline at end of file
diff --git a/assets/logo/light-2023.css b/assets/logo/light-2023.css
deleted file mode 100644
index b082640..0000000
--- a/assets/logo/light-2023.css
+++ /dev/null
@@ -1,182 +0,0 @@
-@media (prefers-color-scheme: light) {
- #banner-lower {
- background: #dddddd8a !important;
- }
-
- #timeline-container {
- background: #dddddd8a !important;
- border-top-color: rgba(0, 0, 0, .1) !important;
- }
-
- #timeline a, .new-homepage-system-title, .new-homepage-link, .home-legacy, .member-card-name, .member-card-prefix, .member-card-prefix code, #navigation-pane *, #mobile-navigation-box-container *, .member-link, .relation-intro, .system-action, #member-banner code, #system-info a {
- color: var(--bs-body-color) !important;
- }
-
- .timeline-indicator {
- border-right-color: rgba(0, 0, 0, .5) !important;
- }
-
- .home-legacy-icon, #explicit-modal img {
- filter: invert(1);
- }
-
- #hpd-legacy, .hpd-item-card {
- background-color: rgba(0, 0, 0, .05) !important;
- }
-
- .hpd-item-card:hover {
- background-color: rgba(0, 0, 0, .1) !important;
- }
-
- .hpd-item-card:active {
- background-color: rgba(0, 0, 0, .15) !important;
- }
-
- #navigation-pane {
- background-color: #ddd !important;
- border-right: 1px solid rgba(0, 0, 0, .1) !important;
- }
-
- #mobile-navigation {
- background-color: #ddd !important;
- border-top: 1px solid rgba(0, 0, 0, .1) !important;
- }
-
- .dropdown-icon, #login-link img, .alert, .btn-close, .relation img, .text-danger, .text-success, .form-select, .ck-toolbar, .form-check-input, .system-action img, #member-designs-inner img, .form-control, .list-group-item img {
- filter: none !important;
- }
-
- #login-link, #pane-header, .pane-group {
- border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
- }
-
- .pane-group-category {
- background: rgba(0, 0, 0, .025) !important;
- border: 1px solid rgba(0, 0, 0, .05) !important;
- }
-
- .pane-group-item:hover, .mobile-navigation-item:hover {
- background-color: rgba(0, 0, 0, .05);
- }
-
- .mobile-navigation-item:active, .mobile-navigation-item.open {
- background-color: rgba(0, 0, 0, .1);
- }
-
- #mobile-navigation-box-container {
- background-color: rgba(255, 255, 255, .5) !important;
- }
-
- #page-content a {
- color: var(--bs-link-color);
- }
-
- #btn-on {
- background: hsl(0, 80%, 75%) !important;
- }
-
- .card {
- background-color: #fff !important;
- border: 1px solid rgba(0,0,0,.125) !important;
- color: black;
- }
-
- .btn-outline-light, #page-content .btn-outline-light {
- color: #212529 !important;
- border-color: #212529 !important;
- }
-
- .btn-outline-light:hover, #page-content .btn-outline-light:hover {
- color: #fff !important;
- background-color: #212529 !important;
- border-color: #212529 !important;
- }
-
- .btn-check:active+.btn-outline-light, .btn-check:checked+.btn-outline-light, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show, .btn-outline-light:active, #page-content .btn-outline-light:active {
- color: #fff !important;
- background-color: #212529 !important;
- border-color: #212529 !important;
- }
-
- .form-control {
- color: #212529 !important;
- background-color: #fff !important;
- background-clip: padding-box !important;
- border: 1px solid #ced4da !important;
- }
-
- .contact-item {
- background-color: #ddd;
- }
-
- .contact-method {
- background-color: #ccc;
- }
-
- .dropdown-menu {
- background-color: #fff !important;
- }
-
- .dropdown-item {
- color: #212529 !important;
- opacity: 1 !important;
- }
-
- .dropdown-item:focus, .dropdown-item:hover {
- color: #1e2125 !important;
- background-color: #e9ecef !important;
- }
-
- .day-gradient {
- color: white;
- }
-
- #system-banner-inner, #member-banner-inner {
- background: linear-gradient(180deg, rgba(239,239,239,0) 0%, rgba(239,239,239,.25) 50%, rgba(239,239,239,1) 100%) !important;
- }
-
- #system-page, #member-page {
- background-color: rgba(226,226,226,0.8) !important;
- }
-
- .system-info-system {
- background-color: rgba(0, 0, 0, .05) !important;
- }
-
- #system-actions {
- background-color: rgba(0, 0, 0, .025) !important;
- }
-
- .system-action:hover {
- background: rgba(0, 0, 0, .05) !important;
- }
-
- #member-designs-inner {
- background-color: rgba(20, 20, 20, .05) !important;
- }
-
- .btn-dark {
- color: #000 !important;
- background-color: #f8f9fa !important;
- border-color: #f8f9fa !important;
- }
-
- .btn-dark:hover {
- color: #000 !important;
- background-color: #f9fafb !important;
- border-color: #f9fafb !important;
- }
-
- .btn-check:active+.btn-dark, .btn-check:checked+.btn-dark, .btn-dark.active, .btn-dark:active, .show>.btn-dark.dropdown-toggle {
- color: #000 !important;
- background-color: #f9fafb !important;
- border-color: #f9fafb !important;
- }
-
- .btn-check:focus+.btn-dark, .btn-dark:focus {
- color: #000 !important;
- background-color: #f9fafb !important;
- border-color: #f9fafb !important;
- box-shadow: 0 0 0 0.25rem rgba(211,212,213,.5) !important;
- }
-} \ No newline at end of file
diff --git a/assets/logo/newlogo-ng.png b/assets/logo/newlogo-ng.png
deleted file mode 100644
index 78f7bc8..0000000
--- a/assets/logo/newlogo-ng.png
+++ /dev/null
Binary files differ