-
Notifications
You must be signed in to change notification settings - Fork 0
/
media-queries.scss
64 lines (38 loc) · 1.68 KB
/
media-queries.scss
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
/* =============================================================================
* Media queries for responsive design.
* These follow after primary styles so they will successfully override.
=============================================================================== */
@media all and (orientation:portrait) {
/* ===[ Style adjustments for portrait mode goes here ]=== */
}
@media all and (orientation:landscape) {
/* ===[ Style adjustments for landscape mode goes here ]=== */
}
/** Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
* consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/
*/
@media screen and (max-device-width: 480px) {
/* ===[ Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust ]=== */
/* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}
/* iPad Portrait/Browser */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
/* ===[ Mobile/Browser ]=== */
@media only screen and (max-width: 767px) {
}
/* ===[ Mobile Landscape/Browser ]=== */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}
/* ===[ Anything smaller than standard 960 ]=== */
@media only screen and (max-width: 959px) {
}
/* iPad Portrait Only */
@media only screen and (min-width: 768px) and (max-width: 991px) and (max-device-width: 1000px) {
}
/* ===[ Mobile Only ]=== */
@media only screen and (max-width: 767px) and (max-device-width: 1000px) {
}
/* ===[ Mobile Landscape Only ]=== */
@media only screen and (min-width: 480px) and (max-width: 767px) and (max-device-width: 1000px) {
}