Adjust a-tag styling and disable psuedo-classes in testpage
All checks were successful
/ build (push) Successful in 8s

This commit is contained in:
lilith 2025-02-13 03:00:57 +01:00
commit 0411c33e4d
Signed by: lilith
SSH key fingerprint: SHA256:WMHGS60rozMrHkA/VT+Ole85sPCLZ190yemdzY68WJo
6 changed files with 189 additions and 86 deletions

View file

@ -159,7 +159,8 @@ $breakpoint-2xl: 96rem;
@include theme_light();
}
html, html.light {
html,
html.light {
@include theme_light();
}
@ -276,50 +277,63 @@ body {
font-family: "Athiti", ui-sans, sans-serif;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
{
font-family: "Argon Glow", ui-sans, sans-serif;
font-weight: 400;
margin: 0;
font-family: "Argon Glow", ui-sans, sans-serif;
font-weight: 400;
margin: 0;
}
h1, .h1 {
h1,
.h1 {
font-size: var(--text-5xl);
line-height: var();
}
h2, .h2 {
h2,
.h2 {
font-size: var(--text-4xl);
line-height: var();
}
h3, .h3 {
h3,
.h3 {
font-size: var(--text-3xl);
line-height: var();
}
h4, .h4 {
h4,
.h4 {
font-size: var(--text-2xl);
line-height: var();
}
h5, .h5 {
h5,
.h5 {
font-size: var(--text-xl);
line-height: var();
}
h6, .h6 {
h6,
.h6 {
font-size: var(--text-lg);
line-height: var();
}
code, .code {
code,
.code {
font-family: "Departure Mono", ui-monospace, monospace;
display: inline-block;
padding: 1rem;
@ -337,17 +351,24 @@ table {
a {
color: var(--color-accent-1);
text-decoration: underline;
&:hover, &:active, &:focus {
&:hover,
&:active,
&:focus {
color: var(--color-accent-3);
text-decoration: none;
}
&:visited {
color: var(--color-accent-2);
text-decoration: underline;
&:hover, &:active, &:focus {
&:hover,
&:active,
&:focus {
color: var(--color-accent-3);
text-decoration: none;
}
}
}
}