Differences

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

Link to this comparison view

Next revision
Previous revision
wiki:styling [2023/04/03 18:45] – created - external edit 127.0.0.1wiki:styling [2023/04/09 16:51] (current) admin
Line 2: Line 2:
 .usr-content .medialeft { .usr-content .medialeft {
   margin-right: 20px;   margin-right: 20px;
 +}
 +
 +.usr-content .page p img.icon {
 +  height: 1.2em;
 +  display: inline-block;
 +  margin: 0;
 +  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>