You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
530 B
24 lines
530 B
3 years ago
|
/*
|
||
|
CSS part developed by Matthias C. Hormann (aka Moonbase59) 2021-08-22
|
||
|
*/
|
||
|
|
||
|
.app-container.is-text-garbled img {
|
||
|
filter: blur(10px) !important;
|
||
|
-webkit-filter: blur(10px) !important;
|
||
|
transition: all 0.3s;
|
||
|
}
|
||
|
/*
|
||
|
CSS part developed by Matthias C. Hormann (aka Moonbase59) 2021-08-22
|
||
|
*/
|
||
|
|
||
|
.app-container.is-text-garbled *:hover {
|
||
|
font-family: unset !important;
|
||
|
transition: all 0.3s;
|
||
|
}
|
||
|
|
||
|
.app-container.is-text-garbled img:hover {
|
||
|
filter: unset !important;
|
||
|
-webkit-filter: unset !important;
|
||
|
transition: all 0.3s;
|
||
|
}
|