MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 72: | Line 72: | ||
/* Tables transparan */ | /* Tables transparan */ | ||
.wikitable { | .wikitable { | ||
background-color: | background-color: #ffffff00; | ||
backdrop-filter: blur(6px); | backdrop-filter: blur(6px); | ||
border: 1px solid rgba(0, 0, 0, 0.15); | border: 1px solid rgba(0, 0, 0, 0.15); | ||
| Line 78: | Line 78: | ||
.wikitable th { | .wikitable th { | ||
background-color: | background-color: #ffffff00; | ||
color: #ffffff; | color: #ffffff; | ||
} | } | ||
.wikitable td { | .wikitable td { | ||
background-color: | background-color: #ffffff00; | ||
color: #102a43; | color: #102a43; | ||
} | } | ||
| Line 89: | Line 89: | ||
/* Sidebar transparan */ | /* Sidebar transparan */ | ||
#mw-panel { | #mw-panel { | ||
background-color: | background-color: #ffffff00; | ||
backdrop-filter: blur(6px); | backdrop-filter: blur(6px); | ||
border-right: 1px solid rgba(0, 0, 0, 0.15); | border-right: 1px solid rgba(0, 0, 0, 0.15); | ||
| Line 105: | Line 105: | ||
#searchInput, | #searchInput, | ||
.vector-search-box-input { | .vector-search-box-input { | ||
background-color: | background-color: #ffffff00; | ||
border: 1px solid rgba(0, 0, 0, 0.25); | border: 1px solid rgba(0, 0, 0, 0.25); | ||
color: #0b2c44; | color: #0b2c44; | ||
| Line 113: | Line 113: | ||
/* Footer transparan */ | /* Footer transparan */ | ||
#footer { | #footer { | ||
background-color: | background-color:#ffffff00; | ||
backdrop-filter: blur(6px); | backdrop-filter: blur(6px); | ||
color: #102a43; | color: #102a43; | ||
} | } | ||
Revision as of 16:19, 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 */
}
/* =====================================================
EstoriaRO Wiki — Transparent Layout
===================================================== */
/* Body background tetap terlihat */
body {
background-attachment: fixed;
}
/* Main content container (TRANSPARENT) */
.mw-body,
#content {
background-color: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border-radius: 14px;
padding: 22px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
/* Headings tetap jelas */
h1, h2, h3, h4, h5, h6 {
color: #0b2c44;
}
/* Paragraph & list */
#content p,
#content li {
color: #102a43;
}
/* Links */
#content a:link,
#content a:visited {
color: #0b3c5d;
}
#content a:hover {
color: #f0c75e;
text-decoration: underline;
}
/* Tables transparan */
.wikitable {
background-color: #ffffff00;
backdrop-filter: blur(6px);
border: 1px solid rgba(0, 0, 0, 0.15);
}
.wikitable th {
background-color: #ffffff00;
color: #ffffff;
}
.wikitable td {
background-color: #ffffff00;
color: #102a43;
}
/* Sidebar transparan */
#mw-panel {
background-color: #ffffff00;
backdrop-filter: blur(6px);
border-right: 1px solid rgba(0, 0, 0, 0.15);
}
#mw-panel a {
color: #0b3c5d;
}
#mw-panel a:hover {
color: #f0c75e;
}
/* Search bar transparan */
#searchInput,
.vector-search-box-input {
background-color: #ffffff00;
border: 1px solid rgba(0, 0, 0, 0.25);
color: #0b2c44;
backdrop-filter: blur(6px);
}
/* Footer transparan */
#footer {
background-color:#ffffff00;
backdrop-filter: blur(6px);
color: #102a43;
}