style: add css rules for notifications (#7563)

This commit is contained in:
Frédéric Péters 2015-06-15 10:29:33 +02:00
parent 8147eddd0b
commit f22a9314da
1 changed files with 25 additions and 0 deletions

View File

@ -121,6 +121,31 @@ div#header h1 {
text-shadow: 0 2px 15px black;
}
/* notifications */
ul.messages {
position: fixed;
width: 30em;
top: 8px;
right: 10px;
padding: 0;
z-index: 2000;
margin-top: 1em;
list-style-type: none;
margin: auto;
background: #646464;
background: rgba(40, 40, 40, 0.95);
color: white;
text-shadow: 1px 1px 1px black;
border-radius: 10px;
box-shadow: 0 0 4px black;
}
ul.messages li {
padding: 1ex;
margin: 1ex;
}
/* main content */
div#main-content {