ed74ccb839
- Correzioni inserimento nuova offerta
30 lines
692 B
Plaintext
30 lines
692 B
Plaintext
/* Questo trasforma il bottone in un elemento di un menu */
|
|
.btn-menu {
|
|
background: none;
|
|
border: none;
|
|
text-align: left;
|
|
padding: 10px 20px;
|
|
font-size: 1.1rem;
|
|
background-color: #b9e3fa;
|
|
color: white !important;
|
|
border-radius: 8px;
|
|
transition: all 0.2s ease-in-out;
|
|
width: 100%; /* Lo fa occupare tutta la larghezza della colonna */
|
|
}
|
|
|
|
/* Effetto quando passi il mouse sopra */
|
|
.btn-menu:hover {
|
|
background-color: #2690c9;
|
|
color: #000;
|
|
}
|
|
|
|
/* Effetto quando il bottone è selezionato */
|
|
.btn-menu.active {
|
|
background-color: #57b6eb;
|
|
color: white !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.calc-height {
|
|
height: calc(100vh - 115px);
|
|
} |