PublishingCSS:Making Matters Lexicon: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
p { | p { | ||
color: red; | color: red !important; | ||
} | } | ||
sup.reference { | sup.reference { |
Revision as of 08:03, 11 February 2022
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); }
}