Buen dia Asesores, No entiendo la siguiente nomenclatura en css del siguiente código , sobre todo la referente al codigo:
.tecla.activa, .tecla:active {
}
.tecla {
background-color: var(--blanco);
border-radius: 30px;
box-shadow: 3px 3px 0 var(--gris);
color: var(--rojo);
cursor: pointer;
height: 120px;
font-size: 1.75em;
font-weight: bold;
line-height: 120px;
text-align: center;
width: 120px;
}
.tecla.activa,
.tecla:active {
background-color: var(--rojo);
border: 4px solid var(--rojo);
box-shadow: 3px 3px 0 var(--rojo-oscuro) inset;
color: var(--blanco);
outline: none;
}