PublishingCSS:Making Matters Lexicon: Difference between revisions

From H&D Publishing Wiki
No edit summary
No edit summary
Line 12: Line 12:
sup.reference a {
sup.reference a {
color: yellow;
color: yellow;
text-decoration: none;
}
}



Revision as of 22:58, 3 February 2022

p {
	color: red;
}
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); }
}