2016-09-13 16:15:07 +00:00
|
|
|
@-webkit-keyframes shake-rotate {
|
|
|
|
0% {
|
|
|
|
-webkit-transform:scale(1) rotate(0deg);
|
|
|
|
transform:scale(1) rotate(0deg)
|
|
|
|
}
|
2015-11-05 17:27:26 +00:00
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
50% {
|
|
|
|
-webkit-transform:scale(.8) rotate(-5deg);
|
|
|
|
transform:scale(.8) rotate(-5deg)
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
-webkit-transform:scale(1) rotate(3deg);
|
|
|
|
transform:scale(1) rotate(3deg)
|
|
|
|
}
|
2015-11-05 17:27:26 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
@keyframes shake-rotate {
|
|
|
|
0% {
|
|
|
|
-webkit-transform:scale(1) rotate(0deg);
|
|
|
|
transform:scale(1) rotate(0deg)
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
-webkit-transform:scale(.8) rotate(-5deg);
|
|
|
|
transform:scale(.8) rotate(-5deg)
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
-webkit-transform:scale(1) rotate(3deg);
|
|
|
|
transform:scale(1) rotate(3deg)
|
|
|
|
}
|
2015-11-05 17:27:26 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
.shake-rotate {
|
|
|
|
-webkit-animation-duration: .4s;
|
|
|
|
animation-duration: .4s;
|
|
|
|
-webkit-animation-iteration-count: infinite;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
-webkit-animation-name: shake-rotate;
|
|
|
|
animation-name: shake-rotate;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out
|
2015-11-05 17:27:26 +00:00
|
|
|
}
|
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
.text-center {
|
|
|
|
text-align: center;
|
2015-11-05 17:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.feedbackDetails textarea {
|
|
|
|
resize: vertical;
|
|
|
|
min-height: 100px;
|
2016-09-13 16:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.feedback-rating {
|
|
|
|
line-height: 1.2;
|
|
|
|
padding: 20px 0;
|
|
|
|
|
|
|
|
h2 {
|
2016-09-13 21:05:44 +00:00
|
|
|
font-weight: 400;
|
2016-09-13 16:15:07 +00:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1.2;
|
|
|
|
padding: auto;
|
|
|
|
margin: auto;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2016-09-13 21:05:44 +00:00
|
|
|
p {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
.star-label {
|
|
|
|
font-size: 16px;
|
|
|
|
color: $rateStarLabelColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.star-btn {
|
|
|
|
color: $rateStarDefault;
|
|
|
|
font-size: 36px;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
text-decoration: none;
|
|
|
|
@include transition(all .2s ease);
|
|
|
|
|
|
|
|
&.starHover,
|
|
|
|
&.active,
|
|
|
|
&:hover {
|
|
|
|
color: $rateStarActivity;
|
2016-09-13 21:05:44 +00:00
|
|
|
|
2016-09-13 16:15:07 +00:00
|
|
|
.fa {
|
|
|
|
top: -6px;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
&.rated:hover .fa {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|