Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jeffersonchaves/5b168ef26d26dcb5416534a11dc17da2 to your computer and use it in GitHub Desktop.
Save jeffersonchaves/5b168ef26d26dcb5416534a11dc17da2 to your computer and use it in GitHub Desktop.
unidade-medida.css
/* Unidades Absolutas */
div {
width: 300px;
height: 2cm;
}
/* Unidades Relativas */
p {
font-size: 1.5em;
margin: 10%;
}
/* Unidades de Viewport */
section {
width: 80vw;
height: 50vh;
}
/* Unidades de Tempo */
@keyframes example {
from { opacity: 0; }
to { opacity: 1; }
}
div {
animation-duration: 2s;
}
/* Unidades de Ângulo */
.rotate {
transform: rotate(45deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment