Adds card hover effect

This commit is contained in:
decabeza
2018-06-22 18:01:28 +02:00
parent 79eea245a4
commit 6477983a85

View File

@@ -2655,6 +2655,28 @@ table {
.card {
border: 0;
overflow: visible;
a {
img {
transition-duration: 0.3s;
transition-property: transform;
}
}
a:hover {
box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
text-decoration: none;
img {
transform: scale(1.1);
}
}
p {
padding: 0 $line-height / 4;
}
}
h3 {