ace/demo/kitchen-sink/docs/css.css
2014-09-11 10:25:52 +02:00

23 lines
No EOL
396 B
CSS

.text-layer {
font-family: Monaco, "Courier New", monospace;
font-size: 12pX;
cursor: text;
}
.blinker {
animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
}
@keyframes blink {
0%, 40% {
opacity: 0;
}
40.5%, 100% {
opacity: 1
}
}