-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (43 loc) · 724 Bytes
/
Copy pathstyles.css
File metadata and controls
57 lines (43 loc) · 724 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
html {
font-size: 12px;
}
body {
font-family: sans-serif;
font-size: 1rem;
line-height: 1.5rem;
background-color: white;
color: black;
margin: 0;
padding: 0;
}
.masonry {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-auto-rows: 200px;
grid-auto-flow: dense;
grid-gap: 1rem;
max-width: 1600px;
margin: 0 auto;
padding: 1rem;
}
.masonry div {
border-radius: .5rem;
padding: 1rem;
}
.small {
background-color: lightgrey;
}
.big {
background-color: lightpink;
grid-column: span 3;
grid-row: span 2;
}
.tall {
background-color: lightgoldenrodyellow;
grid-row: span 2;
}
.wide {
background-color: lightsteelblue;
grid-column: span 2;
grid-row: span 2;
}