Added alert module

This commit is contained in:
Paul-Vincent Roll
2016-04-01 22:05:09 +02:00
parent af0ea4d555
commit 06271678a6
11 changed files with 1063 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
/* Based on work by http://tympanus.net/codrops/licensing/ */
/* Common, default styles for the notification box */
.ns-box {
position: fixed;
background: #fff;
padding: 22px;
line-height: 1.4;
z-index: 1000;
pointer-events: none;
color: black;
font-size: 70%;
}
.ns-box.ns-show {
pointer-events: auto;
}
.ns-box a {
color: inherit;
opacity: 0.7;
font-weight: 700;
}
.ns-box p {
margin: 0;
}
.ns-box.ns-show,
.ns-box.ns-visible {
pointer-events: auto;
}