chore: add and apply styles to existing buttons

This commit is contained in:
Rodolfo Ruiz
2025-06-05 20:14:19 -06:00
parent c22d0ab9c2
commit f75f771329
3 changed files with 52 additions and 72 deletions

View File

@@ -40,3 +40,47 @@
.read-the-docs {
color: #888;
}
.button-gold {
background-color: #A68A72 !important;
color: #fff !important;
border-radius: 16px !important;
text-transform: uppercase !important;
font-weight: 600 !important;
padding-left: 24px !important;
padding-right: 24px !important;
}
.button-gold:hover {
background-color: #26201A !important;
}
.button-transparent {
background-color: transparent !important;
color: black !important;
border-radius: 16px !important;
text-transform: uppercase !important;
font-weight: 600 !important;
padding-left: 24px !important;
padding-right: 24px !important;
}
.button-transparent:hover {
background-color: #26201A !important;
color: #fff !important;
}
/*
.button-transparent {
background-color: transparent !important;
color: black !important;
text-transform: uppercase !important;
font-weight: 600 !important;
padding-left: 24px !important;
padding-right: 24px !important;
}
.button-transparent:hover {
background-color: #26201A !important;
color: #fff !important;
} */