39 lines
759 B
SCSS
39 lines
759 B
SCSS
@import "client/common.scss";
|
|
|
|
#notification {
|
|
position:absolute;
|
|
left:30%;
|
|
padding:20px;
|
|
width:400px;
|
|
border:solid 2px #0B6672;
|
|
background-image:url(/assets/shared/bkg_overlay.png);
|
|
color:#fff;
|
|
z-index:999;
|
|
-webkit-box-shadow: 0px 0px 15px rgba(50, 50, 50, 1);
|
|
-moz-box-shadow: 0px 0px 15px rgba(50, 50, 50, 1);
|
|
box-shadow: 0px 0px 15px rgba(50, 50, 50, 1);
|
|
}
|
|
|
|
#notification h2 {
|
|
font-size: 1.5em;
|
|
color:#fff;
|
|
font-weight:200;
|
|
display:block;
|
|
border-bottom: solid 1px #fff;
|
|
margin-bottom:10px;
|
|
}
|
|
|
|
#notification p {
|
|
margin-bottom:20px;
|
|
|
|
.error-text {
|
|
display:inline-block;
|
|
}
|
|
}
|
|
|
|
#notification p .text-message {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|