mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
13 lines
258 B
Text
13 lines
258 B
Text
/* Float */
|
|
.float() {
|
|
.hacks();
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
.prefixed(transition-property, transform);
|
|
.prefixed(transition-timing-function, ease-out);
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
.prefixed(transform, translateY(-8px));
|
|
}
|
|
}
|