83 lines
1.5 KiB
CSS
83 lines
1.5 KiB
CSS
.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.5vw;
|
|
}
|
|
|
|
.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;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
.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;
|
|
} |