inputmask.css 945 B

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