Home: Difference between revisions
From The Jadnix Codex
No edit summary |
No edit summary |
||
| Line 8: | Line 8: | ||
flex-direction: column; | flex-direction: column; | ||
gap: 40px; | gap: 40px; | ||
max-width: | max-width: 900px; | ||
margin: 0 auto; | margin: 0 auto; | ||
font-family: 'Consolas', 'Monaco', monospace; | font-family: 'Consolas', 'Monaco', monospace; | ||
} | } | ||
/* --- SECTION 1: THE MEMO | /* --- SECTION 1: THE MEMO --- */ | ||
.memo-box { | .memo-box { | ||
border: 1px solid #333; | border: 1px solid #333; | ||
background: #0f0f14; | background: #0f0f14; | ||
box-shadow: 0 0 20px rgba(0,0,0,0.5); | box-shadow: 0 0 20px rgba(0,0,0,0.5); | ||
} | } | ||
| Line 41: | Line 40: | ||
} | } | ||
/* --- SECTION 2: THE | /* --- SECTION 2: THE FACTION STACK --- */ | ||
.faction- | .faction-list { | ||
display: | display: flex; | ||
flex-direction: column; | |||
gap: | gap: 30px; | ||
} | } | ||
.faction- | |||
/* The Clickable Row */ | |||
.faction-row { | |||
display: flex; | |||
align-items: flex-start; | |||
gap: 30px; | |||
background: #0f0f14; | background: #0f0f14; | ||
border: 1px solid #333; | border: 1px solid #333; | ||
padding: | padding: 30px; | ||
text- | text-decoration: none !important; /* Kill default link underline */ | ||
transition: transform 0.2s, box-shadow 0.2s | color: #d1d1d1 !important; | ||
transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; | |||
position: relative; | |||
} | } | ||
.faction- | |||
transform: | .faction-row:hover { | ||
transform: translateX(10px); /* Slide slightly right on hover */ | |||
z-index: 10; | |||
} | } | ||
.faction- | |||
width: | .faction-logo { | ||
height: | width: 120px; | ||
height: 120px; | |||
object-fit: contain; | object-fit: contain; | ||
flex-shrink: 0; /* Don't squash the logo */ | |||
} | } | ||
.faction- | |||
font-size: 1. | .faction-text-area { | ||
flex-grow: 1; | |||
} | |||
.faction-header { | |||
font-size: 1.5em; | |||
font-weight: bold; | font-weight: bold; | ||
margin-bottom: | margin-bottom: 15px; | ||
text-transform: uppercase; | text-transform: uppercase; | ||
letter-spacing: 1px; | letter-spacing: 1px; | ||
border-bottom: 1px dashed #333; | |||
padding-bottom: 10px; | |||
} | } | ||
.faction- | |||
font-size: 0. | .faction-body { | ||
font-size: 0.95em; | |||
line-height: 1.6; | |||
color: #aaa; | color: #aaa; | ||
} | } | ||
/* | /* FACTION SPECIFIC STYLES */ | ||
.card-still { border- | |||
.card-still:hover { box-shadow: 0 | /* 1. THE STILL (Purple) */ | ||
.card-still .faction- | .card-still { border-left: 6px solid #a020f0; } | ||
.card-still:hover { | |||
box-shadow: -10px 0 30px rgba(160, 32, 240, 0.15); | |||
border-color: #a020f0; | |||
} | |||
.card-still .faction-header { color: #a020f0; } | |||
.card-rr { border- | /* 2. HOUSE VOIDSEED (Gold) */ | ||
.card-rr:hover { box-shadow: 0 | .card-void { border-left: 6px solid #DAA520; } | ||
.card-rr .faction- | .card-void:hover { | ||
box-shadow: -10px 0 30px rgba(218, 165, 32, 0.15); | |||
border-color: #DAA520; | |||
} | |||
.card-void .faction-header { color: #DAA520; font-family: 'Georgia', serif; } | |||
.card-void .faction-body { font-family: 'Georgia', serif; font-style: italic; color: #ccc; } | |||
/* 3. R&R CORPS (Blue) */ | |||
.card-rr { border-left: 6px solid #21b0cd; } | |||
.card-rr:hover { | |||
box-shadow: -10px 0 30px rgba(33, 176, 205, 0.15); | |||
border-color: #21b0cd; | |||
} | |||
.card-rr .faction-header { color: #21b0cd; } | |||
/* --- SECTION 3: NAVIGATION | /* --- SECTION 3: NAVIGATION --- */ | ||
.nav-header { | .nav-header { | ||
border-bottom: 1px dashed #555; | border-bottom: 1px dashed #555; | ||
| Line 113: | Line 140: | ||
padding: 15px; | padding: 15px; | ||
text-align: center; | text-align: center; | ||
text-decoration: none; | text-decoration: none !important; | ||
transition: all 0.2s; | transition: all 0.2s; | ||
display: flex; | display: flex; | ||
| Line 122: | Line 149: | ||
.nav-btn:hover { | .nav-btn:hover { | ||
background: #a020f0; | background: #a020f0; | ||
color: #000; | color: #000 !important; | ||
border-color: #a020f0; | border-color: #a020f0; | ||
box-shadow: 0 0 15px #a020f0; | box-shadow: 0 0 15px #a020f0; | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
.nav-title { font-weight: bold; font-size: 1.1em; } | .nav-title { font-weight: bold; font-size: 1.1em; color: #fff; } | ||
.nav-sub { font-size: 0.7em; opacity: 0.7; margin-top: 5px; } | .nav-sub { font-size: 0.7em; opacity: 0.7; margin-top: 5px; color: #ddd; } | ||
.nav-btn:hover .nav-title, .nav-btn:hover .nav-sub { color: #000; } | |||
/* --- MOBILE FIXES --- */ | /* --- MOBILE FIXES --- */ | ||
@media (max-width: 768px) { | @media (max-width: 768px) { | ||
.faction- | .faction-row { | ||
.nav-grid { grid-template-columns: 1fr 1fr; } | flex-direction: column; | ||
align-items: center; | |||
text-align: center; | |||
} | |||
.faction-logo { margin-bottom: 20px; } | |||
.nav-grid { grid-template-columns: 1fr 1fr; } | |||
} | } | ||
</style> | </style> | ||
| Line 163: | Line 196: | ||
</div> | </div> | ||
<!-- 2. THE | <!-- 2. THE FACTION STACK (Vertical) --> | ||
<div style="margin-top: | <div style="margin-top: 30px;"> | ||
<div class="nav-header">SURVEYOR FACTIONS</div> | <div class="nav-header">SURVEYOR FACTIONS</div> | ||
<div class="faction- | <div class="faction-list"> | ||
<!-- THE STILL --> | <!-- CARD 1: THE STILL (Top) --> | ||
< | <a href="/wiki/The_Quiescent" class="faction-row card-still"> | ||
<img src="https://files.catbox.moe/0cmhjh.png" class="faction- | <img src="https://files.catbox.moe/0cmhjh.png" class="faction-logo"> | ||
<div class="faction- | <div class="faction-text-area"> | ||
<div class="faction-header">The Quiescent</div> | |||
<div class="faction-body"> | |||
The ones with permanence, and nothing less. The ones that ensure what is discovered cannot fade away. Most of us are from Alpha-Earth, and seek the recollection, recording, and remapping of the Seams… as well as all other things of similar origin in the Cosmos hidden from us. Those in the Quiescent call themselves “Stills”; we understand that to keep something stable, one must not care about their own stability, be it their mind, body, or spirit. We are the ones that upkeep Jadnix Codex servers, and provide the means for you to read these very words. We can be recognized by our colors, black and purple. When on pages written, managed, or overseen by a Still, you will see those colors. <br><br> | |||
We’ve made it really easy for you. | |||
</div> | |||
</div> | </div> | ||
</ | </a> | ||
<!-- | <!-- CARD 2: HOUSE VOIDSEED (Middle) --> | ||
< | <a href="/wiki/House_Voidseed" class="faction-row card-void"> | ||
<img src="https://files.catbox.moe/ | <img src="https://files.catbox.moe/73m0cp.png" class="faction-logo"> | ||
<div class="faction- | <div class="faction-text-area"> | ||
<div class="faction-header">House Voidseed</div> | |||
<div class="faction-body"> | |||
Hello friend, we have the means, however not the ability nor permanence. It doesn’t matter what you call us: House Voidseed, the Dealers, the Moneymen, the Wanders, Strangers, Women of Old… oh, so many names during times of tragedy and peace alike. Giving the means to the ones without, in exchange for what we ourselves lack, is our profession; deals and pacts. Absolute truths in a world where all lie, even the air you trust to be real and safe. It’s a Voidseed Guarantee that our Dealers will never lie to you, or others, while conducting business. That is why we are so relied on; sometimes you just can’t trust what you experience, and you’re correct in feeling that way, until you read between the lines and discover the truth. Black and gold is what we proudly wear. You’ll see it, if you look for it. Of course, you are free to learn more about us. Some of us may seem broken on the inside, or masking the outside, but we promise, we’re so eager to meet you… although it’s very likely you’ve spoken to us before. | |||
</div> | |||
</div> | </div> | ||
</ | </a> | ||
<!-- | <!-- CARD 3: R&R CORPS (Bottom) --> | ||
< | <a href="/wiki/Rescue_and_Removal_Corps" class="faction-row card-rr"> | ||
<img src="https://files.catbox.moe/ | <img src="https://files.catbox.moe/8gs8n5.png" class="faction-logo"> | ||
<div class="faction- | <div class="faction-text-area"> | ||
<div class="faction-header">R&R Corps</div> | |||
<div class="faction-body"> | |||
Heya, we’re the ones with the ability, just not the means. Or permanence. Take a guess what we do! …Good guess, but wrong! Kind of. Pinning down where the vast majority of us are’s a fool’s errand, but we can be found throughout the Cosmos. There’s even some of us on Alpha-Earth! Before we joined the WSG, the R&R was pretty scattered, but now we even have fliers at [censored]. I’ll be honest, we’ve been called some pretty… unique names over the years, but lately we’ve reclaimed one we’re sticking with: the Falseskippers. Pretty on the nose, but most of us like it. If you ever come across a post about some strange Seam or some uploaded log of some sort… it’s probably us! Our colors are black and blue—like, coral-ish blue, not dark blue—so we’re pretty easy to spot. We’d love for you to learn more! We… really need some help. Well, we don’t, not badly— I need help, and the R&R said I could get another partner if I wrote this for the Still’s board, so… what are you waiting for? | |||
</div> | |||
</div> | </div> | ||
</ | </a> | ||
</div> | </div> | ||
| Line 199: | Line 239: | ||
<!-- 3. NAVIGATION --> | <!-- 3. NAVIGATION --> | ||
<div style="margin-top: | <div style="margin-top: 40px;"> | ||
<div class="nav-header">CODEX NAVIGATION</div> | <div class="nav-header">CODEX NAVIGATION</div> | ||
Revision as of 19:04, 9 February 2026
TYPE: TRANSCRIPTED COPY
FROM: STILL RAYMOND (SITE ADMIN)
TO: WSG CODEX // ALL NEW ARRIVALS
SUBJECT: WELCOME ABOARD
FROM: STILL RAYMOND (SITE ADMIN)
TO: WSG CODEX // ALL NEW ARRIVALS
SUBJECT: WELCOME ABOARD
Look, the Worldsway Survey Group is a mess, but it’s a necessary one. We’re a coalition of people who shouldn’t even be in the same room, let alone the same reality: the Dealers, those busybody Falseskippers… and us, the Still, here on Alpha-Earth.
Individually, we’re all missing something. The Skippers can move between worlds, but can’t stay. The Dealers have the keys to the doors, but can’t enter alone. And us? We’re stuck on this side, but we’re the only ones who can make any of it stick. We struck a deal to map the Seams—those endless, jagged Sub-Dimensions tearing through the Cosmos—because if we don’t record them, they don’t exist… we think.
That uncertainty’s why we’re doing this, and this Codex is our ledger.
Whatever faction you belong— will belong to, welcome to the job.
Individually, we’re all missing something. The Skippers can move between worlds, but can’t stay. The Dealers have the keys to the doors, but can’t enter alone. And us? We’re stuck on this side, but we’re the only ones who can make any of it stick. We struck a deal to map the Seams—those endless, jagged Sub-Dimensions tearing through the Cosmos—because if we don’t record them, they don’t exist… we think.
That uncertainty’s why we’re doing this, and this Codex is our ledger.
Whatever faction you belong— will belong to, welcome to the job.
Don’t break anything.
—Still Raymond
—Still Raymond
The Quiescent
The ones with permanence, and nothing less. The ones that ensure what is discovered cannot fade away. Most of us are from Alpha-Earth, and seek the recollection, recording, and remapping of the Seams… as well as all other things of similar origin in the Cosmos hidden from us. Those in the Quiescent call themselves “Stills”; we understand that to keep something stable, one must not care about their own stability, be it their mind, body, or spirit. We are the ones that upkeep Jadnix Codex servers, and provide the means for you to read these very words. We can be recognized by our colors, black and purple. When on pages written, managed, or overseen by a Still, you will see those colors.
We’ve made it really easy for you.
We’ve made it really easy for you.
House Voidseed
Hello friend, we have the means, however not the ability nor permanence. It doesn’t matter what you call us: House Voidseed, the Dealers, the Moneymen, the Wanders, Strangers, Women of Old… oh, so many names during times of tragedy and peace alike. Giving the means to the ones without, in exchange for what we ourselves lack, is our profession; deals and pacts. Absolute truths in a world where all lie, even the air you trust to be real and safe. It’s a Voidseed Guarantee that our Dealers will never lie to you, or others, while conducting business. That is why we are so relied on; sometimes you just can’t trust what you experience, and you’re correct in feeling that way, until you read between the lines and discover the truth. Black and gold is what we proudly wear. You’ll see it, if you look for it. Of course, you are free to learn more about us. Some of us may seem broken on the inside, or masking the outside, but we promise, we’re so eager to meet you… although it’s very likely you’ve spoken to us before.
R&R Corps
Heya, we’re the ones with the ability, just not the means. Or permanence. Take a guess what we do! …Good guess, but wrong! Kind of. Pinning down where the vast majority of us are’s a fool’s errand, but we can be found throughout the Cosmos. There’s even some of us on Alpha-Earth! Before we joined the WSG, the R&R was pretty scattered, but now we even have fliers at [censored]. I’ll be honest, we’ve been called some pretty… unique names over the years, but lately we’ve reclaimed one we’re sticking with: the Falseskippers. Pretty on the nose, but most of us like it. If you ever come across a post about some strange Seam or some uploaded log of some sort… it’s probably us! Our colors are black and blue—like, coral-ish blue, not dark blue—so we’re pretty easy to spot. We’d love for you to learn more! We… really need some help. Well, we don’t, not badly— I need help, and the R&R said I could get another partner if I wrote this for the Still’s board, so… what are you waiting for?
It is mandatory to view the Introduction Guide and Codex Rules. For all others, access the ledger below.
CURRENT REALITY STATUS: 89% (STABLE)
ACTIVE SURVEYORS: REMOTE