2020-01-08 17:58:15 +00:00
|
|
|
|
.notices {
|
2019-11-04 13:09:44 +00:00
|
|
|
|
margin: 2rem 0;
|
|
|
|
|
position: relative;
|
2020-01-08 17:58:15 +00:00
|
|
|
|
border-radius: .125rem;
|
2019-11-04 13:09:44 +00:00
|
|
|
|
color: #fff;
|
2020-01-08 17:58:15 +00:00
|
|
|
|
padding: .3rem 0.5rem .3rem 2rem;
|
2020-01-25 08:18:02 +00:00
|
|
|
|
font-size: 0.95rem;
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&.warning {
|
2020-01-08 17:58:15 +00:00
|
|
|
|
border-top: 30px solid #f1b37e;
|
|
|
|
|
background: #fefaf5;
|
|
|
|
|
color: rgba(150, 90, 38, 0.995) !important;
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: '⚠️ Warning';
|
2020-01-08 17:58:15 +00:00
|
|
|
|
font-family: $title-font;
|
2020-01-25 08:18:02 +00:00
|
|
|
|
top: -26.5px;
|
|
|
|
|
left: 0.4rem;
|
|
|
|
|
height: 100%;
|
2020-01-08 17:58:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&.error {
|
2020-01-08 17:58:15 +00:00
|
|
|
|
border-top: 30px solid #d58181;
|
|
|
|
|
background: #fbeded;
|
|
|
|
|
color: rgba(132, 56, 56, 0.995) !important;
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: '❌ Error';
|
2020-01-08 17:58:15 +00:00
|
|
|
|
font-family: $title-font;
|
2020-01-25 08:18:02 +00:00
|
|
|
|
top: -26.5px;
|
|
|
|
|
left: 0.4rem;
|
|
|
|
|
height: 100%;
|
2020-01-08 17:58:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&.info {
|
2020-01-08 17:58:15 +00:00
|
|
|
|
border-top: 30px solid #6bb1e0;
|
|
|
|
|
background: #e6f3fb;
|
|
|
|
|
color: rgba(47, 103, 141, 0.995) !important;
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: 'ℹ️ Info';
|
2020-01-08 17:58:15 +00:00
|
|
|
|
font-family: $title-font;
|
2020-01-25 08:18:02 +00:00
|
|
|
|
top: -26.5px;
|
|
|
|
|
left: 0.4rem;
|
|
|
|
|
height: 100%;
|
2020-01-08 17:58:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&.success {
|
2020-01-08 17:58:15 +00:00
|
|
|
|
border-top: 30px solid #84c578;
|
|
|
|
|
background: #e8f7e6;
|
|
|
|
|
color: rgba(72, 125, 63, 0.995) !important;
|
2019-11-04 13:09:44 +00:00
|
|
|
|
|
2020-01-25 08:18:02 +00:00
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: '✔️ Success';
|
2020-01-08 17:58:15 +00:00
|
|
|
|
font-family: $title-font;
|
2020-01-25 08:18:02 +00:00
|
|
|
|
top: -26.5px;
|
|
|
|
|
left: 0.4rem;
|
|
|
|
|
height: 100%;
|
2020-01-08 17:58:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
|
}
|