48 lines
797 B
CSS
48 lines
797 B
CSS
/*
|
|
|
|
Jappix - An open social platform
|
|
This is the board CSS stylesheet for Jappix
|
|
|
|
-------------------------------------------------
|
|
|
|
License: AGPL
|
|
Author: Vanaryon
|
|
Last revision: 26/08/11
|
|
|
|
*/
|
|
|
|
#board .one-board {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 18px;
|
|
z-index: 10000;
|
|
font-size: 0.92em;
|
|
padding: 6px 8px;
|
|
box-shadow: 0 0 8px #5c5c5c;
|
|
-moz-box-shadow: 0 0 8px #5c5c5c;
|
|
-webkit-box-shadow: 0 0 8px #5c5c5c;
|
|
}
|
|
|
|
#board .one-board:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#board .one-board.visible {
|
|
display: block;
|
|
}
|
|
|
|
#board .one-board.error {
|
|
background-color: rgb(241,160,160);
|
|
background-color: rgba(241,160,160,0.9);
|
|
color: #420c0c;
|
|
}
|
|
|
|
#board .one-board.info {
|
|
background-color: rgb(248,246,186);
|
|
background-color: rgba(248,246,186,0.9);
|
|
color: #2f2a02;
|
|
}
|