Skip to content

Commit

Permalink
melhoria de estilo na barra de tempo
Browse files Browse the repository at this point in the history
  • Loading branch information
V1ctorGenesis committed Sep 8, 2023
1 parent a007e82 commit 5aa51c6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ onAuthStateChanged(getAuth(), (user) => {
const telaAtual = computed(() => {
return BlocoAntessala; // TODO: mudar aqui para testar as telas
return BlocoDefinicoes; // TODO: mudar aqui para testar as telas
// if (!estado.sala.etapa) {
// return BlocoConexao;
Expand Down
25 changes: 19 additions & 6 deletions src/components/BlocoDefinicoes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,39 +91,52 @@ onMounted(contagemRegressiva);
.barra-container {
width: 100%;
height: 20px;
background-color: #ccc;
background-color: #cccccc00;
}

.barra {
height: 100%;
text-align: right;
height: 12px;
width: 100%;
border-radius: 15px;
background-color: #4caf50; /* Cor de fundo da barra de progresso */
transition: width 1s linear; /* Transição suave da largura */

}

.barra::before {
left: 16px;
top: -7px;
position:relative;
content: "\23F3"; /* Símbolo da alternativa marcada */
}

.roxo {
height: 100%;
height: 12px;
width: 100%;
background-color: #6200ff; /* Cor de fundo da barra de progresso */
transition: 1s linear; /* Transição suave da largura */
transition: 1s linear;
/* Transição suave da largura */
}

.vermelho {
height: 100%;
height: 12px;
width: 100%;
background-color: #ff0000; /* Cor de fundo da barra de progresso */
transition: 1s linear; /* Transição suave da largura */
}

.amarelo {
height: 100%;
height: 12px;
width: 100%;
background-color: #fbff00; /* Cor de fundo da barra de progresso */
transition: 1s linear; /* Transição suave da largura */
}

.sem-negrito {
font-weight: 100;
}

.centralizado {
text-align: center;
}
Expand Down

0 comments on commit 5aa51c6

Please sign in to comment.