ഉള്ളടക്കത്തിലേക്ക് പോവുക

ഫലകം:Listofdistricts2/styles.css

Schoolwiki സംരംഭത്തിൽ നിന്ന്
11:25, 30 സെപ്റ്റംബർ 2025-നു ഉണ്ടായിരുന്ന രൂപം സൃഷ്ടിച്ചത്:- Ranjithsiji (സംവാദം | സംഭാവനകൾ)
/* Flex container for items */
.district-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* distribute evenly */
  align-items: stretch; /* 🔑 equal height cards */
  gap: 12px;
  margin-bottom: 20px;
}

/* Each item as clickable card */
.district-items a {
  flex: 1 1 calc(25% - 12px); /* 4 per row by default */
  box-sizing: border-box;
  background: #ffffff;
  border: 2px solid #0073e6;
  border-radius: 8px;
  padding: 15px 10px;
  color: #004EC3;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  display: flex;              /* 🔑 makes content flexible */
  flex-direction: column;     /* keep text stacked */
  justify-content: center;    /* center text vertically */
}

/* Hover effect */
.district-items a:hover {
  background: #81bffc;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
  border-color: #004ec3;
  font-weight: bold;
}

/* Subtext (if used) */
.district-items a small {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
  color: #555;
}

/* Responsive: 2 per row on tablets */
@media (max-width: 768px) {
  .district-items a {
    flex: 1 1 calc(45% - 12px);
    font-size: 0.95rem;
  }
}

/* Responsive: 1 per row on mobile */
@media (max-width: 480px) {
  .district-items a {
    flex: 1 1 100%;
    font-size: 0.9rem;
  }
}
"https://schoolwiki.in/index.php?title=ഫലകം:Listofdistricts2/styles.css&oldid=2866121" എന്ന താളിൽനിന്ന് ശേഖരിച്ചത്