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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/* $Id$ */
/* base.css - resets default properties */
html, body {
margin: 0;
padding: 0;
}
/* this will make flyouts position correctly from the bottom in internet explorer */
/* needs some heavy visual qa, so disabling for now
body {
position: relative;
}
*/
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
ol, ul, li, dl, dt, dd,
table, td, form, fieldset,
abbr, code {
margin: 0;
border: 0;
padding: 0;
font-size: 1em;
font-weight: normal;
}
a { text-decoration: none; }
ol, ul { list-style: none; }
a img, :link img, :visited img { border: 0; }
.clr,
.clr-l,
.clr-r {
overflow: hidden;
clear: both;
width: 1px;
height: 1px;
margin: 0 -1px -1px 0;
border: 0;
padding: 0;
font-size: 0;
line-height: 0;
}
.clr-l {
clear: left;
}
.clr-r {
clear: right;
}
/* .pkg class wraps enclosing block element around inner floated elements */
.pkg:after {
content: " ";
display: block;
visibility: hidden;
clear: both;
height: 0.1px;
font-size: 0.1em;
line-height: 0;
}
.pkg { display: inline-block; }
/* no ie mac \*/
* html .pkg { height: 1%; }
.pkg[class] { height: auto; }
.pkg { display: block; }
/* */
.hidden { display: none !important; }
.invisible {
display: block !important;
visibility: hidden !important;
position: absolute !important;
left: 0 !important;
top: 0 !important;
width: 0 !important;
height: 0 !important;
font-size: 0.1px !important;
line-height: 0 !important;
}
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.right { float: right; }
.left {
float: left;
display: inline; /* ie hack */
}
.center {
margin-left: auto;
margin-right: auto;
}
|