27 lines
445 B
CSS
27 lines
445 B
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);
|
|
|
|
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
.teste canvas {
|
|
width: 40vw;
|
|
height: 40vh;
|
|
} |