forked from akashdip2001/test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
55 lines (49 loc) · 1.05 KB
/
styles.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
#gallery {
line-height: 0;
-webkit-column-count: 5;
/* split it into 5 columns */
-webkit-column-gap: 5px;
/* give it a 5px gap between columns */
-moz-column-count: 5;
-moz-column-gap: 5px;
column-count: 2;
column-gap: 5px;
}
#gallery img {
width: 100% !important;
height: auto !important;
margin-bottom: 5px;
/* to match column gap */
filter: grayscale(100%);
}
#gallery img:hover {
filter: none;
}
@media (max-width: 1200px) {
#gallery {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
@media (max-width: 1000px) {
#gallery {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
@media (max-width: 800px) {
#gallery {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
@media (max-width: 400px) {
#gallery {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}