109 lines
1.7 KiB
CSS
109 lines
1.7 KiB
CSS
@import url(../../global/import.css);
|
|
|
|
.teste {
|
|
background-color: rgb(255, 255, 255);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100000;
|
|
width: 100%;
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
align-content: center;
|
|
|
|
font-family: var(--font_titulo);
|
|
font-size: 1vw;
|
|
color: var(--Cor_Segundaria_5_1);
|
|
|
|
|
|
border: 1px solid #fff;
|
|
transition: 1s ease;
|
|
animation: MudançaNome 3s ease;
|
|
}
|
|
|
|
|
|
@keyframes MudançaNome {
|
|
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
.teste canvas {
|
|
width: 40vw;
|
|
height: 40vh;
|
|
}
|
|
|
|
.Painel_loading {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 90vh;
|
|
background-color: var(--Matriz);
|
|
z-index: 1000000;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: 1s ease;
|
|
}
|
|
|
|
.Painel_loadingConfig {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: var(--Matriz);
|
|
z-index: 1000000;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: 1s ease;
|
|
}
|
|
|
|
.loading span {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
background: #09b;
|
|
margin: 8px;
|
|
}
|
|
|
|
.loading span {
|
|
animation: bounce .6s cubic-bezier(0.6, 0.1, 1, 0.4);
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
|
|
}
|
|
|
|
.loading span:nth-child(1) {
|
|
animation-delay: .1s;
|
|
}
|
|
|
|
.loading span:nth-child(2) {
|
|
animation-delay: .2s;
|
|
}
|
|
|
|
.loading span:nth-child(3) {
|
|
animation-delay: .3s;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
|
|
to {
|
|
transform: translateY(50px);
|
|
}
|
|
} |