User:Editingthingsforlife/vector-2022.css: Difference between revisions
Created page with "→Eerie, uncanny theme for Miraheze/WikiOasis Vector-2022 skin: →Global styles: body { background: linear-gradient(135deg, #1E2528, #2A3439); →Muted, unsettling gradient: color: #D8E0E3; →Off-white text for readability but slight unease: font-family: 'Roboto', sans-serif; →Clean, sterile font: font-weight: 300; →Light weight for a ghostly feel: font-size: 1.1em; opacity: 0.95; /* Slight transparency for an ethereal effect *..." |
No edit summary Tag: Potentially disruptive edit |
||
Line 1: | Line 1: | ||
/* Eerie | /* Eerie theme for Miraheze/WikiOasis Vector-2022 skin */ | ||
/* Global styles */ | /* Global styles */ | ||
body { | body { | ||
background: linear-gradient( | background: linear-gradient(to bottom, #1A1F23, #2B3238); /* Dark, muted gradient */ | ||
color: # | color: #C9D1D5; /* Desaturated off-white for text */ | ||
font-family: ' | font-family: 'Arial', sans-serif; /* Simple, slightly cold font */ | ||
font-weight: 300; /* Light weight for | font-weight: 300; /* Light weight for an ethereal feel */ | ||
font-size: | font-size: 1em; | ||
} | } | ||
/* | /* Page container */ | ||
.mw-page-container { | .mw-page-container { | ||
background: rgba( | background: rgba(26, 31, 35, 0.85); /* Semi-transparent dark background */ | ||
border: 1px solid # | border: 1px solid #3A464F; /* Muted, cold border */ | ||
border-radius: | border-radius: 4px; | ||
padding: 10px; | |||
} | } | ||
/* Header | /* Header */ | ||
.vector-header-container { | .vector-header-container { | ||
background: # | background: #1A1F23; /* Dark header */ | ||
border-bottom: | border-bottom: 1px solid #3A464F; | ||
box-shadow: 0 | box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow for depth */ | ||
} | |||
/* Site notice (banner) */ | |||
#siteNotice { | |||
background: #2B3238; /* Slightly lighter than header */ | |||
color: #C9D1D5; | |||
border-bottom: 1px solid #3A464F; | |||
padding: 5px; | |||
text-align: center; | |||
} | |||
/* Sidebar */ | |||
.vector-menu-portal .vector-menu-content { | |||
background: #2B3238; /* Dark sidebar background */ | |||
border-right: 1px solid #3A464F; | |||
} | } | ||
.vector-menu-portal h3 { | |||
color: #C9D1D5; | |||
color: # | font-weight: 400; | ||
border-bottom: 1px solid #3A464F; | |||
padding-bottom: 5px; | |||
} | } | ||
a | .vector-menu-portal .vector-menu-content li a { | ||
color: # | color: #5A6B77; /* Muted blue for links */ | ||
transition: color 0.3s ease; | |||
} | } | ||
.vector-menu-portal .vector-menu-content li a:hover { | |||
color: #C9D1D5; /* Off-white on hover */ | |||
color: # | |||
} | } | ||
/* | /* Main content */ | ||
. | .mw-body { | ||
background: | background: transparent; | ||
color: #C9D1D5; | |||
} | |||
/* Title (e.g., "Main Page") */ | |||
#firstHeading { | |||
color: #C9D1D5; | |||
font-weight: 400; | |||
letter-spacing: 0.03em; /* Slightly stretched for unease */ | |||
} | } | ||
/* | /* Links in content */ | ||
.mw-body a { | |||
color: #5A6B77; | |||
color: # | text-decoration: none; | ||
transition: color 0.3s ease; | |||
transition: | |||
} | } | ||
.mw-body a:hover { | |||
color: #C9D1D5; | |||
filter: brightness( | filter: brightness(0.9); /* Slight dimming on hover */ | ||
} | } | ||
/* Footer */ | /* Footer */ | ||
.footer { | .footer { | ||
background: # | background: #1A1F23; | ||
color: # | color: #C9D1D5; | ||
border-top: 1px solid # | border-top: 1px solid #3A464F; | ||
padding: | padding: 8px; | ||
} | } | ||
/* Subtle animation for content | /* Subtle fade-in animation for content */ | ||
.mw-parser-output { | .mw-parser-output { | ||
animation: | animation: eerieFade 1.5s ease-in; | ||
} | } | ||
@keyframes | @keyframes eerieFade { | ||
0% { opacity: 0. | 0% { opacity: 0.6; } | ||
100% { opacity: | 100% { opacity: 1; } | ||
} | } | ||
/* | /* Avoid stereotypical horror elements */ | ||
::selection { | ::selection { | ||
background: # | background: #3A464F; | ||
color: # | color: #C9D1D5; | ||
} | } |