mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 22:16:07 +01:00
27 lines
689 B
SCSS
27 lines
689 B
SCSS
a[rel~="+agree"]:hover, .force-is-agree, .show-links article a[rel~="+agree"] {
|
|
text-decoration-style: double;
|
|
}
|
|
a[rel~="-agree"]:hover, .force-isnt-agree, .show-links article a[rel~="-agree"] {
|
|
text-decoration-style: dotted;
|
|
}
|
|
|
|
a[rel~="+accurate"]:hover, .force-is-accurate, .show-links article a[rel~="+accurate"] {
|
|
position: relative;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
vertical-align: super;
|
|
font-size: x-small;
|
|
content: "✓";
|
|
}
|
|
}
|
|
a[rel~="-accurate"]:hover, .force-isnt-accurate, .show-links article a[rel~="-accurate"] {
|
|
position: relative;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
vertical-align: super;
|
|
font-size: x-small;
|
|
content: "✗";
|
|
}
|
|
}
|