style.css
728 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
.input {
float: left;
padding: 1em;
border-radius: .5em;
border: 1px solid #ddd;
background: #f7f7f7;
}
.input p {
text-align: justify;
text-indent: .5em;
margin-block: .5em;
}
.input > div:first-child {
height: 10em;
}
.input > div:first-child pre {
white-space: pre-wrap;
height: 100%;
width: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
.input > div:last-child {
position: relative;
}
.input > div:last-child > button {
position: absolute;
right: .1em;
}
.input blockquote {
border-left: 5px solid #ccc;
margin: .5em 10px;
padding: .5em 10px;
}
.input blockquote p {
text-align: left;
text-indent: 0;
margin-block: 0;
}
.footnote-definition > * {
display: inline;
}