56 lines
1,022 B
SCSS
56 lines
1,022 B
SCSS
section#buy {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 6rem var(--padding-body);
|
|
|
|
.text {
|
|
text-align: center;
|
|
width: 30rem;
|
|
margin-left: 8rem;
|
|
.section-title {
|
|
font-size: var(--font-size-s);
|
|
text-transform: uppercase;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.title {
|
|
font-family: 'owners-xnarrow', sans-serif;
|
|
font-size: var(--font-size-l);
|
|
text-transform: uppercase;
|
|
color: var(--color-blue);
|
|
margin-bottom: 1.75rem;
|
|
}
|
|
|
|
p {
|
|
font-size: var(--font-size-m);
|
|
font-weight: 500;
|
|
}
|
|
p:not(:last-child) {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.buy-links {
|
|
margin-top: 5rem;
|
|
li {
|
|
margin-bottom: 1rem;
|
|
a {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.info {
|
|
font-size: 0.625rem;
|
|
opacity: 0.8;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2.4px;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 45%;
|
|
height: 40vw;
|
|
object-fit: cover;
|
|
}
|
|
}
|