UI: fix link colors inside markdown-notices

This commit is contained in:
2025-10-11 21:56:40 +02:00
parent c82b53b147
commit 6961052372

View File

@@ -9,7 +9,8 @@
--card-shadow-color: #00000033; --card-shadow-color: #00000033;
} }
.btn, button { .btn,
button {
border: none; border: none;
} }
@@ -27,7 +28,8 @@
--card-shadow-color: #1f2223; --card-shadow-color: #1f2223;
} }
.btn, button { .btn,
button {
border: 0.001rem solid var(--txt-color); border: 0.001rem solid var(--txt-color);
} }
} }
@@ -72,6 +74,18 @@ a:hover {
text-decoration: underline; text-decoration: underline;
} }
.notices a {
color: inherit;
text-decoration: underline;
font-weight: inherit;
}
.notices a:hover,
.notices a:focus {
color: inherit;
text-decoration: underline;
}
.bx { .bx {
vertical-align: middle; vertical-align: middle;
} }
@@ -118,6 +132,7 @@ a:hover {
.btn:hover { .btn:hover {
text-decoration: none; text-decoration: none;
} }
.btn { .btn {
font-weight: 700; font-weight: 700;
transition: all 0.25s; transition: all 0.25s;
@@ -175,12 +190,13 @@ a:hover {
background-color: #0986c9; background-color: #0986c9;
} }
form input, form button { form input,
form button {
font-family: "Atkinson Hyperlegible", sans-serif !important; font-family: "Atkinson Hyperlegible", sans-serif !important;
font-size: 1.5rem; font-size: 1.5rem;
min-height: 3rem; min-height: 3rem;
} }
form input { form input {
min-height: 3rem; min-height: 3rem;
padding: 0.75rem 1.25rem; padding: 0.75rem 1.25rem;
@@ -191,7 +207,7 @@ form input {
background-color: var(--bg-color); background-color: var(--bg-color);
color: var(--txt-color); color: var(--txt-color);
} }
form button { form button {
font-weight: 700; font-weight: 700;
cursor: pointer; cursor: pointer;
@@ -202,11 +218,11 @@ form button {
background-color: #00f; background-color: #00f;
color: var(--btn-txt-color); color: var(--btn-txt-color);
} }
form button:hover { form button:hover {
background-color: #00d; background-color: #00d;
} }
form .annotation { form .annotation {
margin: 0; margin: 0;
} }
@@ -249,7 +265,8 @@ form .annotation {
text-decoration: none; text-decoration: none;
} }
.card-link:hover .post-title, .card-link:hover .post-details { .card-link:hover .post-title,
.card-link:hover .post-details {
transition: color 0.3s ease; transition: color 0.3s ease;
color: var(--hover-color); color: var(--hover-color);
} }
@@ -395,8 +412,8 @@ em {
nav { nav {
margin-top: 3rem; margin-top: 3rem;
font-size: 1.6em; font-size: 1.6em;
} }
nav a, nav a,
nav a:focus, nav a:focus,
nav a:hover { nav a:hover {
@@ -443,15 +460,15 @@ nav .nav-btn {
} }
.cta { .cta {
font-size:1.1rem; font-size: 1.1rem;
line-height: 1.5rem; line-height: 1.5rem;
height: 3.1rem; height: 3.1rem;
} }
.cta a { .cta a {
display: block; display: block;
} }
.profile { .profile {
margin-top: 15%; margin-top: 15%;
} }
@@ -482,7 +499,8 @@ nav .nav-btn {
max-width: 55%; max-width: 55%;
} }
form input, form button { form input,
form button {
font-size: 1rem; font-size: 1rem;
} }
@@ -518,4 +536,4 @@ nav .nav-btn {
margin-bottom: 15%; margin-bottom: 15%;
font-size: 1.4rem; font-size: 1.4rem;
} }
} }