MediaWiki:Common.css: Difference between revisions

From EstoriaRO Wiki
Jump to navigation Jump to search
No edit summary
Blanked the page
Tag: Blanking
Line 1: Line 1:
/* CSS placed here will be applied to all skins */


/* ===== EstoriaRO Wiki Background ===== */
body {
    background: linear-gradient(
        180deg,
        #0b2c44 30%,    /* dark blue */
        #143d5c 0%,
        #f5f6e8 70%    /* light yellow  */
    );
    background-attachment: fixed;
}
}
#content a:hover {
    color: #f0c75e; /* soft yellow highlight */
}
/* Judul */
h1, h2, h3, h4, h5, h6 {
    color: #f0f6fc;
    border-bottom-color: #1e3244;
}
/* Link */
#content a:link,
#content a:visited {
    color: #5da9ff; /* biru terang */
}
#content a:hover {
    color: #ffd76a; /* kuning lembut */
    text-decoration: underline;
}
/* Table */
.wikitable {
    background-color: #162736;
    border: 1px solid #223a4f;
}
.wikitable th {
    background-color: #1c3449;
    color: #f0f6fc;
}
.wikitable td {
    background-color: #162736;
    color: #dce3ea;
}
/* Sidebar */
#mw-panel {
    background-color: #0b1620;
}
#mw-panel a {
    color: #9cc9ff;
}
#mw-panel a:hover {
    color: #ffd76a;
}
/* Search box */
#searchInput {
    background-color: #162736;
    color: #f0f6fc;
    border: 1px solid #223a4f;
}
/* Code block */
pre, code {
    background-color: #0b1620;
    color: #dce3ea;
    border-radius: 6px;
}
/* Footer */
#footer {
    background-color: #0b1620;
    color: #9fb3c8;
}
/* Scrollbar (Chrome) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0b1620;
}
::-webkit-scrollbar-thumb {
    background: #223a4f;
}
::-webkit-scrollbar-thumb:hover {
    background: #345b7a;
}
/

Revision as of 15:09, 14 December 2025