This commit is contained in:
2025-05-07 14:31:29 -07:00
parent f3df5227d6
commit 058201aa95
5 changed files with 23 additions and 1 deletions

View File

@@ -7,6 +7,8 @@ $c-charcoal: #2B2400;
$c-tan: #B9AF78;
$c-textGrey: #333333;
$transition-time: 0.3s;
// Bootstrap overrides
$font-family-sans-serif: 'Inter', sans-serif;
$body-color: $c-textGrey;

View File

@@ -27,5 +27,6 @@
p.cta-button {
display: block;
margin: 0 auto;
text-align: center;
}
}

View File

@@ -23,10 +23,21 @@ a {
width: 360px;
max-width: 100%;
border-radius: 42px;
transition: all $transition-time ease;
&:hover {
background-color: $c-tan;
color: $c-navy;
}
}
&.gold {
a {
background-color: $c-tan;
&:hover {
background-color: $c-navy;
}
}
}
}