source: Dev/trunk/src/client/dojox/app/tests/mediaQuery3ColumnApp/css/mediaQuery3ColumnApp.css

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 3.9 KB
Line 
1.hide {
2        display: none !important;
3}
4
5.center {
6        float: left;
7        height: 100%;
8        width: 59.7%;
9}
10
11.hideOnTablet {
12        display: none !important;
13}
14
15.hideOnLarge {
16        display: none !important;
17}
18
19.left {
20        float: left;
21        width: 20% !important;
22        border-right:1px solid black;
23        background-color: #C5CCD3;
24        z-index: 100;   
25        height: 100%;
26}
27
28.right {
29        float: right;
30        width: 20%;
31        border-left:1px solid black;
32        background-color: #C5CCD3;
33        z-index: 100;   
34        height: 100%;
35}
36
37/* Medium */
38@media screen and (max-width: 860px) {
39
40        .left {
41                float: left;
42                width:20%;
43        }
44
45        .center {
46                float: left;
47                width: 79.6%;
48        }
49        .showOnMedium {
50                display: block !important;
51        }
52
53        .hideOnMedium {
54                display: none !important;
55        }
56}
57
58
59/* Small */
60@media screen and (max-width: 560px) {
61
62        .left {
63                float: left;
64                width:0;
65        }
66
67        .center {
68                float: left;
69                width: 99.6%;
70        }
71
72        .showOnSmall {
73                display: block !important;
74        }
75        .hideOnSmall {
76                display: none !important;
77        }
78        .hideOnPhone {
79                display: none !important;
80        }
81}
82
83/*
84@media only screen and (orientation: portrait) {
85
86        .left {
87                float: left;
88                width:0px;
89        }
90
91        .center {
92                float: left;
93                width: 99.6%;
94        }
95
96        .hideOnPhone {
97                display: none !important;
98        }
99
100        .hideOnTablet {
101                display: block !important;
102        }
103
104}
105
106@media only screen and (orientation: landscape) and (max-width: 568px) {
107        .center {
108                float: left;
109                width: 80%;
110                height: 100%;
111               
112        }
113
114        .left {
115                float: left;
116                width:20%;
117                border-right:1px solid black;
118                background-color: #C5CCD3;
119                z-index:100;   
120                height: 100%;
121        }
122
123}
124*/
125/*@media only screen and (device-width: 480px) and (orientation: landscape) and (resolution: 163dpi) { */
126        /* CSS3 Rules for XX iPhone in Portrait Orientation */
127/*@media only screen and (device-width: 568px) and (orientation: landscape) {
128        .center {
129                float: left;
130                width: 300px;
131                height: 100%;
132               
133        }
134
135        .left {
136                float: left;
137                width:100px;
138                border-right:1px solid black;
139                background-color: #C5CCD3;
140                z-index:100;   
141                height: 100%
142        }
143}
144*/
145
146
147
148html,body {
149        width: 100%;
150        height: 100%;
151}
152
153button.baseBtn {
154        -webkit-background-clip: padding-box;
155        -webkit-box-align: center;
156        background-clip: padding-box;
157        border-style: solid;
158        border-width: 1px;
159        color: black;
160        font-family: 'Helvetica Neue', HelveticaNeue, Helvetica-Neue, Helvetica, 'BBAlpha Sans';
161        font-size: 18px;
162        font-weight: bold;
163        vertical-align: middle;
164        margin: 10px;
165        height: 34px;
166        border-bottom-left-radius: 7px;
167        border-bottom-right-radius: 7px;
168        border-top-left-radius: 7px;
169        border-top-right-radius: 7px;
170        width: 240px;
171}
172
173button.whiteBtn{
174        background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(white), color-stop(0.06, #f2f2f2), to(#b7b7b7));
175        border-color: #979797;
176        border-bottom-color: #727272;
177}
178
179button.whiteBtnSelected{
180        background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#ffffff), color-stop(0.06, #bbbbbb), to(#fcfcfc));
181        border-color: #979797;
182        border-bottom-color: #727272;
183}
184
185#header button {
186        position:absolute;
187        margin:0;
188}
189
190#navButton {
191        width:60px;
192}
193
194#loadDiv {
195        position:absolute;
196        left:0;
197        top:0;
198        width:100%;
199        height:100%;
200        z-index:999;
201}
202#loadDiv {
203        display:table;
204        font-size: 20px;
205        text-align:center;
206        background-color:white;
207}
208#loadDiv span {
209        display:table-cell;
210        vertical-align:middle;
211}
212
213body .mblProgContainer {
214        top:45%;
215        height: 45px;
216        width: 140px;
217        margin-left:-70px;
218        background-color: #2A2A28;
219        border-style: solid;
220        border-width: 2px;
221        border-color: #666666;
222        border-radius: 0.4em;
223        -webkit-border-radius: 0.4em;
224        -moz-border-radius: 0.4em;
225}
226
227body .mblProgContainer > div {
228        height: 100%;
229        width: 100%;
230        line-height: 45px;
231        vertical-align: middle;
232        font-size: 20px;
233        color: #c2c2c2;
234}
235
236body .mblProg {
237        left: 3px;
238        top: 3px;
239}
240
241body .mblProgContainer > div::after {
242        padding-left: 42px;
243        content: "Updating...";
244}
245
246#jsContent, #htmlContent {
247        padding-left:2px;
248}
249
250@media screen and (max-width: 600px) {
251        #jsContent, #htmlContent {
252                font-size: 14px;
253        }
254}
255
256.hidden {
257        display:none;
258}
259
260/*
261div .navPane {
262        width:250px;
263        border-right:1px solid black;
264        background-color: #C5CCD3;
265        z-index:100;
266}
267*/
Note: See TracBrowser for help on using the repository browser.