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

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

Added Dojo 1.9.3 release.

File size: 2.8 KB
Line 
1.hide {
2        display: none !important;
3}
4
5.center {
6        float: left;
7        height: 100%;
8        width:69.8%;
9}
10
11.showOnTablet {
12        display: block !important;
13}
14
15.hideOnTablet {
16        display: none !important;
17}
18
19.left {
20        float: left;
21        width:30%;
22        border-right:1px solid black;
23        background-color: #C5CCD3;
24        z-index:100;   
25        height: 100%;
26}
27
28/* Phone */
29@media screen and (max-width: 560px) {
30
31        .left {
32                float: left;
33                width:0;
34        }
35        .center {
36                float: left;
37                width: 99.6%;
38        }
39        .showOnPhone {
40                display: block !important;
41        }
42        .hideOnPhone {
43                display: none !important;
44        }
45}
46
47/* portrait mode */
48@media only screen and (orientation: portrait) {
49
50
51        .left {
52                float: left;
53                width:0;
54        }
55        .center {
56                float: left;
57                width: 99.6%;
58        }
59        .showOnPhone {
60                display: block !important;
61        }
62        .hideOnPhone {
63                display: none !important;
64        }
65}
66
67
68html,body {
69        width: 100%;
70        height: 100%;
71}
72
73button.baseBtn {
74        -webkit-background-clip: padding-box;
75        -webkit-box-align: center;
76        background-clip: padding-box;
77        border-style: solid;
78        border-width: 1px;
79        color: black;
80        font-family: 'Helvetica Neue', HelveticaNeue, Helvetica-Neue, Helvetica, 'BBAlpha Sans';
81        font-size: 18px;
82        font-weight: bold;
83        vertical-align: middle;
84        margin: 10px;
85        height: 34px;
86        border-bottom-left-radius: 7px;
87        border-bottom-right-radius: 7px;
88        border-top-left-radius: 7px;
89        border-top-right-radius: 7px;
90        width: 240px;
91}
92
93button.whiteBtn{
94        background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(white), color-stop(0.06, #f2f2f2), to(#b7b7b7));
95        border-color: #979797;
96        border-bottom-color: #727272;
97}
98
99button.whiteBtnSelected{
100        background-image: -webkit-gradient(linear, 0% 0, 0% 100%, from(#ffffff), color-stop(0.06, #bbbbbb), to(#fcfcfc));
101        border-color: #979797;
102        border-bottom-color: #727272;
103}
104
105#header button {
106        position:absolute;
107        margin:0;
108}
109
110#navButton {
111        width:60px;
112}
113
114#loadDiv {
115        position:absolute;
116        left:0;
117        top:0;
118        width:100%;
119        height:100%;
120        z-index:999;
121}
122#loadDiv {
123        display:table;
124        font-size: 20px;
125        text-align:center;
126        background-color:white;
127}
128#loadDiv span {
129        display:table-cell;
130        vertical-align:middle;
131}
132
133body .mblProgContainer {
134        top:45%;
135        height: 45px;
136        width: 140px;
137        margin-left:-70px;
138        background-color: #2A2A28;
139        border-style: solid;
140        border-width: 2px;
141        border-color: #666666;
142        border-radius: 0.4em;
143        -webkit-border-radius: 0.4em;
144        -moz-border-radius: 0.4em;
145}
146
147body .mblProgContainer > div {
148        height: 100%;
149        width: 100%;
150        line-height: 45px;
151        vertical-align: middle;
152        font-size: 20px;
153        color: #c2c2c2;
154}
155
156body .mblProg {
157        left: 3px;
158        top: 3px;
159}
160
161body .mblProgContainer > div::after {
162        padding-left: 42px;
163        content: "Updating...";
164}
165
166#jsContent, #htmlContent {
167        padding-left:2px;
168}
169
170@media screen and (max-width: 600px) {
171        #jsContent, #htmlContent {
172                font-size: 14px;
173        }
174}
175
176.hidden {
177        display:none;
178}
179
180/*
181div .navPane {
182        width:250px;
183        border-right:1px solid black;
184        background-color: #C5CCD3;
185        z-index:100;
186}
187*/
Note: See TracBrowser for help on using the repository browser.