Initial commit.

This commit is contained in:
2025-06-21 17:51:07 +01:00
commit 6fd3a23aa7
296 changed files with 29154 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
.button {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
width: fit-content;
}
.button-primary {
background: var(--primary);
color: white;
}
.button-primary:hover {
background: var(--secondary);
}
.button-light {
background: white;
color: var(--primary);
}
.button-light:hover {
background: var(--light);
}
.logo:hover{
cursor: pointer;
}