2021-04-14 05:11:10 +00:00
|
|
|
.floating-yuriko {
|
2021-04-22 13:29:31 +00:00
|
|
|
position: fixed;
|
|
|
|
right: 1rem;
|
|
|
|
bottom: 1rem;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
cursor: pointer;
|
|
|
|
&__image {
|
|
|
|
height: 20vh;
|
|
|
|
}
|
2021-04-14 05:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hvr-float {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
-webkit-transform: perspective(1px) translateZ(0);
|
|
|
|
transform: perspective(1px) translateZ(0);
|
|
|
|
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
|
|
|
|
-webkit-transition-duration: 0.3s;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
-webkit-transition-property: transform;
|
|
|
|
transition-property: transform;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
}
|
2021-04-22 13:29:31 +00:00
|
|
|
.hvr-float:hover,
|
|
|
|
.hvr-float:focus,
|
|
|
|
.hvr-float:active {
|
2021-04-14 05:11:10 +00:00
|
|
|
-webkit-transform: translateY(-8px);
|
|
|
|
transform: translateY(-8px);
|
2021-04-22 13:29:31 +00:00
|
|
|
}
|