Skip to content

Instantly share code, notes, and snippets.

@mikedijkstra
Created January 16, 2017 19:05
Show Gist options
  • Save mikedijkstra/dced2b8da7a23cd9780c9fb8f5fb644d to your computer and use it in GitHub Desktop.
Save mikedijkstra/dced2b8da7a23cd9780c9fb8f5fb644d to your computer and use it in GitHub Desktop.
Loader Module
@mixin loader {
body.preload {
* {
transition: none !important;
animation-name: none !important;
}
.loader {
visibility: visible;
}
}
.loader {
background-color: black;
transition: visibility 1s 0s;
visibility: hidden;
z-index: 99999999;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment