User:Emmateapot/common.css: Difference between revisions

Content added Content deleted
mNo edit summary
mNo edit summary
Line 3: Line 3:
filter: blur(.2em);
filter: blur(.2em);
opacity: 0.40;
opacity: 0.40;
transition: filter 1s linear, opacity 1s linear, text-shadow 1s linear;
transition: filter .5s linear, opacity .5s linear, text-shadow .5s linear;
}
}
Line 10: Line 10:
opacity: 1;
opacity: 1;
text-shadow: 0 0 0 transparent;
text-shadow: 0 0 0 transparent;
transition-delay: 500ms;
transition-delay: 250ms;
}
}

Revision as of 04:30, 2 March 2022

.spoilers-body {
  display: flow-root;
  filter: blur(.2em);
  opacity: 0.40;
  transition: filter .5s linear, opacity .5s linear, text-shadow .5s linear;
}
 
.spoilers-body:hover {
  filter: blur(0px);
  opacity: 1;
  text-shadow: 0 0 0 transparent;
  transition-delay: 250ms;
}