Files

86 lines
1.3 KiB
CSS

/* @group header */
#Chat {
/* height of visible part of #header */
padding-top: 22px;
}
#header {
color: #FFF;
cursor: default;
font-family: helvetica, sans-serif;
overflow: hidden;
position: fixed;
top: 0px;
left: 0px;
z-index: 5;
width: 100%;
height: 49px;
text-shadow: #000 0px 2px 1px;
}
#header_bar {
background-repeat: repeat-x;
background-position: top center;
width: 100%;
height: 49px;
}
#header_bar .left {
font-size: 21px;
/*letter-spacing: 1px;*/
position: fixed;
top: 8px;
left: 11px;
}
#header_bar .right {
font-size: 16px;
letter-spacing: 0px;
position: fixed;
top: 11px;
right: 10px;
}
/* @group toggle */
#toggle_hide {
background: url("../../../images/_headers/toggle-hide.png") no-repeat top left;
cursor: pointer;
position: fixed;
top: 3px;
left: 3px;
width: 14px;
height: 10px;
visibility: hidden;
z-index: 6;
}
#header:hover #toggle_hide {
visibility: visible;
}
#header #toggle_hide:hover {
background-image: url("../../../images/_headers/toggle-hide-hover.png");
}
#toggle_show {
cursor: pointer;
background: url("../../../images/_headers/toggle-show.png") no-repeat top left;
position: fixed;
top: 3px;
left: 3px;
width: 14px;
height: 10px;
z-index: 6;
}
#header #toggle_show:hover {
background-image: url("../../../images/_headers/toggle-show-hover.png");
}
/* @end */
/* @end */