button styles

This commit is contained in:
blek 2023-09-30 00:52:05 +10:00
parent a52ba75924
commit 8f6fa0a21b
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 15 additions and 0 deletions

View File

@ -111,4 +111,19 @@ p {
}
.card-text p {
margin-left: 0;
}
.btn {
border-radius: 12px;
background: var(--header-sec-color);
padding: var(--header-padding-y);
border: 0px solid transparent;
color: var(--accent-fg-color);
transition: 250ms ease;
}
.btn:hover {
background: #393939;
}
.btn:active {
background: #323232;
}