
Discover handy notes, NCERT solutions, extra questions, deep analysis, and expert-written content—all in one place. Edumantra offers free, reliable, and effective study material to help students excel, especially in English. Learning has never been this easy!
/* Container */ .summaries-container { background-color: #222; /* Dark background */ padding: 20px; border-radius: 10px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* 3D shadow effect */ max-width: 800px; margin: 20px auto; color: #fff; /* Light text */ } /* Heading */ .summaries-heading { text-align: center; font-size: 1.8rem; font-weight: bold; margin-bottom: 20px; color: #4CAF50; /* Accent color for heading */ } /* List */ .summaries-list { list-style: none; padding: 0; margin: 0; } /* Links */ .summary-link { display: flex; align-items: center; padding: 12px; border-radius: 8px; text-decoration: none; font-size: 1rem; font-weight: bold; color: #fff; background: linear-gradient(145deg, #1e1e1e, #2a2a2a); /* Dark 3D effect */ box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), -4px -4px 8px rgba(50, 50, 50, 0.2); transition: all 0.3s ease; } .summary-link i { margin-right: 10px; /* Space between icon and text */ font-size: 1.2rem; color: #4CAF50; /* Icon color */ } .summary-link:hover { background: linear-gradient(145deg, #2f2f2f, #3a3a3a); /* Lighter hover effect */ box-shadow: 4px 4px 8px rgba(255, 255, 255, 0.2), -4px -4px 8px rgba(0, 0, 0, 0.3); /* Brightens on hover */ transform: translateY(-2px); /* Slight upward movement */ color: #4CAF50; /* Highlight text on hover */ }