learnix / src /app /help /styles /HelpLinks.css
shashidharak99's picture
Upload files
7d51e81 verified
raw
history blame contribute delete
589 Bytes
.help-links-card {
display: block;
text-decoration: none;
color: inherit;
border: 1px solid #e5f3ff;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.help-links-card:hover {
transform: translateY(-2px);
border-color: #0ea5e9;
box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
}
.help-links-card h4 {
color: #0c4a6e;
}
.help-links-card:hover h4 {
color: #0ea5e9;
}
.help-links-more {
display: inline-block;
margin-top: 0.5rem;
font-weight: 600;
color: #0ea5e9;
}
.help-links-card:hover .help-links-more {
color: #0c4a6e;
}