blob: e96fd4fdb7cfb054f3bc6eef2d759ed06ef51716 (
plain)
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
|
.paragraphs {
width: 100%;
height: calc(100% - 3.125rem);
overflow: scroll;
padding-top: 1rem;
padding-left: 1rem;
}
.paragraphs .content {
font-family: 'Georgia', serif;
width: 650px;
padding-bottom: 6rem;
}
.paragraphs .content > div {
margin-bottom: 16px;
}
.paragraphs .header {
font-size: 32px;
}
.paragraphs .paragraph {
font-size: 16px;
line-height: 1.5;
}
.paragraphs .paragraph span:after {
content: ' ';
}
.paragraphs .blockquote {
line-height: 1.5;
padding-left: 3rem;
}
.paragraphs .blockquote span:after {
content: ' ';
}
|