CSS for Messages

This commit is contained in:
2020-08-12 20:11:22 +02:00
parent 4120155a1c
commit 72c8febfc4
5 changed files with 139 additions and 1 deletions

View File

@@ -205,6 +205,39 @@ body {
font-size: 1em;
display: inline; }
.LP-Message {
display: flex;
flex-direction: row;
align-items: center;
background-color: #f9f9f9;
font-family: Montserrat, Helvetica, sans-serif;
border-radius: 3px;
font-weight: bold; }
.LP-Message--error .LP-Message__Icon {
background-color: #02979e;
background-image: url("/icons/error.png"); }
.LP-Message--warning .LP-Message__Icon {
background-color: #0047e7;
background-image: url("/icons/error.png"); }
.LP-Message--info .LP-Message__Icon {
background-color: #522719;
background-image: url("/icons/information.svg"); }
.LP-Message--success .LP-Message__Icon {
background-color: #6937ff;
background-image: url("/icons/success.svg"); }
.LP-Message--debug .LP-Message__Icon {
background-color: #046a2f;
background-image: url("/icons/debug.png"); }
.LP-Message .LP-Message__Icon {
background-size: 40px 40px;
background-repeat: no-repeat;
background-position: center;
height: 50px;
width: 50px;
filter: invert(1); }
.LP-Message .LP-Message__Text {
padding: 0 15px; }
.LP-Content {
padding: 35px; }