placeholder.css 265 B

12345678910111213
  1. @keyframes placeholder {
  2. 0% { opacity: 0.5; }
  3. 33% { opacity: 1; }
  4. 66% { opacity: 0.5; }
  5. 100% { opacity: 1; }
  6. }
  7. .placeholder {
  8. animation: placeholder 1s infinite !important;
  9. background: #eceeec !important;
  10. border-radius: 3px !important;
  11. min-height: 16px;
  12. }