-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
39 lines (33 loc) · 699 Bytes
/
styles.css
File metadata and controls
39 lines (33 loc) · 699 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
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 300;
margin: 8px;
}
h1 {
text-transform: uppercase;
font-weight: 300;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
main {
display: grid;
grid-gap: 30px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-auto-rows: max-content;
grid-auto-flow: row dense;
}
.article h2 {
font-family: Georgia, 'Times New Roman', Times, serif;
}
.article a,
.article a:visited {
text-decoration: none;
color: inherit;
}
.article img {
width: 100%;
}