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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
@media print {
body,html {
margin:0; padding:0;
font-size:8pt;
}
#nav { display:none; }
#top { display:none; border:none; font-size:12pt; margin:0; padding:0; }
#container fieldset {
width:175px !important;
font-size:5pt !important;
}
#container legend {
font-weight:bold;
font-size:6pt !important;
}
#container span {
font-size:6pt !important;
}
#Key-Constants li {
font-size:5pt !important;
float:left !important;
width:65px !important;
}
#Key-Constants li.dblspan {
width:150px !important;
}
}
body {
font-size:11pt;
}
#nav { margin:0; padding:0; }
#nav li { float:left; margin-right:10px; }
#container {
margin:0 auto;
}
#nav li,
#container li {
list-style-type:none;
}
#Key-Constants li {
float:left;
text-align:center;
font-size:8pt;
width:105px;
}
#Key-Constants li.dblspan {
width:210px;
margin-top:-4px;
}
#container #nodelist li,
#container #function li {
margin:0; padding:0;
padding-right:10px;
float:left;
}
fieldset legend {
/* margin-left:14px; */
padding-left:7px;
padding-right:7px;
}
#container fieldset {
margin-top:15px;
margin-right:8px;
margin-bottom:-0.5em;
padding-top:0.25em;
width:220px;
border:0;
border-top:1px dotted #a7a7a7;
}
#container fieldset legend {
margin:0 auto;
text-align:center;
font-weight:bold;
color:#444;
}
#container ul {
margin:0; padding:0;
}
.f { float:right;
margin-top:8px;
margin-right:27px;
}
#top {
border:0;
border-top:1px dotted #666;
margin-bottom:-0.3em;
}
#top legend {
color:#666;
font-size:27pt;
font-weight:bold;
}
#key { display:none; }
li {
padding:3px 0;
font-size:9pt;
color:#333;
}
.sig { margin-left:1px; color:#999; /* visibility:hidden; */}
.showApi .sig { color:#333; }
.dijitInline {
/* To inline block elements.
Similar to InlineBox below, but this has fewer side-effects in Moz.
Also, apparently works on a DIV as well as a FIELDSET.
*/
display:-moz-inline-box; /* FF2 */
display:inline-block; /* webkit and FF3 */
#zoom: 1; /* set hasLayout:true to mimic inline-block */
#display:inline; /* don't use .dj_ie since that increases the priority */
border:0;
padding:0;
vertical-align:top;
#vertical-align: auto; /* makes TextBox,Button line up w/native counterparts on IE6 */
}
#version { position:absolute; right:18px; top:10px; color:#a7a7a7; font-size:9pt; }
|