Cards raised on hover

This commit is contained in:
Brenda Wallace
2020-10-16 10:52:35 +13:00
committed by Brenda Wallace
parent 61b03c5d71
commit 7d1e1dd29f

View File

@@ -98,8 +98,18 @@ section {
}
.card {
background: $white;
box-shadow: 1px 3px 3px 1px darken($beige, 20%);
cursor: pointer;
transition: 0.3s transform cubic-bezier(0.155, 1.105, 0.295, 1.12), 0.3s box-shadow, 0.3s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
}
.card:hover {
box-shadow: 0 10px 20px darken($beige, 30%), 0 4px 8px darken($beige, 40%);
transform: scale(1.1);
}
}
.layout-actions {