130 lines
2.8 KiB
CSS
130 lines
2.8 KiB
CSS
.bloco_ambiente .seguimento_2 .capitulo_2 .painel_Cap {
|
|
|
|
width: 90%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: start;
|
|
align-items: center;
|
|
align-content: center;
|
|
|
|
gap: 1vw;
|
|
overflow-y: auto;
|
|
|
|
padding: 2vh;
|
|
background-color: var(--Cor_Segundaria_5_1);
|
|
height: 20vh;
|
|
}
|
|
|
|
/* Estilo customizado para o scroll (somente no Webkit) */
|
|
.capitulo_2 .painel_Cap::-webkit-scrollbar {
|
|
width: 0.2vw;
|
|
/* Largura da barra de rolagem */
|
|
height: 0.2vw;
|
|
/* Para scroll horizontal, se necessário */
|
|
}
|
|
|
|
/* Estilo para o polegar da barra de rolagem */
|
|
.capitulo_2 .painel_Cap::-webkit-scrollbar-thumb {
|
|
background-color: var(--Matriz);
|
|
/* Cor da parte da barra que você arrasta */
|
|
border-radius: 10px;
|
|
/* Borda arredondada */
|
|
/* Borda ao redor do polegar */
|
|
}
|
|
|
|
/* Aumentando o tamanho do track (fundo da barra de rolagem) */
|
|
.capitulo_2 .painel_Cap::-webkit-scrollbar-track {
|
|
background-color: var(--Cor_Segundaria_5_2);
|
|
/* Cor do fundo do scroll */
|
|
border-radius: 10px;
|
|
/* Borda arredondada */
|
|
/* Usar diretamente a largura ou altura aqui para aumentar o track */
|
|
width: 1vw;
|
|
/* Aumentando a largura do track para o scroll vertical */
|
|
height: 1vw;
|
|
/* Aumentando a altura do track para o scroll horizontal */
|
|
}
|
|
|
|
|
|
|
|
.subpainel_Status {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 1vw;
|
|
|
|
}
|
|
|
|
.subpainel_Status .bloco_1 {
|
|
width: 25%;
|
|
height: 6vh;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
background-color: var(--Cor_Segundaria_2_1);
|
|
box-shadow: 5px 5px 0px var(--Cor_Segundaria_2_2);
|
|
}
|
|
|
|
.subpainel_Status .bloco_2 {
|
|
width: 70%;
|
|
height: 6vh;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 1vw;
|
|
|
|
background-color: var(--Cor_Segundaria_2_1);
|
|
box-shadow: 5px 5px 0px var(--Cor_Segundaria_2_2);
|
|
}
|
|
|
|
.subpainel_Status .bloco_1 .titulo {
|
|
|
|
|
|
font-family: var(--font_titulo);
|
|
color: var(--Matriz);
|
|
font-size: 0.6vw;
|
|
}
|
|
|
|
.subpainel_Status .bloco_2 .Mensagem_ambiente {
|
|
|
|
font-family: var(--font_titulo);
|
|
margin-left: 1vw;
|
|
color: var(--Matriz);
|
|
font-size: 1vw;
|
|
|
|
}
|
|
|
|
.subpainel_Status .bloco_2 .button_rel button {
|
|
background: none;
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
|
|
|
|
.subpainel_Status .bloco_2 .button_rel img {
|
|
width: 1.6vw;
|
|
filter: drop-shadow(3px 3px 0px var(--Cor_Segundaria_2_2));
|
|
}
|
|
|
|
|
|
.subpainel_Status .bloco_2 .status_ambiente {
|
|
font-family: var(--font_titulo);
|
|
color: var(--Cor_Segundaria_5_1);
|
|
font-size: 0.7vw;
|
|
|
|
margin-right: 1vw;
|
|
background-color: var(--Matriz);
|
|
padding: 0.2vw;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 2vw;
|
|
width: 4vw;
|
|
height: 3vh;
|
|
} |