User:Emmateapot/common.css: Difference between revisions

Content added Content deleted
(Investigating better spoiler presentation)
 
No edit summary
Line 1: Line 1:
.spoilers-body {
.spoilers-body {
filter: blur(2px);
filter: blur(.2em);
opacity: 0.40;
opacity: 0.40;
position: sticky;
transition: filter 1s linear, opacity 1s linear, text-shadow 1s linear;
transition: filter 1s linear, opacity 1s linear, text-shadow 1s linear;
z-index: -1;
}
}

Revision as of 03:36, 2 March 2022

.spoilers-body {
  filter: blur(.2em);
  opacity: 0.40;
  position: sticky;
  transition: filter 1s linear, opacity 1s linear, text-shadow 1s linear;
  z-index: -1;
}
 
.spoilers-body:hover {
  filter: blur(0px);
  opacity: 1;
  text-shadow: 0 0 0 transparent;
  transition-delay: 500ms;
}