source: Dev/branches/rest-dojo-ui/client/util/docscripts/cheat/cheat.css @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 2.3 KB
Line 
1@media print {
2        body,html {
3                margin:0; padding:0;
4                font-size:8pt;
5        }
6        #nav { display:none; }
7        #top { display:none; border:none; font-size:12pt; margin:0; padding:0; }
8        #container fieldset {
9                width:175px !important;
10                font-size:5pt !important;
11        }
12        #container legend {
13                font-weight:bold;
14                font-size:6pt !important;
15        }
16        #container span {
17                font-size:6pt !important;
18        }
19        #Key-Constants li {
20                font-size:5pt !important;
21                float:left !important;
22                width:65px !important;
23        }
24        #Key-Constants li.dblspan {
25                width:150px !important;
26        }
27}
28
29body {
30        font-size:11pt;
31}
32
33#nav { margin:0; padding:0; }
34#nav li { float:left; margin-right:10px; }
35#container {
36        margin:0 auto;
37}
38#nav li,
39#container li {
40        list-style-type:none;
41}
42
43#Key-Constants li {
44        float:left;
45        text-align:center;
46        font-size:8pt;
47        width:105px;
48}
49#Key-Constants li.dblspan {
50        width:210px;
51        margin-top:-4px;
52}
53#container #nodelist li,
54#container #function li {
55        margin:0; padding:0;
56        padding-right:10px;
57        float:left;
58}
59
60fieldset legend {
61/*      margin-left:14px; */
62        padding-left:7px;
63        padding-right:7px;
64}
65#container fieldset {
66        margin-top:15px;
67        margin-right:8px;
68        margin-bottom:-0.5em;
69        padding-top:0.25em;
70        width:220px;
71        border:0;
72        border-top:1px dotted #a7a7a7;
73}
74#container fieldset legend {
75        margin:0 auto;
76        text-align:center;
77        font-weight:bold;
78        color:#444;
79}
80#container ul {
81        margin:0; padding:0;
82}
83.f { float:right;
84        margin-top:8px;
85        margin-right:27px;
86}
87
88#top {
89        border:0;
90        border-top:1px dotted #666;
91        margin-bottom:-0.3em;
92}
93#top legend {
94        color:#666;
95        font-size:27pt;
96        font-weight:bold;
97}
98#key { display:none; }
99
100li {
101        padding:3px 0;
102        font-size:9pt;
103        color:#333;
104}
105.sig { margin-left:1px; color:#999; /* visibility:hidden; */}
106.showApi .sig { color:#333; }
107
108.dijitInline {
109        /*  To inline block elements.
110                Similar to InlineBox below, but this has fewer side-effects in Moz.
111                Also, apparently works on a DIV as well as a FIELDSET.
112        */
113        display:-moz-inline-box;                /* FF2 */
114        display:inline-block;                   /* webkit and FF3 */
115        #zoom: 1; /* set hasLayout:true to mimic inline-block */
116        #display:inline; /* don't use .dj_ie since that increases the priority */
117        border:0;
118        padding:0;
119        vertical-align:top;
120        #vertical-align: auto;  /* makes TextBox,Button line up w/native counterparts on IE6 */
121}
122
123#version { position:absolute; right:18px; top:10px; color:#a7a7a7; font-size:9pt; }
Note: See TracBrowser for help on using the repository browser.