-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid-gallery.css
More file actions
58 lines (47 loc) · 913 Bytes
/
grid-gallery.css
File metadata and controls
58 lines (47 loc) · 913 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
49
50
51
52
53
54
55
56
57
58
body {
}
section.grid-gallery {
margin: 0 auto;
width: 75%;
margin-top: 30px;
display: grid;
grid-template-columns: 50% 50%;
grid-column-gap: 10px;
grid-row-gap: 10px;
}
section.grid-gallery .item {
width: 100%;
}
section.grid-gallery .t1 {
grid-column-start: 1;
}
section.grid-gallery .t2 {
grid-column-start: 2;
}
section.grid-gallery .l {
grid-column-start: 1;
grid-column-end: 3;
}
section.old-school-gallery {
font-size: 0;
margin: 0 auto;
width: 75%;
margin-top: 30px;
}
section.old-school-gallery > * {
box-sizing: border-box;
}
section.old-school-gallery img {
max-width: 100%;
margin-bottom: 10px;
}
section.old-school-gallery .t1 {
padding-right: 5px;
display: inline-block;
}
section.old-school-gallery .t2 {
padding-left: 5px;
}
section.old-school-gallery .t1 , section.old-school-gallery .t2 {
width: 50%;
}