css.css 253 B

123456789101112131415161718
  1. .text-layer {
  2. font: 12px Monaco, "Courier New", monospace;
  3. cursor: text;
  4. }
  5. .blinker {
  6. animation: blink 1s linear infinite alternate;
  7. }
  8. @keyframes blink {
  9. 0%, 40% {
  10. opacity: 0;
  11. }
  12. 40.5%, 100% {
  13. opacity: 1
  14. }
  15. }