MediaWiki:Common.css: Difference between revisions

From Ages of Conflict
Content added Content deleted
No edit summary
No edit summary
Line 1: Line 1:
/* Community background color */
/* Body background color */
body {
body {
background-color: #333c47 !important;
background-color: #333c47;
color: #ffffff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
}


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


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


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

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


a:hover {
/* Link color */
text-decoration: underline;
a:link,
a:visited {
color: #000000 !important;
}
}


/* Sidebar */
/* Article background color */
#content {
#mw-panel {
background-color: #575f46 !important;
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%;
}
}

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%;
}