Files
landing_page/qdrant-landing/themes/qdrant-2024/assets/css/partials/_private-cloud-about.scss
T

64 lines
1.1 KiB
SCSS

@use '../helpers/functions' as *;
.private-cloud-about {
padding-top: $spacer * 4;
padding-bottom: $spacer * 4;
background-color: $neutral-94;
&__title {
color: $neutral-20;
margin-bottom: 0;
}
&__image {
width: 100%;
margin-bottom: $spacer * 1.5;
}
&__description {
color: $neutral-40;
margin-bottom: 0;
}
@include media-breakpoint-up(xl) {
padding-bottom: $spacer;
&__content {
position: relative;
&:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: pxToRem(1);
width: pxToRem(920);
margin: 0 auto;
background-color: $neutral-80;
}
}
&__title {
position: absolute;
top: $spacer * 4;
left: pxToRem(12);
width: pxToRem(400);
}
&__image {
display: block;
width: pxToRem(553);
margin: 0 auto;
}
&__description {
position: absolute;
bottom: $spacer * 4;
right: pxToRem(12);
width: pxToRem(361);
}
}
}