Skip to content

Instantly share code, notes, and snippets.

@fabiofidanza
Created June 1, 2023 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiofidanza/440a0f80f569694ec965e247e8af333f to your computer and use it in GitHub Desktop.
Save fabiofidanza/440a0f80f569694ec965e247e8af333f to your computer and use it in GitHub Desktop.
.ajax-progress {
position: fixed;
text-align: center;
color: $teal;
padding: 20px 20px 0 20px;
width: auto;
height: auto;
font-weight: 700;
font-size: 5rem;
z-index: 90210;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
opacity: 0.9;
.throbber {
display: none;
height: 0;
}
}
.ajax-progress:before {
font-size: 15vw;
display: none;
text-transform: uppercase;
@include copyFontBold;
text-shadow: 0 0 50px 0 rgb(134, 255, 253);
}
.ajax-progress-fullscreen {
background: none;
}
.ajax-progress:after {
content: "Carico...";
display: block;
text-align: center;
background: $white;
padding: $unit;
border-radius: $unit;
}
.ajax-progress * {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment