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

43 lines
741 B
SCSS

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