Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tm_validator.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .input-group
  2. {
  3. /* font-size: 15px;
  4. line-height: 35px;*/
  5. /*margin-bottom: 5px;*/
  6. transition:all 0.15s ease-in;
  7. -webkit-transition:all 0.15s ease-in;
  8. -moz-transition:all 0.15s ease-in;
  9. -o-transition:all 0.15s ease-in;
  10. -ms-transition:all 0.15s ease-in;
  11. width: 100%;
  12. margin-left: auto;
  13. margin-right: auto
  14. }
  15. .just_edit .input-group
  16. {
  17. margin: 0
  18. }
  19. @-webkit-keyframes spaceboots {
  20. 0% { -webkit-transform: translate(2px, 1px) rotate(0deg); }
  21. 10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
  22. 20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
  23. 30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
  24. 40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
  25. 50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
  26. 60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
  27. 70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
  28. 80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
  29. 90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
  30. 100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
  31. }
  32. .input-group .icon_container
  33. {
  34. position: absolute;
  35. top: 5px;
  36. left: 10px;
  37. }
  38. .input-group input, .input-group textarea, .input-group select
  39. {
  40. width: 100%;
  41. }
  42. .input-group input:focus
  43. {
  44. outline: 0
  45. }
  46. .input-group .error-text
  47. {
  48. display: none;
  49. transition:all 0.3s ease-in;
  50. -webkit-transition:all 0.3s ease-in;
  51. }
  52. .error-text
  53. {
  54. display: none;
  55. font-size: 12px;
  56. color: #d9534f;
  57. }
  58. .input-group.error .error-text
  59. {
  60. display: block;
  61. }
  62. .input-group.error
  63. {
  64. -webkit-animation-name: spaceboots;
  65. -webkit-animation-duration: 0.5s;
  66. -webkit-transform-origin:50% 50%;
  67. -webkit-animation-timing-function: linear;
  68. }