75 lines
1.6 KiB
CSS
75 lines
1.6 KiB
CSS
/*Classe padrão para estilizar o dimensionamento de todas mensagens de erro*/
|
|
.error-message {
|
|
color: var(--Cor_Segundaria_2_1);
|
|
width: 100%;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-content: center;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
/*Sub classe para edições especificas, para a tag p, usando como referencia da classe, error-message*/
|
|
.error-message p {
|
|
font-size: 1.2vw;
|
|
font-family: var(--font_conteudo);
|
|
|
|
}
|
|
|
|
/*Cria toda a estilização do painel de pop up*/
|
|
.pop {
|
|
position: absolute;
|
|
opacity: 0;
|
|
z-index: 10000;
|
|
background-color: var(--Matriz);
|
|
border-bottom: 0.2vw solid var(--Cor_Segundaria_5_1);
|
|
border-top: 0.2vw solid var(--Cor_Segundaria_5_1);
|
|
border-left: 0.2vw solid var(--Cor_Segundaria_5_1);
|
|
border-right: 0.2vw solid var(--Cor_Segundaria_5_1);
|
|
|
|
color: var(--Cor_Segundaria_5_1);
|
|
width: 45vw;
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
display: flex;
|
|
position: relative;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-content: center;
|
|
text-align: center;
|
|
|
|
font-size: 1.2vw;
|
|
font-family: var(--font_conteudo);
|
|
|
|
}
|
|
|
|
/*Cria toda a estilização de botão para fechar o pop up*/
|
|
.X {
|
|
position: absolute;
|
|
left: 0.5vw;
|
|
top: 0.8vh;
|
|
|
|
border: none;
|
|
background: none;
|
|
outline: none;
|
|
|
|
color: var(--Cor_Segundaria_5_1);
|
|
font-family: var(--font_conteudo);
|
|
transition: 1s ease;
|
|
font-size: 1.5vw;
|
|
}
|
|
|
|
/*Defini uma interatividade com o mouse, onde toda a vez que o mouse ficar sobre ele, ele por sua vez ira mudar de cor*/
|
|
.X:hover {
|
|
color: var(--Cor_Segundaria_2_1);
|
|
transition: 1s ease;
|
|
} |