ajax_notes

This commit is contained in:
2020-07-29 17:39:36 +02:00
parent b8dad034eb
commit 62e09ba0eb
9 changed files with 260 additions and 57 deletions
@@ -29,8 +29,8 @@
transition: 0.3s transform ease, 0.3s box-shadow ease;
&:hover{
transform: scale(1.05);
transition: 0.3s all ease;
box-shadow: 0px 0px 13px 0px $color2;
transition: 0.3s transform ease, 0.3s box-shadow ease;
}
}
@@ -46,7 +46,21 @@
transition: 0.3s all ease;
box-shadow: 0px 0px 13px 0px $color2;
}
}
}
}
@mixin shadow_side_note{
img{
box-shadow: none;
transition: 0.3s transform ease, 0.3s box-shadow ease;
}
&:hover{
& > div img{
transform: scale(1.05);
transition: 0.3s all ease;
box-shadow: 0px 0px 13px 0px $color2;
}
}
}