You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.0 KiB
SCSS

.alert-window {
position: fixed;
width: 300px;
z-index: 10002;
right: 20px;
bottom: 0px;
.alert {
&::before {
position: relative;
top: -15px;
left: -15px;
display: block;
height: 2px;
width: 0;
transition: inherit;
}
&.alert-info {
color: $info;
}
&.alert-warning {
color: $warning;
}
&.alert-success {
color: $success;
}
&.alert-danger {
color: $danger;
}
&.animate {
&.alert-info::before {
background-color: lighten($info, 25%);
}
&.alert-warning::before {
background-color: lighten($warning, 25%);
}
&.alert-success::before {
background-color: lighten($success, 25%);
}
&.alert-danger::before {
background-color: lighten($danger, 25%);
}
&::before {
width: calc(100% + 50px);
}
}
background-color: var(--bs-body-bg);
border: 0;
border-left: 5px solid !important;
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25), 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
strong {
text-transform: uppercase;
}
p {
padding: 10px 0px 0px;
}
}
}