You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/components/section-break-cta/style.module.css

75 lines
1.2 KiB

.sectionBreakCta {
display: flex;
align-items: center;
flex-direction: column;
padding: 32px 0 32px 24px;
background-color: var(--black);
background-image: radial-gradient(
88.57% 111.76% at 51.65% 103.99%,
rgba(99, 208, 255, 0.4) 0%,
rgba(0, 0, 0, 0) 100%
),
linear-gradient(0deg, #000, #000);
border-radius: 3px;
color: var(--white);
overflow: hidden;
@media (--medium-up) {
flex-direction: row;
padding: 50px 0 50px 50px;
}
@media (--large) {
padding: 50px 0 50px 80px;
}
}
.content {
margin-bottom: 48px;
padding-right: 24px;
@media (--medium-up) {
margin-bottom: 0;
}
}
.media {
flex-shrink: 0;
width: 100%;
@media (--medium-up) {
width: 45%;
margin-left: 60px;
}
}
.eyebrow {
margin-bottom: 30px;
display: flex;
align-items: center;
}
.logo {
display: flex;
}
.badge {
margin-left: 16px;
padding: 2px 10px;
background-color: var(--packer-secondary);
color: var(--black);
composes: g-type-label from global;
border-radius: 2px;
}
.heading {
margin: 0;
composes: g-type-display-3 from global;
}
.description {
margin: 16px 0 32px;
composes: g-type-body from global;
color: var(--gray-5);
}