Bihar Board 11th Merit List 2025
- Bihar Board 11th Merit List 2025-How To Check & Download Bihar Inter Merit List 2025?
- Bihar B.Ed Counseling 2025 – Online Registration Process, Date, Documents,Fees Full Details Here
- Bihar Board 10th Pass Scholarship 2025 Online Apply For 1st, 2nd, or 3rd Division, Eligibility, Documents
- How To Add Name In Bihar Voter List 2025-बिहार के वोटर लिस्ट में अपना नाम कैसे जोड़े ऑनलाइन?
- Graduation scholarship 2025 status check : Graduation Pass Scholarship 2025 User Id & Password Kaise Milega
- BRABU UG 3rd Semester Result 2025 : How to Check & Download Bihar University 3rd Semester Result 2025?
Patna Airport Vacancy 2025
- Patna Airport Vacancy 2025 Online Apply For 166 Post : पटना एयरपोर्ट पर आई नई भर्ती ऑनलाइन शुरू?
- Bihar SSC Group D Vacancy 2025: 10वी पास युवाओ के लिए 3727 पद पर निकली शानदार भर्ती ऑनलाइन शुरू?
- UP Police SI Vacancy 2025 : Online Apply For 4543 Posts,Eligibility, Dates, Selection Process?
- Bihar Udyog Vibhag Vacancy 2025: बिहार उद्योग विभाग की नई भर्ती आवेदन शुरू योग्यता, आयु सीमा, सैलरी व चयन प्रक्रिया जानें?
- Ration Dealer Bharti – बिहार के इन जिलो में आई राशन डीलर की नई भर्ती आवेदन शुरू?
- BSF Head Constable RO RM Vacancy 2025 Online Apply For 1121 Posts,Eligibility, Age Limit, and Selection Process?
Aadhar Card Correction
- Aadhar Card Se PM Kisan Status Check 2025 : अब सिर्फ आधार कार्ड से पीएम किसान का स्टेटस चेक करें?
- Aadhar Card Correction Document List 2025-26 -आधार कार्ड में सुधार के लिए अब ये दस्तावेज़ मान्य होगा नया बदलाव जारी?
- Pm awas yojana gramin survey list kaise dekhe 2025 | लिस्ट में नाम कैसे देखे? कब जुड़ेगा व नाम?
- Ration Online Ekyc: राशन कार्ड में घर पर बैठे-बैठे ऑनलाइन ईकेवाईसी करें 2 मिनट में
- Voter Card Ka Status Online Kaise Kare : अपना वोटर कार्ड स्टेटस, अब घर बैठे खुद से चेक करे ऑनलाइन?
- How to Change Address in Aadhar Card Online | Aadhar Card Address Change Online 2025?
/* Container for the entire grid */
.custom-card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Creates 3 columns, adjusts for smaller screens */
gap: 20px; /* Space between the cards */
padding: 20px; /* Padding around the entire grid */
background-color: #f0f0f0; /* Light grey background for the whole section */
}
/* Styling for each individual card */
.custom-card {
background-color: #e0e6f0; /* Light blue background for the card */
border-radius: 8px; /* Rounded corners */
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
display: flex; /* Use flexbox for internal layout */
flex-direction: column; /* Stack items vertically */
justify-content: space-between; /* Pushes button to the bottom */
}
/* Styling for the card heading */
.custom-card .card-heading {
font-size: 1.3em;
margin-top: 0;
margin-bottom: 15px;
color: #333;
text-align: center; /* Center align the heading */
font-weight: bold;
}
/* Styling for the unordered list */
.custom-card ul {
list-style: none; /* Remove default bullet points */
padding: 0;
margin: 0;
flex-grow: 1; /* Allows the list to take up available space */
}
/* Styling for each list item */
.custom-card ul li {
margin-bottom: 10px;
line-height: 1.4;
}
/* Styling for the links within the list */
.custom-card ul li a {
text-decoration: none; /* Remove underline from links */
color: #0073aa; /* WordPress default link blue */
font-size: 0.95em;
display: block; /* Make the entire list item clickable */
}
.custom-card ul li a:hover {
color: #005177; /* Darker blue on hover */
text-decoration: underline;
}
/* Styling for the “View More…” button */
.custom-card .card-button {
display: block; /* Make the button a block element */
width: fit-content; /* Adjust width to content */
margin: 20px auto 0 auto; /* Center the button and add top margin */
padding: 10px 20px;
background-color: #0073aa; /* Button blue color */
color: white;
text-align: center;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease; /* Smooth hover effect */
}
.custom-card .card-button:hover {
background-color: #005177; /* Darker blue on hover */
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
.custom-card-grid {
grid-template-columns: 1fr; /* Stack cards vertically on smaller screens */
padding: 10px;
gap: 15px;
}
.custom-card {
padding: 15px;
}
}
