2022-06-17 17:51:59 +02:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// ANIMATIONS
|
|
|
|
// ----------------------------------------------------------------------------
|
2022-07-06 17:18:42 +02:00
|
|
|
|
|
|
|
@-webkit-keyframes expand-outline {
|
2022-07-07 17:09:48 +02:00
|
|
|
from {
|
2022-07-06 17:18:42 +02:00
|
|
|
outline-offset: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
outline-offset: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes expand-outline {
|
|
|
|
from {
|
|
|
|
outline-offset: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
outline-offset: 2px;
|
|
|
|
}
|
|
|
|
}
|