Skip to content

Instantly share code, notes, and snippets.

@saimon24
Created July 15, 2016 16:03
Show Gist options
  • Save saimon24/e1e34342d8ad454130a3f86984290e86 to your computer and use it in GitHub Desktop.
Save saimon24/e1e34342d8ad454130a3f86984290e86 to your computer and use it in GitHub Desktop.
.small-spacing {
margin: 5;
}
.medium-spacing {
margin: 10;
}
ListView {
opacity: 0;
}
// Animations
.visible {
animation-name: show;
animation-duration: 1s;
}
@keyframes show {
from { opacity: 0; }
to { opacity: 1; }
}
.hide {
animation-name: animate-hide;
animation-duration: 2s;
animation-fill-mode: forwards;
}
@keyframes animate-hide {
from { opacity: 1}
to { opacity: 0 }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment