Template:CustomTabs/styles.css: Difference between revisions
Appearance
Added skin-theme-clientpref-os |
Stevium changed the content model of the page Template:CustomTabs/styles.css from "CSS" to "Sanitized CSS": TemplateStyles |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
.custom-tabs { | |||
display: flex; | |||
flex-direction: row; | |||
gap: 5px; | |||
width: 100%; | |||
margin: 5px 0; | |||
flex-wrap: wrap; | |||
justify-content: space-evenly; | |||
} | } | ||
.custom-tabs | .custom-tabs > span { | ||
border-radius: 10px; | border-radius: 10px; | ||
display: flex; | display: flex; | ||
| Line 25: | Line 17: | ||
text-align: center; | text-align: center; | ||
transition: 0.25s; | transition: 0.25s; | ||
} | |||
.custom-tabs a, | |||
.custom-tabs .selflink, | |||
.custom-tabs span.new { | |||
display: flex; | display: flex; | ||
width: 100%; | width: 100%; | ||
| Line 39: | Line 31: | ||
text-align: center; | text-align: center; | ||
font-weight: 900 !important; | font-weight: 900 !important; | ||
} | |||
.custom-tabs span.active-tab { | |||
background-color: var(--color-accent); | |||
} | |||
.custom-tabs span.active-tab strong, | |||
.custom-tabs span.active-tab a:not(.new) { | |||
color: var(--color-accent-text); | |||
} | |||
.custom-tabs span.inactive-tab { | |||
background: var(--background-color-1); | |||
} | } | ||
.custom-tabs span.inactive-tab a:not(.new), | |||
.custom-tabs span.inactive-tab:hover a:not(.new) { | |||
color: var(--color-base); | |||
} | } | ||
.custom-tabs span.inactive-tab:hover { | |||
.custom-tabs | background: var(--background-color-3); | ||
} | } | ||
Latest revision as of 15:15, 25 November 2025
.custom-tabs {
display: flex;
flex-direction: row;
gap: 5px;
width: 100%;
margin: 5px 0;
flex-wrap: wrap;
justify-content: space-evenly;
}
.custom-tabs > span {
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex: 1;
text-align: center;
transition: 0.25s;
}
.custom-tabs a,
.custom-tabs .selflink,
.custom-tabs span.new {
display: flex;
width: 100%;
height: 100%;
padding: 8px 10px;
border-radius: 10px;
align-items: center;
justify-content: center;
text-align: center;
font-weight: 900 !important;
}
.custom-tabs span.active-tab {
background-color: var(--color-accent);
}
.custom-tabs span.active-tab strong,
.custom-tabs span.active-tab a:not(.new) {
color: var(--color-accent-text);
}
.custom-tabs span.inactive-tab {
background: var(--background-color-1);
}
.custom-tabs span.inactive-tab a:not(.new),
.custom-tabs span.inactive-tab:hover a:not(.new) {
color: var(--color-base);
}
.custom-tabs span.inactive-tab:hover {
background: var(--background-color-3);
}