MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
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 |
||
| Line 82: | Line 82: | ||
::-webkit-scrollbar-track { | ::-webkit-scrollbar-track { | ||
background: #0d0f1a !important; | background: #0d0f1a !important; | ||
} | |||
/* Wider content tables */ | |||
.wikitable { | |||
width: 60% !important; | |||
min-width: 300px; | |||
} | |||
/* More spacing between sections */ | |||
.mw-heading { | |||
margin-top: 2rem !important; | |||
padding-top: 1rem !important; | |||
} | |||
/* Section content breathing room */ | |||
.mw-parser-output p { | |||
margin-bottom: 0.8rem !important; | |||
} | |||
/* Infobox spacing */ | |||
.mw-parser-output > div[style*="float: right"] { | |||
margin-left: 24px !important; | |||
margin-bottom: 20px !important; | |||
} | |||
/* Collapsible section spacing */ | |||
.citizen-section-heading { | |||
margin-top: 1.5rem !important; | |||
} | |||
/* Space after tables */ | |||
.wikitable { | |||
margin-bottom: 1.5rem !important; | |||
} | } | ||
Revision as of 23:50, 27 March 2026
/* 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) !important;
}
.wikitable th {
background: rgba(155, 109, 255, 0.1) !important;
color: #c4b5ff !important;
}
.wikitable td {
background: rgba(155, 109, 255, 0.03) !important;
}
/* Links - purple theme */
a:not(.new) {
color: #9b6dff !important;
}
a:not(.new):hover {
color: #b490ff !important;
}
/* Red links (uncreated pages) */
a.new {
color: #ff6b6b !important;
}
/* Section headers accent */
.mw-heading h2 {
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 */
.citizen-footer {
background: #0d0f1a !important;
border-top: 1px solid rgba(155, 109, 255, 0.1) !important;
}
/* Scrollbar theming */
::-webkit-scrollbar-thumb {
background: rgba(155, 109, 255, 0.3) !important;
border-radius: 4px;
}
::-webkit-scrollbar-track {
background: #0d0f1a !important;
}
/* Wider content tables */
.wikitable {
width: 60% !important;
min-width: 300px;
}
/* More spacing between sections */
.mw-heading {
margin-top: 2rem !important;
padding-top: 1rem !important;
}
/* Section content breathing room */
.mw-parser-output p {
margin-bottom: 0.8rem !important;
}
/* Infobox spacing */
.mw-parser-output > div[style*="float: right"] {
margin-left: 24px !important;
margin-bottom: 20px !important;
}
/* Collapsible section spacing */
.citizen-section-heading {
margin-top: 1.5rem !important;
}
/* Space after tables */
.wikitable {
margin-bottom: 1.5rem !important;
}