29 lines
735 B
Plaintext
29 lines
735 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%;
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
/* Effetto quando passi il mouse sopra */
|
|
.btn-menu:hover {
|
|
background-color: #2690c9;
|
|
color: #000;
|
|
transform: scale(1.05);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* Effetto quando il bottone è selezionato */
|
|
.btn-menu.active {
|
|
background-color: #57b6eb;
|
|
color: white !important;
|
|
font-weight: bold;
|
|
} |