- Corretto campo "Comune di Residenza".

- Aggiornato Completamento Profilo: Comune di Residenza.
- Registrazione
This commit is contained in:
Surya Paolo
2025-11-26 18:32:05 +01:00
parent b37204f543
commit 145327a6ca
53 changed files with 4122 additions and 1203 deletions

View File

@@ -1899,13 +1899,6 @@ h3 {
color: #A0A0A0;
}
.show_province {
font-size: 0.85rem;
font-style: italic;
text-align: right;
color: grey;
}
.buttons_bottom {
max-width: 700px !important;
@@ -3267,4 +3260,48 @@ body.body--dark {
@media (max-width: 768px) {
padding: 10px;
}
}
.modern-chip {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
font-weight: 500;
padding: 8px 16px;
border-radius: 20px;
box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.5s ease;
}
&:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
&::before {
left: 100%;
}
}
&:active {
transform: translateY(0);
}
// Mobile: più compatto
@media (max-width: 599px) {
padding: 8px 16px;
font-size: 1rem;
border-radius: 16px;
}
}