1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/* helpbase.css */
body{
font-family: Helvetica, Arial, sans-serif;
margin:0px;
padding:5px;
background: #FFFAF0;
}
.par{
text-align: justify;
font-family: Helvetica, sans-serif;
font-size: 1em;
}
.list{
text-align: justify;
font-family: Helvetica, sans-serif;
font-size: 1em;
margin-left: 0;
}
#welcome{
text-align: center;
font-family: serif;
color: #fefefe;
font-size: 1.5em;
}
h1{color: #A52A2A;}
h2{color: #A52A2A;}
h3{color: #1C86EE;}
h4{color: #AA5500;}
/** tabs **/
div.tabContent {
display:none;
}
ul.tabs {
margin:20px 0 0 0 ;
padding:0px;
border-bottom:1px solid #D2D2D2;
height:1.8em;
}
ul.tabs li {
background:url("tab-left.png") left top no-repeat;
padding-left:4px;
float:left;
margin:0;
list-style-type:none;
}
ul.tabs a {
background:url("tab-right.png") right top no-repeat;
padding:2px 12px;
border-bottom:1px solid #D2D2D2;
text-decoration:none;
display:block;
color:#333;
font-size:13px;
}
ul.tabs li.current a, ul.tabs a:hover {
background-position:100% -150px;
border-bottom:1px solid #BF0000;
}
ul.tabs li.current {
background-position:0 -150px;
}
|