mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
13 lines
201 B
Text
13 lines
201 B
Text
|
/* Glow */
|
||
|
.glow() {
|
||
|
.hacks();
|
||
|
.prefixed(transition-duration, @mediumDuration);
|
||
|
.prefixed(transition-property, box-shadow);
|
||
|
|
||
|
&:hover,
|
||
|
&:focus,
|
||
|
&:active {
|
||
|
box-shadow: 0 0 8px @shadowColor;
|
||
|
}
|
||
|
}
|