mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
58 lines
1.2 KiB
SCSS
58 lines
1.2 KiB
SCSS
@use '../helpers/functions' as *;
|
|
|
|
aside[role='alert'],
|
|
aside[role='status'] {
|
|
position: relative;
|
|
padding: $spacer * 1.5 $spacer * 1.5 $spacer * 1.5 $spacer * 3.5;
|
|
margin-bottom: $spacer;
|
|
font-size: pxToRem(14);
|
|
line-height: pxToRem(21);
|
|
border-radius: $spacer * 0.5;
|
|
|
|
&:before {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
left: $spacer * 1.5;
|
|
top: $spacer * 1.5;
|
|
height: pxToRem(20);
|
|
width: $spacer;
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
}
|
|
|
|
aside[role='alert'] {
|
|
background-color: $warning-10;
|
|
color: $warning-70;
|
|
a {
|
|
color: $warning-70;
|
|
border-bottom: pxToRem(1) solid $warning-70;
|
|
}
|
|
&:before {
|
|
content: '\26A0';
|
|
font-size: pxToRem(12);
|
|
}
|
|
code {
|
|
color: $warning-70;
|
|
background-color: $warning-30;
|
|
}
|
|
}
|
|
aside[role='status'] {
|
|
background-color: $secondary-blue-10;
|
|
color: $secondary-blue-70;
|
|
a {
|
|
color: $secondary-blue-70;
|
|
border-bottom: pxToRem(1) solid $secondary-blue-70;
|
|
}
|
|
&:before {
|
|
content: '\24D8';
|
|
font-size: pxToRem(24);
|
|
}
|
|
code {
|
|
color: $secondary-blue-70;
|
|
background-color: $secondary-blue-30;
|
|
}
|
|
}
|