Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nextab/23d2f9bda97de861e8799a625c3bac5a to your computer and use it in GitHub Desktop.
Save nextab/23d2f9bda97de861e8799a625c3bac5a to your computer and use it in GitHub Desktop.
/* #region Ellipsis on the right */
.ellipsis-right {
&::after {
background: url("/wp-content/uploads/2022/02/ellipsis-journey.svg");
bottom: -40px;
content: "";
height: 600px;
position: absolute;
right: -320px;
transform: rotate(235deg);
transition: all 300ms ease;
width: 600px;
}
}
@for $i from 0 to 50 {
body[data-scroll-step="#{$i}"] {
.ellipsis-right::after {
transform: rotate(#{235 - ($i * 2)}deg);
}
.about-me-3-cols::before {
transform: rotate(#{$i - 30}deg);
}
}
}
/* #endregion */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment