mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
64 lines
1.1 KiB
SCSS
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);
|
|
}
|
|
}
|
|
}
|