Created page with "→CSS placed here will be applied to all skins: →------------------------------------------------------------------ tabs by Yohaji Wiki -----------------------------: .parent-tab-container { position:relative; margin-bottom:10px; width:100%; margin-top:-10px; padding:5px 0; display:flex; align-items:center; } .parent-tab-main { font-weight: bold; margin:0; padding:0; display:flex; justify-content:center; flex-flow..." |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
:root { | |||
--accent1: #3f6b64; | |||
--accent1-1: #5f8f86; | |||
--accent1alt: rgba(63, 107, 100, 0.8); | |||
--accent2: #d6b15e; | |||
--sidebarbg: #edf1ef; | |||
--mainpageinnerbgcolor: #ffffff; | |||
--textcolor: #121212; | |||
--boxshadow: rgba(0, 0, 0, 0.35); | |||
--iconlinksize: 110px; | |||
/* TABBER */ | |||
--tabber-color-progressive: var(--accent1); | |||
} | |||
/*------------------------------------------------------------------ tabs by Yohaji Wiki -----------------------------*/ | /*------------------------------------------------------------------ tabs by Yohaji Wiki -----------------------------*/ | ||
.parent-tab-container { | .parent-tab-container { | ||
Revision as of 19:17, 25 January 2026
/* CSS placed here will be applied to all skins */
:root {
--accent1: #3f6b64;
--accent1-1: #5f8f86;
--accent1alt: rgba(63, 107, 100, 0.8);
--accent2: #d6b15e;
--sidebarbg: #edf1ef;
--mainpageinnerbgcolor: #ffffff;
--textcolor: #121212;
--boxshadow: rgba(0, 0, 0, 0.35);
--iconlinksize: 110px;
/* TABBER */
--tabber-color-progressive: var(--accent1);
}
/*------------------------------------------------------------------ tabs by Yohaji Wiki -----------------------------*/
.parent-tab-container {
position:relative;
margin-bottom:10px;
width:100%;
margin-top:-10px;
padding:5px 0;
display:flex;
align-items:center;
}
.parent-tab-main {
font-weight: bold;
margin:0;
padding:0;
display:flex;
justify-content:center;
flex-flow:row wrap;
position:relative;
text-align:center;
align-items:center;
}
.parent-tab-container::before, .parent-tab-container::after {
content: "";
border-bottom:2px solid var(--accent1);
height:0;
flex:auto;
}
.parent-tab-1, .parent-tab-2 {
display:inline-block;
margin:0.2em 0.3em;
font-size:15px;
}
.parent-tab-1 {
user-select:none;
padding: 0.3em 1em;
background-color: var(--accent1);
color: var(--content-background-color);
border: 3px solid var(--accent1);
}
.parent-tab-2 a {
display:inline-block;
padding: 0.3em 1em;
background-color:var(--content-background-color);
border: 3px solid var(--accent1);
}
.parent-tab-2 a:hover {
background-color: var(--accent1);
color:var(--content-background-color) !important;
box-shadow: 0 0 5px var(--boxshadow);
}
.tabber__indicator {
background: var(--accent1) !important;
}
/* Rounded corners for all PortableInfoboxes */
.mw-parser-output .portable-infobox {
border-radius: 12px;
overflow: hidden;
border: 1px solid #ddd;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
