1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/source/app/stylesheets/board.css
2014-04-08 20:14:28 +02:00

46 lines
849 B
CSS

/*
Jappix - An open social platform
This is the board CSS stylesheet for Jappix
-------------------------------------------------
License: AGPL
Author: Valérian Saliou
*/
#board .one-board {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
height: 20px;
z-index: 10000;
font-size: 0.92em;
padding: 6px 8px 5px 8px;
-moz-box-shadow: 0 0 8px #5c5c5c;
-webkit-box-shadow: 0 0 8px #5c5c5c;
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;
}