View difference between Paste ID: VYMeKqtV and
SHOW: | | - or go back to the newest paste.
1-
1+
/* Start Apple Styles */
2
3
/*
4
These styles support Apple products display of CSS.
5
6
NOTES: (orientation:landscape), (orientation:portrait) can be used
7
8
Uses CSS3.
9
10
*/
11
12
/* iPad [portrait + landscape] */
13
@media only screen and (min-device-width:768px) and (max-device-width:1024px)
14
{
15
16
}
17
18
/* iPhone 4 [portrait + landscape] */
19
@media only screen and (resolution:326dpi)
20
{
21
22
}
23
24
/* iPhone 3 [portrait + landscape] */
25
@media only screen and (max-device-width:480px)
26
{
27
28
}
29
30
/* iPod Touch and older [portrait + landscape] */
31
@media only screen and (resolution:326dpi)
32
{
33
34
}
35
36
/* End Apple Styles */