ANTI-SHILL IMAGE SETTINGS
Go to [Options] Theme and enter:
.post.has-file img {
filter: blur(10px);
opacity: .5;
}
.post.has-file img:hover {
animation: reveal 1.5s;
animation-fill-mode: forwards;
}
.post-hover.has-file img {
animation: reveal 2.0s;
animation-fill-mode: forwards;
}
@keyframes reveal {
0% {
filter: blur(10px);
opacity: .5;
}
80% {
filter: blur(4px);
opacity: 1;
}
100% {
filter: blur(0px);
opacity: 1;
}
}