Guest User

Untitled

a guest
May 27th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.19 KB | None | 0 0
  1. @import 'prefix-free';
  2. @keyframes pulse {
  3.     0% {
  4.         color: #000;
  5.     }
  6.     100% {
  7.         color: #fff;
  8.     }
  9. }
  10. .class {
  11.     animation: pulse 1s;
  12.     linear-gradient(black, white);
  13.     transform: opacity 1s;
  14. }
Add Comment
Please, Sign In to add comment