1
0
Fork 0
mirror of https://github.com/uhIgnacio/igna.rocks.git synced 2024-08-15 02:23:12 +00:00
igna.rocks/assets/js/less/effects/shadow-and-glow-transitions/_box-shadow-outset.less

13 lines
231 B
Text
Raw Normal View History

2021-08-31 15:30:22 +00:00
/* Box Shadow Outset */
.box-shadow-outset() {
.hacks();
.prefixed(transition-duration, @mediumDuration);
.prefixed(transition-property, box-shadow);
&:hover,
&:focus,
&:active {
box-shadow: 2px 2px 2px @shadowColor;
}
}