Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wiki:styling [2023/04/09 11:02] adminwiki:styling [2023/04/09 16:51] (current) admin
Line 9: Line 9:
   margin: 0;   margin: 0;
   vertical-align: middle;   vertical-align: middle;
 +}
 +</code>
 +<code css screen.css>
 +.dokuwiki .usr-content div.wrap_spoiler {
 +  filter:blur(3px);
 +  filter:blur(3.5px);
 +  opacity:0.40;
 +  transition:filter 1s linear,opacity 1s linear,text-shadow 1s linear;
 +  color: #2C2C2C !important;
 +  border: none;
 +  background-color: inherit !important;
 +}
 +
 +.dokuwiki .usr-content div.wrap_spoiler:hover {
 + filter:blur(0px);
 + opacity:1;
 + text-shadow:0 0 0 transparent;
 + transition-delay:500ms
 } }
 </code> </code>