-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhide.css
More file actions
49 lines (37 loc) · 1.61 KB
/
hide.css
File metadata and controls
49 lines (37 loc) · 1.61 KB
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
/* css för gömda/visade objekt beroende på fönsterbredd */
@media screen and (min-width: 0px) and (max-width: 979px) {
#content-big { display: none; } /* show it on small screens */
}
@media screen and (min-width: 980px) and (max-width: 9024px) {
#content-big { display: block; } /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 979px) {
#content-small { display: block; } /* show it on small screens */
}
@media screen and (min-width: 980px) and (max-width: 9024px) {
#content-small { display: none; } /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 1199px) {
#content-bigger { display: none; } /* show it on small screens */
}
@media screen and (min-width: 1200px) and (max-width: 9024px) {
#content-bigger { display: block; } /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 1199px) {
#content-smaller { display: block; } /* show it on small screens */
}
@media screen and (min-width: 1200px) and (max-width: 9024px) {
#content-smaller { display: none; } /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 767px) {
#content-header { display: none; } /* show it on small screens */
}
@media screen and (min-width: 768px) and (max-width: 9024px) {
#content-header { display: block; } /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 767px) {
#content-header-small { display: block; } /* show it on small screens */
}
@media screen and (min-width: 768px) and (max-width: 9024px) {
#content-header-small { display: none; } /* hide it elsewhere */
}