-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (61 loc) · 1.12 KB
/
style.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
61
html {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: -apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Open Sans',
'Helvetica Neue',
sans-serif
}
.content {
margin-left: auto;
margin-right: auto;
max-width: 40rem;
padding: 30px;
}
.content p {
line-height: 30px;
margin-bottom: 30px;
margin-top: 0;
}
.content p:first-of-type::first-letter {
font-size: 1.5em;
font-style: italic;
margin-bottom: -1em;
padding-bottom: 1em;
}
.content p:first-of-type::first-line {
font-size: 1.2em;
font-weight: 600;
}
.content h1,
.content h2,
.content h3 {
line-height: 30px;
margin-bottom: 30px;
}
.content h2 {
font-size: 1.8em;
text-transform: capitalize;
}
.content img {
width: 570px;
height: 390px;
margin: 0 30px 24px 30px;
position: relative;
top: -6px;
}
content img + p {
margin-top: 24px;
}