* Add custom hover shadows * Support avatars * Add guide-card include * Use it in product-landing * Add gradient styles * Add guides frontmatter * Use guideArticles instead of full objects * Add support for authors * Add support for category header * Just pass the whole page * Use it * guide.url => guide.href * Use `*.githubusercontent.com` * Fix mobile card width * Remove showDescription check * Use featureLinks.guideCards * Forgot an if * Remove support banner * Just use login instead of name/avatarUrl * Change card spacing * Use circular avatars * Add margin beneath "Guides" * Use smaller font * Even moar spacing * Remove category * Remove lead text, move button to bottom right * update guide cards * Change author of setting up ci to GitHub * Attribute node js guide to GitHub * Add author tag to powershell guide * update top guides section with correct actions links * Enforce size for single avatars * Adjust spacing Co-authored-by: Cynthia Rich <crichID@users.noreply.github.com>
34 lines
549 B
SCSS
34 lines
549 B
SCSS
.hover-shadow {
|
|
& {
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
&:hover {
|
|
box-shadow: $box-shadow !important;
|
|
}
|
|
}
|
|
|
|
&-medium {
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
&:hover {
|
|
box-shadow: $box-shadow-medium !important;
|
|
}
|
|
}
|
|
|
|
&-large {
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
&:hover {
|
|
box-shadow: $box-shadow-large !important;
|
|
}
|
|
}
|
|
|
|
&-extra-large {
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
&:hover {
|
|
box-shadow: $box-shadow-extra-large !important;
|
|
}
|
|
}
|
|
}
|