MediaWiki:Common.css: Difference between revisions

From Questlandia Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 11: Line 11:
     box-shadow: 0 2px 8px rgba(0,0,0,0.2);  /* Optional soft shadow */
     box-shadow: 0 2px 8px rgba(0,0,0,0.2);  /* Optional soft shadow */
     border: 1px solid #ccc;
     border: 1px solid #ccc;
}
/* Footer links and text - light gray */
#footer, #footer a, #footer li {
    color: #bbb !important;
    font-size: 0.9em;
    text-decoration: none;
}
/* Hover effect - even lighter gray */
#footer a:hover {
    color: #ddd !important;
    text-decoration: underline;
}
}

Revision as of 06:15, 19 April 2025

/* CSS placed here will be applied to all skins */
body {
    background: url("/images/wiki_background.png") no-repeat center center fixed;
    background-size: cover;
}

/* Wrap the sidebar (all portlets) in a white box */
#mw-panel {
    background-color: #ffffff;   /* White background */
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);  /* Optional soft shadow */
    border: 1px solid #ccc;
}

/* Footer links and text - light gray */
#footer, #footer a, #footer li {
    color: #bbb !important;
    font-size: 0.9em;
    text-decoration: none;
}

/* Hover effect - even lighter gray */
#footer a:hover {
    color: #ddd !important;
    text-decoration: underline;
}