Template:Tabs.css: Difference between revisions

Template page
(Couchor changed the content model of the page Template:Tabs.css from "wikitext" to "Sanitized CSS")
Tag: content model change
No edit summary
Line 15: Line 15:
.tabs .active {
.tabs .active {
border-bottom: none;
border-bottom: none;
background-color: #fefefe;
/*background-color: #fefefe;*/
margin-bottom: -2px;
margin-bottom: -2px;
}
}
.tabs li:hover {background-color: #e1e1e1;}
.tabs li:hover {background-color: #e1e1e1;}
/* DARKMODE */
html.skin-citizen-dark .tabs {color: #fefefe;}
html.skin-citizen-dark .tabs li {
background-color: #131920;
background-color: hsl(210,27%,10%);
}

Revision as of 11:07, 28 September 2022

.tabs-container {margin-bottom: 1rem;}
.tabs {
	display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0 !important;
    border-bottom: 2px solid;
}
.tabs li {
	padding: 0.2rem 0.3rem;
    background-color: #eeeeee;
    border: 2px solid;
    border-bottom: none;
}
.tabs .active {
	border-bottom: none;
	/*background-color: #fefefe;*/
	margin-bottom: -2px;
}
.tabs li:hover {background-color: #e1e1e1;}

/* DARKMODE */ 

html.skin-citizen-dark .tabs {color: #fefefe;}
html.skin-citizen-dark .tabs li {
	background-color: #131920;
	background-color: hsl(210,27%,10%);
}