Skip to content

Instantly share code, notes, and snippets.

@Bosn
Last active October 16, 2018 01:58
Show Gist options
  • Save Bosn/21eeb2f6ce34038b8cca173f214d76a4 to your computer and use it in GitHub Desktop.
Save Bosn/21eeb2f6ce34038b8cca173f214d76a4 to your computer and use it in GitHub Desktop.
Loading Mask
.loading-mask {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 1000;
}

.loading-mask::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment