Colors and other stuff

This commit is contained in:
Firq 2024-10-24 18:52:33 +02:00
parent aab26e63b2
commit 34e24346d1
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
25 changed files with 234 additions and 272 deletions
src/pages

View file

@ -33,7 +33,7 @@ const description = "Error. This shouldn't happen :/"
h2 {
font-family: 'Work Sans Variable', sans-serif;
font-weight: 500;
color: white;
color: var(--c-primary-text);
font-size: 1.25rem;
margin-top: 1rem;
max-width: max-content;
@ -46,20 +46,20 @@ const description = "Error. This shouldn't happen :/"
width: fit-content;
font-weight: 500;
font-family: 'Work Sans Variable', sans-serif;
color: white;
color: var(--c-primary-text);
margin: 1rem 0px 0px;
padding: 0.5rem 0.75rem;
text-decoration: none;
background-color: var(--c-darkergray);
background-color: var(--c-primary-background);
border-radius: 10px;
border-style: solid;
border-width: 2px;
border-color: var(--c-darkergray);
border-color: var(--c-primary-background);
text-transform: capitalize;
}
a:hover {
border-color: var(--c-darkpurple);
border-color: var(--c-accent-1);
}
img {