43 lines
703 B
SCSS
43 lines
703 B
SCSS
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.goudy {
|
|
font-family: 'Goudy Bookletter 1911', serif;
|
|
}
|
|
|
|
.cta-button {
|
|
margin-bottom: 0;
|
|
|
|
a {
|
|
background-color: $c-navy;
|
|
color: $c-white;
|
|
display: inline-flex ;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 52px;
|
|
width: 360px;
|
|
max-width: 100%;
|
|
border-radius: 42px;
|
|
transition: all $transition-time ease;
|
|
|
|
&:hover {
|
|
background-color: $c-tan;
|
|
}
|
|
}
|
|
|
|
&.gold {
|
|
a {
|
|
background-color: $c-tan;
|
|
|
|
&:hover {
|
|
background-color: $c-navy;
|
|
}
|
|
}
|
|
}
|
|
}
|