1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

43 lines
741 B
SCSS
Raw Normal View History

2017-05-16 13:34:00 +02:00
.error-notify {
2018-08-05 18:39:11 +02:00
width: 420px;
2017-05-16 13:34:00 +02:00
border-bottom: 7px solid #7c0002;
background-color: rgba(255,0,0,0.8);
color: #fff;
border-radius: 2px;
padding: 16px;
position: fixed;
display: table;
2018-08-05 18:39:11 +02:00
z-index: 999;
2017-05-16 13:34:00 +02:00
right: 30px;
top: 20px;
.error-icon {
display: table-cell;
width: 60px;
2018-08-05 18:39:11 +02:00
padding: 8px 10px 0 10px;
2017-05-16 13:34:00 +02:00
text-align: center;
vertical-align: top;
> i {
2018-08-05 18:39:11 +02:00
font-size: 3em;
2017-05-16 13:34:00 +02:00
border-radius: 100%;
}
}
.error-message{
display: table-cell;
> p {
line-height: 1.2;
margin-top: 6px;
}
}
2018-08-05 18:39:11 +02:00
.error-dismiss {
position: absolute;
right: 5px;
top: 0px;
cursor: pointer;
}
2017-05-16 13:34:00 +02:00
}