Skip to content

Instantly share code, notes, and snippets.

@jsmayo
Created January 23, 2018 00:39
Show Gist options
  • Save jsmayo/4b75f1b0639534f9e7cb1da6a928d172 to your computer and use it in GitHub Desktop.
Save jsmayo/4b75f1b0639534f9e7cb1da6a928d172 to your computer and use it in GitHub Desktop.
Translations S2. L15
<p></p>
<p class="move-right"></p>
<p></p>
<p class="move-down"></p>
/* #3498db; */
/* #f1c40f */
p {
width: 50px;
height: 50px;
background-color: #1abc9c;
}
p.move-right {
background-color: #3498db;
transform: translateX(100px);
}
p.move-down {
background-color: #f1c40f;
transform: translateY(20px);
}
p:hover {
transform: translate(20px, 20px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment