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.

_feedback.scss 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. @-webkit-keyframes shake-rotate {
  2. 0% {
  3. -webkit-transform:scale(1) rotate(0deg);
  4. transform:scale(1) rotate(0deg)
  5. }
  6. 50% {
  7. -webkit-transform:scale(.8) rotate(-5deg);
  8. transform:scale(.8) rotate(-5deg)
  9. }
  10. to {
  11. -webkit-transform:scale(1) rotate(3deg);
  12. transform:scale(1) rotate(3deg)
  13. }
  14. }
  15. @keyframes shake-rotate {
  16. 0% {
  17. -webkit-transform:scale(1) rotate(0deg);
  18. transform:scale(1) rotate(0deg)
  19. }
  20. 50% {
  21. -webkit-transform:scale(.8) rotate(-5deg);
  22. transform:scale(.8) rotate(-5deg)
  23. }
  24. to {
  25. -webkit-transform:scale(1) rotate(3deg);
  26. transform:scale(1) rotate(3deg)
  27. }
  28. }
  29. .shake-rotate {
  30. display: inline-block;
  31. -webkit-animation-duration: .4s;
  32. animation-duration: .4s;
  33. -webkit-animation-iteration-count: infinite;
  34. animation-iteration-count: infinite;
  35. -webkit-animation-name: shake-rotate;
  36. animation-name: shake-rotate;
  37. -webkit-animation-timing-function: ease-in-out;
  38. animation-timing-function: ease-in-out
  39. }
  40. .feedback.aui-dialog2{
  41. .aui-dialog2{
  42. &-header {
  43. background-color: $auiDialogContentBg;
  44. border-bottom-color: transparent;
  45. padding-top: 30px;
  46. h2 {
  47. text-align: center;
  48. }
  49. }
  50. &-content {
  51. text-align: center;
  52. padding: 10px 40px 20px 40px;
  53. .rating {
  54. line-height: 1.2;
  55. text-align: center;
  56. margin-top: 10px;
  57. .star-label {
  58. height: 16px;
  59. font-size: 14px;
  60. }
  61. .star-btn {
  62. color: $rateStarDefault;
  63. font-size: 36px;
  64. position: relative;
  65. cursor: pointer;
  66. outline: none;
  67. text-decoration: none;
  68. @include transition(all .2s ease);
  69. &.starHover,
  70. &.active,
  71. &:hover {
  72. color: $rateStarActivity;
  73. };
  74. }
  75. }
  76. .details {
  77. padding-left: 60px;
  78. padding-right: 60px;
  79. margin-top: 20px;
  80. textarea {
  81. min-height: 100px;
  82. }
  83. }
  84. }
  85. &-footer {
  86. background-color: $auiDialogContentBg;
  87. border-top-color: transparent;
  88. }
  89. }
  90. }