PublishingCSS:Making Matters Lexicon: Difference between revisions

From H&D Publishing Wiki
(Created page with "p { color: red; }")
 
No edit summary
Line 1: Line 1:
p {
p {
color: red;
color: red;
}
sup.reference {
font-family: fantasy;
background: darkred;
color: yellow;
font-size: 1.5em;
animation: rotate 5s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
}

Revision as of 22:52, 3 February 2022

p {
	color: red;
}
sup.reference {
	font-family: fantasy;
	background: darkred;
	color: yellow;
	font-size: 1.5em;
	animation: rotate 5s linear infinite;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }	
	100% { transform: rotate(360deg); }
}