source: tmcsimulator/trunk/webapps/EInotebook/cad/cadpad.css @ 359

Revision 359, 1.3 KB checked in by jdalbey, 7 years ago (diff)

Add EINotebook source

  • Property svn:executable set to *
Line 
1/* Landscape mode (default)
2#cadpadwrap
3{
4        margin:0 auto;
5        width:900px;
6        position:relative;
7        overflow:hidden;
8        text-align:left;
9        background:#fff;
10}
11
12#cadpadcontent
13{
14        float:left;
15        width:900px;
16        background:#fff;
17        position:relative;
18        left:768px;
19}
20
21#cadpadmain
22{
23        float:left;
24        width:608px;
25        position:relative;
26        right:738px;
27}
28
29#cadpadside
30{
31        float:right;
32        width:116px;
33        position:relative;
34        right:788px;
35        padding:20px 0;
36}
37
38#cadpadsidea,
39#cadpadsideb,
40#cadpadsidec
41{
42        clear:left;
43        float:left;
44        width:116px;
45}
46
47#cadpadfooter
48{
49        clear:both;
50        float:left;
51        width:824px;
52        border-top:1px solid #000;
53        background:#ddd;
54}
55
56#cadpadfooter p
57{
58        padding:20px 30px;
59}
60*/
61/* portrait mode
62@media only screen and (orientation:portrait)
63{*/
64        #cadpadheader,
65        #cadpadwrap,
66        #cadpadfooter 
67        {
68                width:668px;
69        }
70       
71        #cadpadcontent 
72        {
73                left:0;
74                background:#fff;
75        }
76       
77        #cadpadmain 
78        {
79                float:left;
80                width:668px;
81                position:relative;
82                right:0;
83                left:10px;
84        }
85       
86        #cadpadside 
87        {
88                clear:left;
89                float:left;
90                width:668px;
91                right:0;
92        }
93       
94        #cadpadsidea 
95        {
96                clear:none;
97                width:183px;
98                float:left;
99                position:relative;
100                left:60px;
101        }
102       
103        #cadpadsideb 
104        {
105                clear:none;
106                width:183px;
107                float:left;
108                position:relative;
109                left:90px;
110        }
111       
112        #cadpadsidec 
113        {
114                clear:none;
115                width:183px;
116                float:right;
117                position:relative;
118                right:0px;
119        }
120/*}*/
Note: See TracBrowser for help on using the repository browser.