MediaWiki:Vector.css: Difference between revisions
Jump to navigation
Jump to search
Blanked the page Tag: Blanking |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* ===== EstoriaRO Wiki Background ===== */ | |||
/* Wiki Background Image */ | |||
body { | |||
background-image: url("/wiki/images/a/a1/Estoria_background_2.png"); | |||
background-repeat: no-repeat; | |||
background-position: center top; | |||
background-attachment: fixed; | |||
background-size: cover; | |||
} | |||
/* Main content container */ | |||
.mw-body { | |||
background-color: rgb(34 50 83 / 63%); | |||
border-radius: 12px; | |||
padding: 20px; | |||
box-shadow: 0 8px 25px rgb(0 0 0); | |||
} | |||
body { | |||
background-color: #f8f9fa00; | |||
color: #ffffff; | |||
} | |||
/* EstoriaRO link colors */ | |||
#content a:link, | |||
#content a:visited { | |||
color: #ffffff; | |||
} | |||
#content a:hover { | |||
color: #f0c75e; /* soft yellow highlight */ | |||
} | |||
/* ===================================================== | |||
EstoriaRO Wiki — Transparent Layout | |||
===================================================== */ | |||
/* Body background tetap terlihat */ | |||
body { | |||
background-attachment: fixed; | |||
} | |||
.vector-pinned-container { | |||
background-color: #ffffff13; | |||
} | |||
.vector-header-container .mw-header, .vector-header-container .vector-sticky-header { | |||
width: 100%; | |||
min-height: 3.125rem; | |||
background-color: #ffffff00; | |||
min-width: 18.75em; | |||
max-width: 99.75rem; | |||
padding-left: 1.5rem; | |||
padding-right: 1.5rem; | |||
box-sizing: border-box; | |||
} | |||
.mw-page-container { | |||
min-width: 18.75em; | |||
max-width: 99.75rem; | |||
box-sizing: border-box; | |||
position: relative; | |||
z-index: 0; | |||
margin: 0 auto; | |||
padding-top: 0.05px; | |||
padding-left: 1.5rem; | |||
padding-right: 1.5rem; | |||
background-color: #ffffff00; | |||
} | |||
.vector-pinnable-header { | |||
padding-bottom: 6px; | |||
margin-bottom: 6px; | |||
border-bottom: 1px solid #f5f6e8; | |||
line-height: 1.6; | |||
} | |||
.mw-heading, h1, h2, h3, h4, h5, h6 { | |||
color: #ff9900; | |||
font-weight: bold; | |||
margin: 0; | |||
padding-top: 0.5em; | |||
padding-bottom: 0.17em; | |||
display: flow-root; | |||
word-break: break-word; | |||
} | |||
/* ===================================================== | |||
EstoriaRO Wiki — table | |||
===================================================== */ | |||
.wikitable { | |||
background-color: #f8f9fa00; | |||
color: #ffffff; | |||
margin: 5em 0; | |||
border: 0px solid #a2a9b1; | |||
border-collapse: collapse; | |||
} | |||
.wikiEditor-ui textarea { | |||
width: 75%; | |||
border: 0; | |||
} | |||
a:where(:not([role='button'])):visited { | |||
color: #eaecf0; | |||
} | |||
.vector-dropdown .vector-dropdown-content { | |||
position: absolute; | |||
top: 100%; | |||
left: -1px; | |||
opacity: 0; | |||
height: 0; | |||
visibility: hidden; | |||
overflow: hidden auto; | |||
z-index: 50; | |||
background-color: #ffffff17; | |||
padding: 16px 16px; | |||
font-size: var(--font-size-small, 0.875rem); | |||
box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2); | |||
transition-property: opacity; | |||
transition-duration: 100ms; | |||
width: max-content; | |||
max-width: 200px; | |||
max-height: 75vh; | |||
} | |||
Revision as of 04:26, 15 December 2025
/* ===== EstoriaRO Wiki Background ===== */
/* Wiki Background Image */
body {
background-image: url("/wiki/images/a/a1/Estoria_background_2.png");
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
background-size: cover;
}
/* Main content container */
.mw-body {
background-color: rgb(34 50 83 / 63%);
border-radius: 12px;
padding: 20px;
box-shadow: 0 8px 25px rgb(0 0 0);
}
body {
background-color: #f8f9fa00;
color: #ffffff;
}
/* EstoriaRO link colors */
#content a:link,
#content a:visited {
color: #ffffff;
}
#content a:hover {
color: #f0c75e; /* soft yellow highlight */
}
/* =====================================================
EstoriaRO Wiki — Transparent Layout
===================================================== */
/* Body background tetap terlihat */
body {
background-attachment: fixed;
}
.vector-pinned-container {
background-color: #ffffff13;
}
.vector-header-container .mw-header, .vector-header-container .vector-sticky-header {
width: 100%;
min-height: 3.125rem;
background-color: #ffffff00;
min-width: 18.75em;
max-width: 99.75rem;
padding-left: 1.5rem;
padding-right: 1.5rem;
box-sizing: border-box;
}
.mw-page-container {
min-width: 18.75em;
max-width: 99.75rem;
box-sizing: border-box;
position: relative;
z-index: 0;
margin: 0 auto;
padding-top: 0.05px;
padding-left: 1.5rem;
padding-right: 1.5rem;
background-color: #ffffff00;
}
.vector-pinnable-header {
padding-bottom: 6px;
margin-bottom: 6px;
border-bottom: 1px solid #f5f6e8;
line-height: 1.6;
}
.mw-heading, h1, h2, h3, h4, h5, h6 {
color: #ff9900;
font-weight: bold;
margin: 0;
padding-top: 0.5em;
padding-bottom: 0.17em;
display: flow-root;
word-break: break-word;
}
/* =====================================================
EstoriaRO Wiki — table
===================================================== */
.wikitable {
background-color: #f8f9fa00;
color: #ffffff;
margin: 5em 0;
border: 0px solid #a2a9b1;
border-collapse: collapse;
}
.wikiEditor-ui textarea {
width: 75%;
border: 0;
}
a:where(:not([role='button'])):visited {
color: #eaecf0;
}
.vector-dropdown .vector-dropdown-content {
position: absolute;
top: 100%;
left: -1px;
opacity: 0;
height: 0;
visibility: hidden;
overflow: hidden auto;
z-index: 50;
background-color: #ffffff17;
padding: 16px 16px;
font-size: var(--font-size-small, 0.875rem);
box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2);
transition-property: opacity;
transition-duration: 100ms;
width: max-content;
max-width: 200px;
max-height: 75vh;
}