PublishingCSS:TheNewSocial: Difference between revisions

From H&D Publishing Wiki
No edit summary
No edit summary
Line 1: Line 1:
body {
body {
background: linear-gradient( from yellow to greenyellow );
background: linear-gradient( yellow, greenyellow );
}
}



Revision as of 11:55, 5 April 2023

body {
	background: linear-gradient( yellow, greenyellow );
}

.toclevel-3 {
	display: none;
}

h1, h2, h3, h4, h5 {
	color: red;
}

section:has( h2 ) {
	display: none;
}

section:has( h2:target ) {
	display: block;
}