Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
Created page with "Star Fishing Wiki Theme: Subtle space-themed background: :root { --background-color-dp-00: #0d0f1a; --background-color-dp-01: #131527; --background-color-dp-02: #181b33; --background-color-dp-03: #1d2040; --color-primary: #9b6dff; --color-primary-active: #b490ff; } Sidebar styling: .citizen-drawer { background: #0d0f1a !important; } Infobox tables subtle glow: .wikitable { border-color: rgba(155, 109, 255, 0.15) !imp..."
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Star Fishing Wiki Theme */
/* === Star Fishing Wiki Theme === */


/* Subtle space-themed background */
/* Space-themed colors */
:root {
:root {
     --background-color-dp-00: #0d0f1a;
     --background-color-dp-00: #0d0f1a;
Line 11: Line 11:
}
}


/* Sidebar styling */
/* Links */
.citizen-drawer {
a:not(.new) { color: #9b6dff !important; }
    background: #0d0f1a !important;
a:not(.new):hover { color: #b490ff !important; }
}
a.new { color: #ff6b6b !important; }


/* Infobox tables subtle glow */
/* Section headers */
.wikitable {
.mw-heading h2 {
     border-color: rgba(155, 109, 255, 0.15) !important;
     border-bottom: 2px solid rgba(155,109,255,0.3) !important;
    padding-bottom: 6px;
}
}


.wikitable th {
/* Tables */
    background: rgba(155, 109, 255, 0.1) !important;
.wikitable { border-color: rgba(155,109,255,0.15) !important; margin-bottom: 0.25rem !important; }
    color: #c4b5ff !important;
.wikitable th { background: rgba(155,109,255,0.1) !important; color: #c4b5ff !important; }
}
.wikitable td { background: rgba(155,109,255,0.03) !important; }
.wikitable td, .wikitable th { padding: 5px 10px !important; }


.wikitable td {
/* Kill all the whitespace in collapsible sections */
    background: rgba(155, 109, 255, 0.03) !important;
.citizen-section { margin: 0 !important; padding: 0 !important; }
}
.citizen-section-heading { margin: 0.3rem 0 0 !important; padding: 0 !important; }
.mw-heading { margin: 0.3rem 0 0.1rem !important; padding: 0 !important; }
.mw-parser-output p { margin: 0.2rem 0 !important; }
.mw-parser-output > .mw-heading + p { margin-top: 0 !important; }


/* Links - purple theme */
/* Category tags */
a:not(.new) {
.catlinks { background: rgba(155,109,255,0.05) !important; border: 1px solid rgba(155,109,255,0.1) !important; border-radius: 8px !important; }
    color: #9b6dff !important;
}


a:not(.new):hover {
/* Sidebar */
    color: #b490ff !important;
.citizen-drawer { background: #0d0f1a !important; }
}


/* Red links (uncreated pages) */
/* Search */
a.new {
.citizen-search__card { background: #131527 !important; border-color: rgba(155,109,255,0.2) !important; }
    color: #ff6b6b !important;
}


/* Section headers accent */
/* Content area */
.mw-heading h2 {
.citizen-body-container { background: linear-gradient(180deg, rgba(155,109,255,0.02) 0%, transparent 300px) !important; }
    border-bottom: 2px solid rgba(155, 109, 255, 0.3) !important;
    padding-bottom: 6px;
}
 
/* Category tags */
.catlinks {
    background: rgba(155, 109, 255, 0.05) !important;
    border: 1px solid rgba(155, 109, 255, 0.1) !important;
    border-radius: 8px !important;
}
 
/* Search bar */
.citizen-search__card {
    background: #131527 !important;
    border-color: rgba(155, 109, 255, 0.2) !important;
}
 
/* Content area subtle gradient */
.citizen-body-container {
    background: linear-gradient(180deg, rgba(155, 109, 255, 0.02) 0%, transparent 300px) !important;
}


/* Footer */
/* Footer */
.citizen-footer {
.citizen-footer { background: #0d0f1a !important; border-top: 1px solid rgba(155,109,255,0.1) !important; }
    background: #0d0f1a !important;
    border-top: 1px solid rgba(155, 109, 255, 0.1) !important;
}


/* Scrollbar theming */
/* Scrollbar */
::-webkit-scrollbar-thumb {
::-webkit-scrollbar-thumb { background: rgba(155,109,255,0.3) !important; border-radius: 4px; }
    background: rgba(155, 109, 255, 0.3) !important;
::-webkit-scrollbar-track { background: #0d0f1a !important; }
    border-radius: 4px;
}


::-webkit-scrollbar-track {
/* Disable collapsible sections - always show expanded */
     background: #0d0f1a !important;
.citizen-section-heading .citizen-section-heading-icon {
     display: none !important;
}
}

Latest revision as of 23:56, 27 March 2026

/* === Star Fishing Wiki Theme === */

/* Space-themed colors */
:root {
    --background-color-dp-00: #0d0f1a;
    --background-color-dp-01: #131527;
    --background-color-dp-02: #181b33;
    --background-color-dp-03: #1d2040;
    --color-primary: #9b6dff;
    --color-primary-active: #b490ff;
}

/* Links */
a:not(.new) { color: #9b6dff !important; }
a:not(.new):hover { color: #b490ff !important; }
a.new { color: #ff6b6b !important; }

/* Section headers */
.mw-heading h2 {
    border-bottom: 2px solid rgba(155,109,255,0.3) !important;
    padding-bottom: 6px;
}

/* Tables */
.wikitable { border-color: rgba(155,109,255,0.15) !important; margin-bottom: 0.25rem !important; }
.wikitable th { background: rgba(155,109,255,0.1) !important; color: #c4b5ff !important; }
.wikitable td { background: rgba(155,109,255,0.03) !important; }
.wikitable td, .wikitable th { padding: 5px 10px !important; }

/* Kill all the whitespace in collapsible sections */
.citizen-section { margin: 0 !important; padding: 0 !important; }
.citizen-section-heading { margin: 0.3rem 0 0 !important; padding: 0 !important; }
.mw-heading { margin: 0.3rem 0 0.1rem !important; padding: 0 !important; }
.mw-parser-output p { margin: 0.2rem 0 !important; }
.mw-parser-output > .mw-heading + p { margin-top: 0 !important; }

/* Category tags */
.catlinks { background: rgba(155,109,255,0.05) !important; border: 1px solid rgba(155,109,255,0.1) !important; border-radius: 8px !important; }

/* Sidebar */
.citizen-drawer { background: #0d0f1a !important; }

/* Search */
.citizen-search__card { background: #131527 !important; border-color: rgba(155,109,255,0.2) !important; }

/* Content area */
.citizen-body-container { background: linear-gradient(180deg, rgba(155,109,255,0.02) 0%, transparent 300px) !important; }

/* Footer */
.citizen-footer { background: #0d0f1a !important; border-top: 1px solid rgba(155,109,255,0.1) !important; }

/* Scrollbar */
::-webkit-scrollbar-thumb { background: rgba(155,109,255,0.3) !important; border-radius: 4px; }
::-webkit-scrollbar-track { background: #0d0f1a !important; }

/* Disable collapsible sections - always show expanded */
.citizen-section-heading .citizen-section-heading-icon {
    display: none !important;
}