MediaWiki:Common.css: Difference between revisions

From Noe's Woes
Jump to: navigation, search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
@font-face {
/* Dark Mode Global Styles */
font-family: "Nasalization";
src: url(noelle.df1.dev/assets/fonts/nasalization-rg.woff2) format("woff2"),
url(noelle.df1.dev/assets/fonts/nasalization-rg.otf) format("opentype");


body {
/* General Body Styles */
font-family: 'Nasalization';
body {
background-color: #121212; /* Very dark background */
color: #e0e0e0; /* Light gray text */
}
}


.mw-editsection-like {
/* Links - Brighter Blue */
font-family: 'Nasalization';
a {
color: #56b1f7; /* Brighter blue for links */
}
}


.mw-body {
a:visited {
// h1's can exist outside of `.mw-body-content` so some heading styles
color: #8c8c8c; /* Slightly dimmer color for visited links */
// therefore need to be defined in `.mw-body` as well.
}
h1,

.mw-heading1,
a:hover {
&-content h1,
color: #85c1f7; /* Even lighter blue when hovering over links */
&-content .mw-heading1,
}
&-content h2,

&-content .mw-heading2 {
/* Navigation Bar (Top Menu) */
font-family: 'Nasalization';
#p-navigation {
background-color: #1f1f1f; /* Dark background for the navigation bar */
color: #e0e0e0; /* Light text in the navigation */
}

/* Sidebar */
#p-sidebar {
background-color: #1f1f1f; /* Same dark background for sidebar */
color: #e0e0e0; /* Light text in the sidebar */
}

/* Footer */
#footer {
background-color: #1f1f1f; /* Dark background for footer */
color: #e0e0e0; /* Light text in the footer */
}

/* Content Section */
#content {
background-color: #181818; /* Dark background for content */
color: #e0e0e0; /* Light text color */
}

/* Article Links */
#content a {
color: #56b1f7; /* Brighter blue links in content */
}

#content a:hover {
color: #85c1f7; /* Lighter blue hover effect for links */
}

/* Tables */
table {
background-color: #202020; /* Dark background for tables */
color: #e0e0e0; /* Light text in table rows */
}

table th,
table

Latest revision as of 07:14, 19 Mayıs 2025

@font-face {
  font-family: "Nasalization";
  src: url(noelle.df1.dev/assets/fonts/nasalization-rg.woff2) format("woff2"),
    url(noelle.df1.dev/assets/fonts/nasalization-rg.otf) format("opentype");

body { 
font-family: 'Nasalization'; 
}

.mw-editsection-like {
font-family: 'Nasalization';
}

.mw-body {
// h1's can exist outside of `.mw-body-content` so some heading styles
// therefore need to be defined in `.mw-body` as well.
h1,
.mw-heading1,
&-content h1,
&-content .mw-heading1,
&-content h2,
&-content .mw-heading2 {
font-family: 'Nasalization';