inputmask.css 927 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*input{*/
  2. /*padding: 0 20px;*/
  3. /*height:60px;*/
  4. /*box-sizing:border-box;*/
  5. /*}*/
  6. .im-caret {
  7. -webkit-animation: 1s blink step-end infinite;
  8. -moz-animation: 1s blink step-end infinite;
  9. -ms-animation: 1s blink step-end infinite;
  10. -o-animation: 1s blink step-end infinite;
  11. animation: 1s blink step-end infinite;
  12. }
  13. @keyframes blink {
  14. from, to {
  15. border-right-color: black;
  16. }
  17. 50% {
  18. border-right-color: transparent;
  19. }
  20. }
  21. @-moz-keyframes blink {
  22. from, to {
  23. border-right-color: black;
  24. }
  25. 50% {
  26. border-right-color: transparent;
  27. }
  28. }
  29. @-webkit-keyframes blink {
  30. from, to {
  31. border-right-color: black;
  32. }
  33. 50% {
  34. border-right-color: transparent;
  35. }
  36. }
  37. @-ms-keyframes blink {
  38. from, to {
  39. border-right-color: black;
  40. }
  41. 50% {
  42. border-right-color: transparent;
  43. }
  44. }
  45. @-o-keyframes blink {
  46. from, to {
  47. border-right-color: black;
  48. }
  49. 50% {
  50. border-right-color: transparent;
  51. }
  52. }
  53. .im-static {
  54. color: grey;
  55. }