PublishingCSS:Making Matters Lexicon: Difference between revisions
(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); } | |||
} | } |