newses
/* Container for the district cards */ .district-container { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px 0; }
/* Individual Card Styling */ .district-card { background: #ffffff; border: 1px solid #e0e0e0; border-top: 3px solid #cc0000; /* Red top line */ border-radius: 4px; padding: 10px 15px; text-decoration: none; color: #333; font-weight: bold; display: flex; align-items: center; justify-content: space-between; min-width: 140px; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
/* Hover Effect */ .district-card:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); border-color: #cc0000; }
/* Arrow Icon */ .district-card::after { content: '→'; margin-left: 10px; color: #cc0000; }
टिप्पणियाँ
एक टिप्पणी भेजें