1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/templates/skin/synio/css/jquery.notifier.css
2012-05-22 23:41:11 +07:00

42 lines
1,000 B
CSS

/* --------------------------------------------
ВСПЛЫВАЮЩИЕ УВЕДОМЛЕНИЯ
-------------------------------------------- */
#notifier {
width: 250px;
position: fixed;
top: 10px;
right: 10px;
font-size: 11px;
line-height: 16px;
z-index: 9999;
/* IE 6 Fix */
_position: absolute;
_top: expression( eval(document.documentElement.scrollBottom) + 10 +"px" );
}
#notifier .n-box {
position: relative;
padding: 15px 20px 16px;
margin-bottom: 10px;
color: #fff;
background: #000;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
box-shadow: 0 0 5px rgba(0,0,0,.3);
opacity: 0.9; filter: alpha(opacity=80);
cursor: pointer;
}
#notifier .n-box h3 { color: #fff; font-size: 12px; font-weight: bold; margin-bottom: 3px; font-family: Verdana, sans-serif; }
#notifier .n-box p { margin: 0; }
#notifier .n-box.n-notice { background: #063573; color: #fff; }
#notifier .n-box.n-error { background: #850505; color: #fff; }