]> git.proxmox.com Git - sencha-touch.git/blame - src/examples/touchtomatoes/resources/sass/_windows.scss
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / touchtomatoes / resources / sass / _windows.scss
CommitLineData
c4685c84
TL
1@mixin query-lumia-920 {
2 @media only screen and (min-device-width : 768px) and (max-device-width : 1280px) {
3 @content;
4 }
5}
6
7@mixin query-lumia-920-landscape {
8 @media only screen and (orientation: landscape) and (min-device-width : 768px) and (max-device-width : 1280px) {
9 @content;
10 }
11}
12
13.x-ie {
14
15 .x-toolbar {
16 background-color: #f7f7f7;
17 .x-button .x-button-icon {
18 height: 1.3em;
19 }
20 }
21 .grid .x-list-item {
22 width: 50%;
23
24 @include query-lumia-920 {
25 width: 50%;
26 }
27 }
28
29 .moviedetails {
30 .title {
31 @include query-lumia-920 {
32 font-size: 1.5em;
33 }
34 }
35 .img {
36 @include query-lumia-920 {
37 height: 75px;
38 }
39
40 @include query-lumia-920-landscape {
41 display: none;
42 }
43 }
44 ul.cast {
45 li {
46 @include query-lumia-920 {
47 font-size: .5em;
48 }
49 }
50 }
51 }
52
53 .welcomeOverlay.x-panel {
54 background-color: rgba(0,0,0,.5);
55
56 .x-innerhtml {
57 .message {
58 font-size: 1em;
59 @include query-lumia-920 {
60 font-size: .8em;
61 }
62 }
63 }
64 }
65}