-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphoto.css
More file actions
48 lines (41 loc) · 835 Bytes
/
Copy pathphoto.css
File metadata and controls
48 lines (41 loc) · 835 Bytes
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
/*Mobile first view*/
#row{
display: flex;
flex-wrap: wrap;
padding: 0 12px;
vertical-align: middle;
}
.column{
margin-top:0;
max-width: 100%;
vertical-align:middle;
}
.column img{
padding-bottom: 10px;
width: 100%;
}
@media only screen and (min-width:600px){
.column {
max-width: 100%;
padding: 0 9px;
}
#row{
padding: 0 9px;
}
}
/*Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width:768px){
.column {
max-width: 50%;
padding: 0 6px;
}
#row{
padding: 0 6px;
}
}
/*Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width:1200px){
.column {
max-width: 25%;
}
}