MediaWiki:Common.css: Difference between revisions

From Ages of Conflict
Content added Content deleted
No edit summary
No edit summary
Line 1:
/* CommunityBody background color */
body {
background-color: #333c47 !important;
color: #000000 !importantffffff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
 
/* Header */
/* Sticky nav background color */
#mw-head {
background-color: #5e6732 !important;
padding: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
 
/* Community header colorLogo */
#p-logo a {
color: #000000 !importantffffff;
font-size: 24px;
text-decoration: none;
}
 
/* AccentMain colorcontent area */
#content {
/* Sticky nav background background-color: */#575f46;
padding: 20px;
margin-top: 20px;
}
 
/* Links */
a {
color: #c7b78b !important;
text-decoration: none;
}
 
a:hover {
/* Link color */
text-decoration: underline;
a:link,
a:visited {
color: #000000 !important;
}
 
/* Sidebar */
/* Article background color */
#contentmw-panel {
background-color: #575f46 !important333c47;
color: #ffffff;
padding: 20px;
}
 
/* Footer */
#footer {
background-color: #333c47;
color: #ffffff;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}

Revision as of 23:18, 14 February 2024

/* Body background color */
body {
    background-color: #333c47;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
#mw-head {
    background-color: #5e6732;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo */
#p-logo a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
}

/* Main content area */
#content {
    background-color: #575f46;
    padding: 20px;
    margin-top: 20px;
}

/* Links */
a {
    color: #c7b78b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Sidebar */
#mw-panel {
    background-color: #333c47;
    color: #ffffff;
    padding: 20px;
}

/* Footer */
#footer {
    background-color: #333c47;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}