forked from JacintoDesign/responsive-media-queries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (49 loc) · 1.48 KB
/
style.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
/* -------------------- Media Queries ----------------------- */
/* Monitor - No Bookmarks Bar */
@media screen and (min-width: 1800px) and (min-height: 938px) {
}
/* Monitor - Fullscreen */
@media screen and (min-width: 1800px) and (min-height: 1000px) {
}
/* Laptop - Bookmarks Bar */
@media screen and (max-width: 1800px) {
}
/* Laptop - No Bookmarks Bar */
@media screen and (min-width: 1300px) and (max-width: 1799px) and (min-height: 760px) {
}
/* Laptop - Fullscreen */
@media screen and (min-width: 1300px) and (max-width: 1799px) and (min-height: 800px) {
}
/* Laptop - 1366 x 768 - Bookmarks Bar */
@media screen and (width: 1366px) {
}
/* Laptop - 1366 x 768 - No Bookmarks Bar */
@media screen and (width: 1366px) and (min-height: 720px) {
}
/* Laptop - 1366 x 768 - Fullscreen */
@media screen and (width: 1366px) and (min-height: 759px) {
}
/* iPad - Horizontal */
@media screen and (min-width: 900px) and (max-width: 1025px) {
}
/* iPad */
@media screen and (max-width: 769px) {
}
/* Large Smartphone (Vertical) */
@media screen and (max-width: 600px) {
}
/* Large Smartphone (Horizontal) */
@media screen and (max-width: 850px) and (max-height: 500px) {
}
/* iPhone X - Horizontal*/
@media screen and (max-width: 724px) and (max-height: 376px) {
}
/* iPhone X */
@media screen and (max-width: 376px) {
}
/* iPhone 6/7/8 */
@media screen and (max-width: 376px) and (max-height: 668px) {
}
/* iPhone 6/7/8 - Horizontal */
@media screen and (max-width: 668px) and (max-height: 376px) {
}