Template:Infotabs/styles.css: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
flex-grow:1;
flex-grow:1;
justify-content:center;
justify-content:center;
font-weight: bold !important;
font-weight: normal;
color: burlywood !important;
color: burlywood !important;
padding: 0px 0.75em 0.5em;
}
}


.infotabs .tabber__header{
.infotabs .tabber__header{
margin-bottom: 10px;
margin-bottom: 1em;
box-shadow: none !important;
box-shadow: none !important;
}
}


.infotabs .tabber__tab{
font-weight:normal;
}
.infotabs .tabber__tab[aria-selected="true"]{
.infotabs .tabber__tab[aria-selected="true"]{
font-weight:bold;
font-weight:bold;
Line 22: Line 20:


.infotabs .tabber__indicator{
.infotabs .tabber__indicator{
background: burlywood none repeat scroll 0% 0%
background: darkgoldenrod none repeat scroll 0% 0%;
}

.infotabs .tabber__section{
max-height:500px;
}

.infotabs .tabber__section p{
margin:0;
}

/* hack for thinner indicator because templatestyles doesnt recognize the block-size property for whatever reason */
.infotabs .tabber__indicator{
visibility:hidden;
}
.infotabs .tabber__indicator::before{
visibility:visible;
content:"";
position:absolute;
top:0;
left:0;
width:100%;
border-top:1px solid #7E5B07;
}
}

Latest revision as of 22:04, 3 October 2023

.infotabs .tabber__tab{
	flex-grow:1;
	justify-content:center;
	font-weight: normal;
	color: burlywood !important;
	padding: 0px 0.75em 0.5em;
}

.infotabs .tabber__header{
	margin-bottom: 1em;
	box-shadow: none !important;
}

.infotabs .tabber__tab[aria-selected="true"]{
	font-weight:bold;
}
.infotabs .tabber__tab[aria-selected="false"]{
	color: #777 !important;
}

.infotabs .tabber__indicator{
	background: darkgoldenrod none repeat scroll 0% 0%;
}

.infotabs .tabber__section{
	max-height:500px;
}

.infotabs .tabber__section p{
	margin:0;
}

/* hack for thinner indicator because templatestyles doesnt recognize the block-size property for whatever reason */
.infotabs .tabber__indicator{
	visibility:hidden;
}
.infotabs .tabber__indicator::before{
	visibility:visible;
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	border-top:1px solid #7E5B07;
}