mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
45 lines
798 B
SCSS
45 lines
798 B
SCSS
@use '../helpers/functions' as *;
|
|
|
|
.private-cloud-hero {
|
|
padding-top: $spacer * 2.5;
|
|
background-color: $neutral-94;
|
|
|
|
&__title {
|
|
font-size: $spacer * 2.5;
|
|
line-height: $spacer * 3;
|
|
color: $neutral-20;
|
|
margin-bottom: $spacer * 1.5;
|
|
}
|
|
|
|
&__description {
|
|
font-size: pxToRem(18);
|
|
line-height: pxToRem(27);
|
|
color: $neutral-30;
|
|
margin-bottom: $spacer * 1.5;
|
|
}
|
|
|
|
&__button {
|
|
min-width: $spacer * 10;
|
|
}
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
padding-top: $spacer * 7.5;
|
|
|
|
&__title {
|
|
width: pxToRem(540);
|
|
font-size: $spacer * 3.5;
|
|
line-height: pxToRem(67);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&__content {
|
|
width: pxToRem(465);
|
|
}
|
|
|
|
&__description {
|
|
font-size: pxToRem(20);
|
|
line-height: pxToRem(30);
|
|
}
|
|
}
|
|
}
|