MediaWiki:Common.css: Difference between revisions

From Ages of Conflict
Content added Content deleted
No edit summary
No edit summary
Line 1:
/* Body background color */
body {
background-color: #333c47f0f4f8;
color: #ffffff333333;
font-family: Arial, sans-serif;
margin: 0;
Line 10:
/* Header */
#mw-head {
background-color: #5e67322c88d9;
color: #ffffff;
padding: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
Line 24 ⟶ 25:
/* Main content area */
#content {
background-color: #575f46ffffff;
padding: 20px;
margin-top: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
 
/* Links */
a {
color: #c7b78b2c88d9;
text-decoration: none;
}
Line 41 ⟶ 43:
/* Sidebar */
#mw-panel {
background-color: #333c472c88d9;
color: #ffffff;
padding: 20px;
Line 48 ⟶ 50:
/* Footer */
#footer {
background-color: #333c472c88d9;
color: #ffffff;
padding: 10px;

Revision as of 23:21, 14 February 2024

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

/* Header */
#mw-head {
    background-color: #2c88d9;
    color: #ffffff;
    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: #ffffff;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

a:hover {
    text-decoration: underline;
}

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

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