Use animation and font shorthand

This commit is contained in:
Tobias Ahlin 2014-09-11 10:26:13 +02:00
commit bde7daaf1b

View file

@ -1,15 +1,10 @@
.text-layer {
font-family: Monaco, "Courier New", monospace;
font-size: 12pX;
font: 12px Monaco, "Courier New", monospace;
cursor: text;
}
.blinker {
animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
animation: blink 1s linear infinite alternate;
}
@keyframes blink {