mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 09:46:11 +01:00
Also introduces `references` as a standard Params structure for my blog. I don't particularly like that it's a map rather than an array, but this is what my micropib enpoint currently creates, so I'll stick with this until I can be bothered to switch that over.
27 lines
453 B
SCSS
27 lines
453 B
SCSS
a[rel~="+agree"]:hover {
|
|
text-decoration-style: double;
|
|
}
|
|
a[rel~="-agree"]:hover {
|
|
text-decoration-style: dotted;
|
|
}
|
|
|
|
a[rel~="+accurate"]:hover {
|
|
position: relative;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
vertical-align: super;
|
|
font-size: x-small;
|
|
content: "✓";
|
|
}
|
|
}
|
|
a[rel~="-accurate"]:hover {
|
|
position: relative;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
vertical-align: super;
|
|
font-size: x-small;
|
|
content: "✗";
|
|
}
|
|
}
|