MediaWiki:Common.css: Difference between revisions

From EstoriaRO Wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 1: Line 1:
 
/* ===== EstoriaRO Wiki Background ===== */
 
/* =====================================================
  EstoriaRO Wiki — wiki.gg / ragnarokmod style
  ===================================================== */
 
/* Base */
body {
body {
     background-color: #f2f4f7;
     background: linear-gradient(
    color: #202122;
        180deg,
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        #0b2c44 0%,     /* dark blue */
                Roboto, Helvetica, Arial, sans-serif;
        #143d5c 30%,
}
        #f5f6e8 100%    /* light yellow almost white */
 
     );
/* Main content */
     background-attachment: fixed;
.mw-body,
#content {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
 
/* Headings */
h1, h2 {
     border-bottom: 1px solid #e1e4e8;
     padding-bottom: 6px;
}
}


h1, h2, h3, h4 {
/* Main content container */
     color: #1f2933;
.mw-body {
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 20px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
}


/* Links */
/* EstoriaRO link colors */
#content a:link,
#content a:link,
#content a:visited {
#content a:visited {
     color: #2563eb; /* wiki.gg blue */
     color: #0b3c5d;
}
}


#content a:hover {
#content a:hover {
     color: #1d4ed8;
     color: #f0c75e; /* soft yellow highlight */
    text-decoration: underline;
}
 
/* Tables */
.wikitable {
    border-collapse: collapse;
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    font-size: 14px;
}
 
.wikitable th {
    background-color: #f6f8fa;
    border: 1px solid #e1e4e8;
    color: #1f2933;
    padding: 8px;
}
 
.wikitable td {
    border: 1px solid #e1e4e8;
    padding: 8px;
}
 
/* Sidebar */
#mw-panel {
    background-color: #ffffff;
    border-right: 1px solid #e1e4e8;
}
 
#mw-panel a {
    color: #2563eb;
}
 
#mw-panel a:hover {
    color: #1d4ed8;
}
 
/* Search bar */
#searchInput,
.vector-search-box-input {
    background-color: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 6px 10px;
}
 
#searchInput:focus,
.vector-search-box-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.2);
}
 
/* Footer */
#footer {
    background-color: #f6f8fa;
    border-top: 1px solid #e1e4e8;
    color: #57606a;
}
 
/* Code blocks */
pre, code {
    background-color: #f6f8fa;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    padding: 6px;
    font-size: 13px;
}
 
/* Notices */
.mw-message-box {
    border-radius: 6px;
    border: 1px solid #d0d7de;
}
}

Revision as of 16:09, 14 December 2025

/* ===== EstoriaRO Wiki Background ===== */
body {
    background: linear-gradient(
        180deg,
        #0b2c44 0%,     /* dark blue */
        #143d5c 30%,
        #f5f6e8 100%    /* light yellow almost white */
    );
    background-attachment: fixed;
}

/* Main content container */
.mw-body {
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

/* EstoriaRO link colors */
#content a:link,
#content a:visited {
    color: #0b3c5d;
}

#content a:hover {
    color: #f0c75e; /* soft yellow highlight */
}