-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
60 lines (49 loc) · 824 Bytes
/
index.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
56
57
58
59
60
body {
margin: 0;
padding: 0;
font-size: 18px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.8rem;
}
h3 {
font-size: 1.6rem;
}
h4 {
font-size: 1.4rem;
}
h5 {
font-size: 1.2rem;
}
h6 {
font-size: 1rem;
}
.page-layout {
margin: 2rem 0 0;
display: grid;
grid-template-columns: 1rem 1fr 1rem;
}
image-gallery,
.heading-section {
grid-column: 2 / 3;
}
@media screen and (min-width: 40rem) {
.page-layout {
grid-template-columns: minmax(1rem, 1fr) minmax(0, 600px) minmax(0, 600px) minmax(
1rem,
1fr
);
}
image-gallery {
grid-column: 2 / 3;
}
.heading-section {
grid-column: 3 / 4;
padding: 1rem;
}
}