mirror of
https://github.com/GuerillaStudio/now-playing
synced 2024-11-09 16:51:53 +00:00
25 lines
692 B
SCSS
25 lines
692 B
SCSS
|
/* ----------------------------------------------------------- */
|
||
|
/* == rwd -> reduced motion */
|
||
|
/* ----------------------------------------------------------- */
|
||
|
|
||
|
@media (prefers-reduced-motion: reduce) {
|
||
|
/* Glitch text
|
||
|
-------------------------------------------------------------- */
|
||
|
|
||
|
.glitch::before,
|
||
|
.glitch::after,
|
||
|
.glitch--hover:hover::before,
|
||
|
.glitch--hover:hover::after {
|
||
|
animation: none;
|
||
|
}
|
||
|
|
||
|
/* Catalog
|
||
|
-------------------------------------------------------------- */
|
||
|
|
||
|
.catalog-item__content:hover .catalog-item__visual,
|
||
|
.catalog-item__content:active .catalog-item__visual,
|
||
|
.catalog-item__content:focus .catalog-item__visual {
|
||
|
transform: none;
|
||
|
}
|
||
|
}
|