Home: Difference between revisions

From The Jadnix Codex

No edit summary
No edit summary
Line 1: Line 1:
<div class="faction-still">
<div class="faction-still">
<html>
<style>
    /* --- LAYOUT GRID --- */
    .home-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Consolas', 'Monaco', monospace;
    }
    /* --- SECTION 1: THE MEMO (Raymond) --- */
    .memo-box {
        border: 1px solid #333;
        background: #0f0f14;
        padding: 0;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
    .memo-header {
        background: #1a1a24;
        border-bottom: 1px solid #a020f0;
        padding: 15px;
        color: #a020f0;
        font-size: 0.9em;
        letter-spacing: 1px;
    }
    .memo-content {
        padding: 25px;
        color: #d1d1d1;
        line-height: 1.6;
        font-size: 1.05em;
    }
    .memo-signoff {
        margin-top: 20px;
        font-style: italic;
        color: #a020f0;
        text-align: right;
    }
    /* --- SECTION 2: THE FACTIONS (The Triad) --- */
    .faction-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; /* 3 Columns */
        gap: 20px;
    }
    .faction-card {
        background: #0f0f14;
        border: 1px solid #333;
        padding: 20px;
        text-align: center;
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .faction-card:hover {
        transform: translateY(-5px);
    }
    .faction-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        object-fit: contain;
    }
    .faction-title {
        font-size: 1.2em;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .faction-desc {
        font-size: 0.9em;
        color: #aaa;
        line-height: 1.4;
        text-align: left;
    }


<html>
    /* Faction Specific Colors */
<!-- HEADER SECTION -->
    .card-still { border-top: 4px solid #a020f0; }
<div style="display: flex; align-items: center; gap: 20px; margin-bottom: 30px; border-bottom: 2px solid #a020f0; padding-bottom: 20px;">
    .card-still:hover { box-shadow: 0 5px 20px rgba(160, 32, 240, 0.2); }
     <!-- STILL LOGO -->
    .card-still .faction-title { color: #a020f0; }
     <img src="https://files.catbox.moe/0cmhjh.png" width="100" style="height: auto; filter: drop-shadow(0 0 5px #a020f0);">
 
      
    .card-rr { border-top: 4px solid #21b0cd; }
     <div>
    .card-rr:hover { box-shadow: 0 5px 20px rgba(33, 176, 205, 0.2); }
         <h1 style="margin: 0; color: #a020f0 !important; font-family: monospace; font-size: 2em; border: none;">WELCOME ABOARD</h1>
    .card-rr .faction-title { color: #21b0cd; }
         <small style="color: #888; font-family: monospace;">FROM: STILL RAYMOND // TO: ALL NEW ARRIVALS</small>
 
    .card-void { border-top: 4px solid #DAA520; }
    .card-void:hover { box-shadow: 0 5px 20px rgba(218, 165, 32, 0.2); }
    .card-void .faction-title { color: #DAA520; font-family: 'Georgia', serif; }
     .card-void .faction-desc { font-family: 'Georgia', serif; font-style: italic;}
 
     /* --- SECTION 3: NAVIGATION (The Grid) --- */
    .nav-header {
        border-bottom: 1px dashed #555;
        padding-bottom: 10px;
        margin-bottom: 20px;
        color: #fff;
        text-transform: uppercase;
    }
    .nav-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
     }
     .nav-btn {
        background: #1a1a24;
        border: 1px solid #333;
        color: #fff;
        padding: 15px;
        text-align: center;
        text-decoration: none;
         transition: all 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 80px;
    }
    .nav-btn:hover {
        background: #a020f0;
        color: #000;
        border-color: #a020f0;
        box-shadow: 0 0 15px #a020f0;
        cursor: pointer;
    }
    .nav-title { font-weight: bold; font-size: 1.1em; }
    .nav-sub { font-size: 0.7em; opacity: 0.7; margin-top: 5px; }
 
    /* --- MOBILE FIXES --- */
    @media (max-width: 768px) {
        .faction-grid { grid-template-columns: 1fr; } /* Stack cards */
        .nav-grid { grid-template-columns: 1fr 1fr; } /* 2 buttons per row */
    }
</style>
 
<div class="home-wrapper">
 
    <!-- 1. RAYMOND'S MEMO -->
    <div class="memo-box">
         <div class="memo-header">
            TYPE: TRANSCRIPTED COPY<br>
            FROM: STILL RAYMOND (SITE ADMIN)<br>
            TO: WSG CODEX // ALL NEW ARRIVALS<br>
            SUBJECT: WELCOME ABOARD
        </div>
        <div class="memo-content">
            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.<br><br>
 
            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.<br><br>
 
            That uncertainty’s why we’re doing this, and this Codex is our ledger.<br><br>
 
            Whatever faction you belong— will belong to, welcome to the job.
           
            <div class="memo-signoff">
                Don’t break anything.<br>
                —Still Raymond
            </div>
        </div>
     </div>
     </div>
</div>
</html>


'''FROM:''' Still Raymond (Site Admin)<br>
    <!-- 2. THE FACTIONS -->
'''TO:''' WSG Codex<br>
    <div style="margin-top: 20px;">
'''SUBJECT:''' Welcome Aboard
        <div class="nav-header">SURVEYOR FACTIONS</div>
        <div class="faction-grid">
           
            <!-- THE STILL -->
            <div class="faction-card card-still">
                <img src="https://files.catbox.moe/0cmhjh.png" class="faction-icon">
                <div class="faction-title">The Quiescent</div>
                <div class="faction-desc">
                    The ones with permanence. We upkeep the servers on Alpha-Earth and ensure what is discovered cannot fade away. We are the Anchors.
                </div>
            </div>


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.
            <!-- THE SKIPPERS -->
            <div class="faction-card card-rr">
                <img src="https://files.catbox.moe/8gs8n5.png" class="faction-icon">
                <div class="faction-title">R&R Corps</div>
                <div class="faction-desc">
                    The Falseskippers. We have the ability, but not the means. We traverse the Seams to rescue the lost. Also, we made the calculator.
                </div>
            </div>


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.  
            <!-- THE DEALERS -->
            <div class="faction-card card-void">
                <img src="https://files.catbox.moe/73m0cp.png" class="faction-icon">
                <div class="faction-title">House Voidseed</div>
                <div class="faction-desc">
                    The Dealers. We have the means, but not the ability. We provide absolute truths and funding in a world of lies. Just sign here.
                </div>
            </div>


That uncertainty’s why we’re doing this, and this Codex is our ledger.
        </div>
    </div>


Whatever faction you belong— will belong to, welcome to the job.  
    <!-- 3. NAVIGATION -->
    <div style="margin-top: 20px;">
        <div class="nav-header">CODEX NAVIGATION</div>
       
        <!-- INTRO NOTE -->
        <div style="margin-bottom: 20px; color: #888; font-size: 0.9em;">
            It is mandatory to view the <b>Introduction Guide</b> and <b>Codex Rules</b>. For all others, access the ledger below.
        </div>


Don’t break anything.
        <div class="nav-grid">
            <a href="/wiki/Glossary" class="nav-btn">
                <span class="nav-title">GLOSSARY</span>
                <span class="nav-sub">TERMS & DEFINITIONS</span>
            </a>
            <a href="/wiki/Groups" class="nav-btn">
                <span class="nav-title">GROUPS</span>
                <span class="nav-sub">FACTIONS & SECTS</span>
            </a>
            <a href="/wiki/Dimensions" class="nav-btn">
                <span class="nav-title">DIMENSIONS</span>
                <span class="nav-sub">FABRIC OF REALITY</span>
            </a>
            <a href="/wiki/Seams" class="nav-btn">
                <span class="nav-title">SEAMS</span>
                <span class="nav-sub">SUB-DIMENSIONS</span>
            </a>
            <a href="/wiki/Subjects" class="nav-btn">
                <span class="nav-title">SUBJECTS</span>
                <span class="nav-sub">ENTITIES & ORGANISMS</span>
            </a>
            <a href="/wiki/Items" class="nav-btn">
                <span class="nav-title">ITEMS</span>
                <span class="nav-sub">ARTIFACTS & ASSETS</span>
            </a>
            <a href="/wiki/Locations" class="nav-btn">
                <span class="nav-title">LOCATIONS</span>
                <span class="nav-sub">STABLE TERRITORIES</span>
            </a>
            <a href="/wiki/R&R_CRDD" class="nav-btn" style="border-color: #21b0cd; color: #21b0cd;">
                <span class="nav-title">CRDD TOOL</span>
                <span class="nav-sub">RATING CALCULATOR</span>
            </a>
        </div>
    </div>


—Still Raymond
    <!-- FOOTER STATS -->
    <div style="border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; color: #666; font-size: 0.8em; display: flex; justify-content: space-between;">
        <span>CURRENT REALITY STATUS: <span style="color: #00ff9f;">89% (STABLE)</span></span>
        <span>ACTIVE SURVEYORS: REMOTE</span>
    </div>


</div>
</html>
</div>
</div>

Revision as of 18:57, 9 February 2026

TYPE: TRANSCRIPTED COPY
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.
Don’t break anything.
—Still Raymond
The Quiescent
The ones with permanence. We upkeep the servers on Alpha-Earth and ensure what is discovered cannot fade away. We are the Anchors.
R&R Corps
The Falseskippers. We have the ability, but not the means. We traverse the Seams to rescue the lost. Also, we made the calculator.
House Voidseed
The Dealers. We have the means, but not the ability. We provide absolute truths and funding in a world of lies. Just sign here.
CURRENT REALITY STATUS: 89% (STABLE) ACTIVE SURVEYORS: REMOTE