82 lines
1.7 KiB
CSS
82 lines
1.7 KiB
CSS
.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 {
|
|
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);
|
|
background-color: #9B59B6;
|
|
}
|
|
.mancTimb {
|
|
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);
|
|
background-color: #2980B9;
|
|
}
|
|
.uscita {
|
|
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);
|
|
background-color: #4CAF50;
|
|
}
|
|
.entrataDisabled {
|
|
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);
|
|
border-color: #9B59B6;
|
|
color: #000;
|
|
box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
|
|
}
|
|
.uscitaDisabled {
|
|
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);
|
|
border-color: #4CAF50;
|
|
color: #000;
|
|
box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
|
|
} |