This commit is contained in:
Alex Emmet 2026-04-22 18:54:48 +02:00
commit 861bc41c9b
8 changed files with 30 additions and 15 deletions

View file

@ -32,5 +32,9 @@
{ {
"name": "mountain", "name": "mountain",
"destructive": false "destructive": false
},
{
"name": "mountain_horse",
"destructive": false
} }
] ]

View file

@ -24,6 +24,7 @@
"role": "Moderator & Developer" "role": "Moderator & Developer"
}, },
{ {
"icon": "litus.png",
"name": "Litus", "name": "Litus",
"priority": 2, "priority": 2,
"role": "Moderator" "role": "Moderator"
@ -40,7 +41,7 @@
"role": "Moderator" "role": "Moderator"
}, },
{ {
"icon": "harrpy.png", "icon": "harrpyrose.png",
"name": "Harrpy", "name": "Harrpy",
"priority": 2, "priority": 2,
"role": "Moderator" "role": "Moderator"

View file

@ -3,7 +3,7 @@
"title": "Anarchyphase Public Infrastructure", "title": "Anarchyphase Public Infrastructure",
"acronym": "API", "acronym": "API",
"leader": "NiniVX", "leader": "NiniVX",
"vips": "mewjo_", "vips": "mewjo_, Foxik_16",
"description": "Building infrastructure across the server.", "description": "Building infrastructure across the server.",
"image": "api.png", "image": "api.png",
"discord": "directs/api" "discord": "directs/api"
@ -42,11 +42,11 @@
"image": "outpost.png" "image": "outpost.png"
}, },
{ {
"title": "Pact of Peace and Nutrality", "title": "Pact of Peace and Neutrality",
"acronym": "PoPaN", "acronym": "PPN",
"leader": "Hamb_y", "leader": "Hamb_y",
"vips": "", "vips": "",
"description": "", "description": "Pact of Peace and neutrality lets anyone join no matter their team. Our goal is to promote peace within factions on the server",
"image": "mountain.png", "image": "mountain.png",
"discord": "directs/pact" "discord": "directs/pact"
} }

BIN
website/assets/litus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View file

@ -13,7 +13,8 @@
<ul class="nav-links"> <ul class="nav-links">
<li><a href="#concept">Concept</a></li> <li><a href="#concept">Concept</a></li>
<li><a href="#socials">Social</a></li> <li><a href="#socials">Social</a></li>
<li><a href="#team">Team</a></li> <li><a href="#staff">Staff</a></li>
<li><a href="#teams">Teams</a></li>
<li><a href="#posts">Posts</a></li> <li><a href="#posts">Posts</a></li>
</ul> </ul>
</nav> </nav>
@ -133,14 +134,16 @@
</a> </a>
</div> </div>
<div class="staff-section"> <section id="staff">
<h2>Staff</h2> <div class="staff-section">
<div id="staff-grid" class="team-grid"></div> <h2>Staff</h2>
</div> <div id="staff-grid" class="team-grid"></div>
</div>
</section>
</div> </div>
</section> </section>
<section id="team"> <section id="teams">
<div class="content-wrapper"> <div class="content-wrapper">
<h2>Teams</h2> <h2>Teams</h2>
<div id="teams-grid" class="teams-grid"></div> <div id="teams-grid" class="teams-grid"></div>

View file

@ -13,7 +13,8 @@
<ul class="nav-links"> <ul class="nav-links">
<li><a href="/#concept">Concept</a></li> <li><a href="/#concept">Concept</a></li>
<li><a href="/#socials">Social</a></li> <li><a href="/#socials">Social</a></li>
<li><a href="/#team">Team</a></li> <li><a href="/#staff">Staff</a></li>
<li><a href="/#teams">Team</a></li>
<li><a href="/#posts">Posts</a></li> <li><a href="/#posts">Posts</a></li>
</ul> </ul>
</nav> </nav>

View file

@ -400,7 +400,7 @@ section:not(.bg-image-section) {
} }
/* ─── Team ─── */ /* ─── Team ─── */
#team h2 { #teams h2 {
text-align: center; text-align: center;
font-size: 2.2rem; font-size: 2.2rem;
margin-bottom: 3rem; margin-bottom: 3rem;
@ -777,6 +777,7 @@ footer a:hover {
} }
/* ─── Socials Section Layout ─── */ /* ─── Socials Section Layout ─── */
#socials .content-wrapper { #socials .content-wrapper {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -794,6 +795,10 @@ footer a:hover {
} }
/* Staff section below socials */ /* Staff section below socials */
#staff {
background: #0000;
}
.staff-section { .staff-section {
width: 100%; width: 100%;
max-width: 1200px; max-width: 1200px;
@ -822,14 +827,15 @@ footer a:hover {
} }
/* ─── Team Cards ─── */ /* ─── Team Cards ─── */
#team { #teams {
background: var(--bg-solid); background: var(--bg-solid);
} }
#team h2 { #teams h2 {
text-align: center; text-align: center;
font-size: 2.2rem; font-size: 2.2rem;
margin-bottom: 3rem; margin-bottom: 3rem;
text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
color: #fff; color: #fff;
} }