source: tmcsimulator/trunk/webapps/einotebook/cad/cadpad.css @ 397

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

Fix #140 to remove comment field from evaluations and #130 to make Current display full page width

  • 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        width: 100%;
70        }
71       
72        #cadpadcontent 
73        {
74                left:0;
75                background:#fff;
76        }
77       
78        #cadpadmain 
79        {
80                float:left;
81                width:668px;
82                position:relative;
83                right:0;
84                left:10px;
85        }
86       
87        #cadpadside 
88        {
89                clear:left;
90                float:left;
91                width:668px;
92                right:0;
93        }
94       
95        #cadpadsidea 
96        {
97                clear:none;
98                width:183px;
99                float:left;
100                position:relative;
101                left:60px;
102        }
103       
104        #cadpadsideb 
105        {
106                clear:none;
107                width:183px;
108                float:left;
109                position:relative;
110                left:90px;
111        }
112       
113        #cadpadsidec 
114        {
115                clear:none;
116                width:183px;
117                float:right;
118                position:relative;
119                right:0px;
120        }
121/*}*/
Note: See TracBrowser for help on using the repository browser.