PublishingCSS:Making Matters Lexicon

From H&D Publishing Wiki
Revision as of 08:03, 11 February 2022 by Karl (talk | contribs)
p {
	color: red !important;
}
sup.reference {
	display: inline-block;
	font-family: fantasy;
	background: darkred;
	color: yellow;
	font-size: 1.5em;
	animation: rotate 5s linear infinite;
}
sup.reference a {
	color: yellow;
	text-decoration: none;
}

@keyframes rotate {
	from { transform: rotate(0deg); }	
	to { transform: rotate(360deg); }
}