Chromatic abaration effect

This commit is contained in:
Nox Sluijtman 2023-08-10 23:20:58 +02:00
parent e477c27b3a
commit 6db60fa38a
3 changed files with 39 additions and 2 deletions

View file

@ -11,4 +11,7 @@
</main> </main>
{{- partial "footer.html" . -}} {{- partial "footer.html" . -}}
</body> </body>
{{- partial "chroma.html" . -}}
</html> </html>

View file

@ -0,0 +1,21 @@
<!-- Chromatic abaration effect -->
<svg width="0" height="0">
<filter id="chroma">
<feColorMatrix type="matrix"
result="red_"
values="4 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 1 0"/>
<feOffset in="red_" dx="2" dy="0" result="red"/>
<feColorMatrix type="matrix"
in="SourceGraphic"
result="blue_"
values="0 0 0 0 0
0 3 0 0 0
0 0 10 0 0
0 0 0 1 0"/>
<feOffset in="blue_" dx="-3" dy="0" result="blue"/>
<feBlend mode="screen" in="red" in2="blue"/>
</filter>
</svg>

After

Width:  |  Height:  |  Size: 519 B

View file

@ -13,6 +13,11 @@ body {
} }
summary{cursor:pointer;} summary{cursor:pointer;}
summary:hover{
-webkit-filter: url(#chroma);
color: black;
background-color: #E60073;
}
a{ a{
color: #E60073; color: #E60073;
@ -26,6 +31,13 @@ a::before{ content: '['; }
a:hover{ a:hover{
color: black; color: black;
background-color: #E60073; background-color: #E60073;
position:relative;
-webkit-filter: url(#chroma);
}
a:hover::selection{
background-color: black;
color: #E60073;
} }
.postImage a::before{ content: none; } .postImage a::before{ content: none; }
@ -55,11 +67,11 @@ main{
} }
a.anchor{visibility: hidden; text-decoration: none;} a.anchor{visibility: hidden; text-decoration: none;}
h1:target::before,h2:target::before,h3:target::before,h4:target::before,h5:target::before,h6:target::before{content:"> ";} h1:target::before,h2:target::before,h3:target::before,h4:target::before,h5:target::before,h6:target::before{content:"> "; }
h1:hover>a,h2:hover>a,h3:hover>a,h4:hover>a,h5:hover>a,h6:hover>a{visibility:visible;} h1:hover>a,h2:hover>a,h3:hover>a,h4:hover>a,h5:hover>a,h6:hover>a{visibility:visible;}
h1:target>a,h2:target>a,h3:target>a,h4:target>a,h5:target>a,h6:target>a{color:black; visibility:visible;}
:target{color:black; background-color: #E60073;} :target{color:black; background-color: #E60073;}
footer{ footer{
text-align: center; text-align: center;
border-top:1pt solid; border-top:1pt solid;
@ -71,6 +83,7 @@ footer pre{
} }
table.posts{ width: 100%; } table.posts{ width: 100%; }
.post-content{ .post-content{
text-align: justify; text-align: justify;
} }