TBD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

74 lines
1.1 KiB

body {
padding: 0;
margin:0;
background: #366a66;
font-family: 'Ubuntu','Roboto','Open Sans',sans-serif;
}
.display-none {
display: none;
}
.fullscreen-flying {
position: fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index: 10;
}
#progress-container {
z-index: 100;
}
.js-requirement-info {
position: absolute;
top: 50%;
font-family: sans-serif;
color: rgb(59, 59, 59);
width: 100%;
text-align: center;
}
.loader,
.loader:before,
.loader:after {
background: rgba(0,0,0,0.4);
animation: load1 1s infinite ease-in-out;
width: 1em;
height: 4em;
}
.loader:before,
.loader:after {
position: absolute;
top: 0;
content: '';
}
.loader:before {
left: -1.5em;
animation-delay: -0.32s;
}
.loader {
color: rgba(0,0,0,0.4);
text-indent: -9999em;
margin: 160px auto;
position: relative;
font-size: 11px;
transform: translateZ(0);
animation-delay: -0.16s;
}
.loader:after {
left: 1.5em;
}
@keyframes load1 {
0%,
80%,
100% {
box-shadow: 0 0;
height: 4em;
}
40% {
box-shadow: 0 -2em;
height: 5em;
}
}