-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiphone.css
95 lines (72 loc) · 2.02 KB
/
iphone.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
iPhone 6 in portrait & landscape
*/
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) {
/* Enter your style here */
}
/*
iPhone 6 in landscape
*/
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape) {
/* Enter your style here */
}
/*
iPhone 6 in portrait
*/
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {
/* Enter your style here */
}
/*
iPhone 6 Plus in portrait & landscape
*/
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) {
/* Enter your style here */
}
/*
iPhone 6 Plus in landscape
*/
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : landscape) {
/* Enter your style here */
}
/*
iPhone 6 Plus in portrait
*/
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {
/* Enter your style here */
}
/*
iPhone 5 & 5S in portrait & landscape
*/
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
/* Enter your style here */
}
/*
iPhone 5 & 5S in landscape
*/
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
/* Enter your style here */
}
/*
iPhone 5 & 5S in portrait
*/
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) {
/* Enter your style here */
}
/*
iPhone 2G-4S in portrait & landscape
*/
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Enter your style here */
}
/*
iPhone 2G-4S in landscape
*/
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) {
/* Enter your style here */
}
/*
iPhone 2G-4S in portrait
*/
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) {
/* Enter your style here */
}