rudimentary buttons

This commit is contained in:
2026-06-02 21:02:46 +02:00
parent 1251921ea1
commit 19c2951cc3
6 changed files with 48 additions and 7 deletions
+41
View File
@@ -0,0 +1,41 @@
.btn {
font-size: 1rem;
font-weight: bold;
cursor: pointer;
border-radius: 0.5rem;
transition: all 0.3s ease;
&:disabled {
cursor: default;
pointer-events: none;
opacity: 0.5;
}
}
.btn-large {
font-size: 1.25rem;
padding: 1rem 4rem;
border-radius: 1.5rem;
}
.btn-primary {
background-color: var(--accent);
color: var(--bg-base);
&:hover {
background-color: var(--bg-base);
color: var(--accent);
}
}
.btn-secondary {
background-color: var(--bg-base);
color: var(--accent);
border: 1px solid var(--accent);
&:hover {
background-color: var(--accent);
color: var(--bg-base);
}
}