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/border-transitions/_hollow.less
2021-08-31 11:30:22 -04:00

17 lines
349 B
Text

/* Hollow */
.hollow() {
@borderWidth: 4px;
.hacks();
.prefixed(transition-duration, @mediumDuration);
.prefixed(transition-property, background);
box-shadow:
inset 0 0 0 @borderWidth @primaryColor,
0 0 1px rgba(0, 0, 0, 0); /* Hack to improve aliasing on mobile/tablet devices */
&:hover,
&:focus,
&:active {
background: none;
}
}