- aggiunto il Comune di Residenza alla REgistrazione e al Tutorial

This commit is contained in:
Surya Paolo
2025-11-27 00:48:53 +01:00
parent 145327a6ca
commit 05bf8ad495
25 changed files with 392 additions and 194 deletions

View File

@@ -17,7 +17,7 @@ $shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
$mobile-breakpoint: 768px;
// ========================================
// WRAPPER CARD
// WRAPPER CARD - ALTERNATING COLORS
// ========================================
.rec-card-wrapper {
margin: 4px auto;
@@ -26,6 +26,22 @@ $mobile-breakpoint: 768px;
@media (max-width: $mobile-breakpoint) {
margin: 2px auto;
}
&.is-even {
.modern-rec-card {
background: linear-gradient(135deg, rgba(49, 154, 239, 0.227) 0%, rgba(25, 118, 210, 0.05) 100%);
border-color: rgba(66, 165, 245, 0.15);
// ... resto degli stili blu
}
}
&.is-odd {
.modern-rec-card {
background: linear-gradient(135deg, rgba(38, 197, 218, 0.159) 0%, rgba(0, 150, 136, 0.05) 100%);
border-color: rgba(38, 198, 218, 0.15);
// ... resto degli stili teal
}
}
}
// ========================================
@@ -163,15 +179,11 @@ $mobile-breakpoint: 768px;
padding: 8px;
transition: all $transition-speed ease;
margin-bottom: 4px;
position: relative;
overflow: hidden;
&:hover {
box-shadow: $shadow-md;
border-color: rgba(25, 118, 210, 0.2);
}
&.is-attending {
border-left: 3px solid $positive-color;
background: linear-gradient(to right, rgba(33, 186, 69, 0.05), white);
}
@media (max-width: $mobile-breakpoint) {
@@ -224,7 +236,7 @@ $mobile-breakpoint: 768px;
}
// ========================================
// CONTENT SECTION
// CONTENT SECTION - ALTERNATING COLORS
// ========================================
.content-section {
padding: 0 8px 0 0 !important;