Admin CP CSS

Code:
/* header */
 
#header
{
background: @primaryMedium;
position: fixed;
width: 100%;
z-index: 10;
}
 
.Touch #header
{
position: absolute;
}
 
/* logo line */
 
#logoLine
{
text-align: center;
border-bottom: 1px solid #1d74b3;
overflow: hidden; zoom: 1;
}
 
#logoLine .pageWidth
{
position: relative;
}
 
#version,
#logoutLink
{
position: absolute;
top: 17px;
left: 0px;
font-size: 11px;
color: @primaryLighter;
padding: 0 11px;
/*font-family: Eurostile, @body.font-family;*/
}
 
#logoLine a
{
color: @primaryLighter;
}
 
#logoLine a:hover
{
color: @primaryLightest;
text-decoration: none;
}
 
#logoutLink
{
left: auto;
right: 0px;
}
 
#logo
{
width: 100px;
}
 
/* tab navigation */
 
#tabsNav
{
background: transparent url('@imagePath/xenforo/gradients/acp-banner-shadow.png') no-repeat top center;
padding-top: 10px;
border-top: 1px solid @primaryDark;
}
 
#tabsNav .pad
{
background: @primaryLight;
height: 7px;
border-bottom: 1px solid @primaryMedium;
zoom: 1;
}
 
.acpTabs
{
overflow: hidden; zoom: 1;
height: 22px;
font-size: 11px;
}
 
.acpTabs li
{
float: left;
}
 
.acpTabs li.logout
{
float: right;
}
 
.acpTabs li.logout a
{
text-transform: none;
}
 
.acpTabs li a
{
display: block;
height: 20px;
line-height: 20px;
padding: 3px 11px 0;
color: @primaryLight;
border-top-left-radius: 2px;
border-top-right-radius: 5px;
outline: 0;
}
 
.acpTabs li.active a,
.acpTabs li.active:hover a
{
background: @primaryLight;
color: @primaryLightest;
padding: 2px 10px 0;
border: 1px solid @primaryDarker;
border-bottom: none;
font-weight: bold;
/*text-shadow: 0px 0px 3px @primaryMedium;*/
}
 
.acpTabs li:hover a,
.acpTabs li.Popup:hover a.PopupControl.PopupClosed
{
background-color: @primaryMedium;
color: @primaryLighterStill;
text-decoration: none;
}
 
.acpTabs li#AdminSearch a.PopupControl .arrowWidget
{
background: transparent url('@imagePath/xenforo/widgets/acp-search-sprite.png') no-repeat right 0px;
}
 
.acpTabs li#AdminSearch a.PopupControl.PopupOpen .arrowWidget
{
background-position: right -13px;
}
 
.acpTabs li.separated
{
float: right;
}
 
Top Bottom