File: /home/demo/public_html/roofleak/assets/scss/elements/_message.scss
.ld-msg-close {
display: inline-flex;
width: 34px;
height: 34px;
padding: 0;
margin-top: -17px;
position: absolute;
top: 50%;
right: 30px;
border: none;
background: none;
align-items: center;
justify-content: center;
font-size: 38px;
line-height: 1;
color: #000;
opacity: 0.4;
transition: opacity 0.3s;
span {
display: inline-block;
}
&:hover {
opacity: 1;
}
}
.ld-msg-icon {
display: inline-flex;
width: 34px;
height: 34px;
margin-right: 26px;
border: 1.2px solid;
border-radius: 50em;
align-items: center;
justify-content: center;
font-size: 30px;
}
.ld-msg-txt {
h5 {
margin: 0;
font-size: 18px;
font-weight: 600;
line-height: 1.5em;
color: #34495E;
}
}
.ld-msg-inner {
display: flex;
flex-flow: row wrap;
align-items: center;
}
.ld-msg {
padding: 20px 40px 20px 20px;
margin-bottom: 30px;
position: relative;
background-color: #F8FAFC;
&:after {
content: '';
display: inline-block;
width: 100%;
height: 2.5px;
position: absolute;
bottom: 0;
left: 0;
opacity: 0.3;
}
}
.ld-msg-success {
$color: #63DBC1;
&:after {
background-color: $color;
opacity: 0.5;
}
.ld-msg-icon {
color: $color;
}
}
.ld-msg-warning {
$color: #F2C223;
&:after {
background-color: $color;
}
.ld-msg-icon {
color: $color;
}
}
.ld-msg-error {
$color: #E33847;
&:after {
background-color: $color;
}
.ld-msg-icon {
color: $color;
}
}