Files
gpw_next/GPW.CORE6.Smart/Components/BottoniEntrEsc.razor.less
T
2024-08-22 16:03:31 +02:00

48 lines
809 B
Plaintext

.buttons {
display: flex;
justify-content: space-between;
gap: 1rem;
width: 100%;
height: 100%;
}
.buttonsAll {
border-radius: 0.75rem;
border: none;
color: white;
width: 100%;
height: 2.5rem;
text-align: center;
display: inline-block;
font-size: 1rem;
box-shadow: 0 0.3rem 0.45rem rgba(0,0,0,0.8);
}
.entrata {
.buttonsAll;
background-color: #9B59B6;
}
.mancTimb {
.buttonsAll;
background-color: #2980B9;
}
.uscita {
.buttonsAll;
background-color: #4CAF50;
}
.entrataDisabled {
.buttonsAll;
border-color: #9B59B6;
color: #000;
box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
}
.uscitaDisabled {
.buttonsAll;
border-color: #4CAF50;
color: #000;
box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
}