mirror of
https://github.com/marcobiedermann/search-engine-optimization.git
synced 2025-03-03 12:19:19 -05:00
42 lines
487 B
SCSS
42 lines
487 B
SCSS
.github {
|
|
height: 80px;
|
|
width: 80px;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
transform: translateZ(0);
|
|
z-index: 1;
|
|
|
|
&:hover {
|
|
|
|
.github__arm {
|
|
|
|
@media (min-width: $media-sm) {
|
|
animation: octocat-wave 560ms ease-in-out;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__arm {
|
|
transform-origin: 130px 106px;
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes octocat-wave{
|
|
|
|
0%, 100%{
|
|
transform: rotate(0);
|
|
}
|
|
|
|
20%, 60%{
|
|
transform: rotate(-25deg);
|
|
}
|
|
40%, 80%{
|
|
transform: rotate(10deg);
|
|
}
|
|
|
|
}
|