blob: f13a83544645b92145f2ae2d1c5a27bde9e43e39 (
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
37
38
39
40
41
42
43
44
45
|
.footnote-entry {
display: flex;
justify-content: flex-start;
align-items: flex-start;
background: #111;
padding: 0.5rem;
margin-bottom: 0.5rem;
max-width: 800px;
cursor: pointer;
transition: background 0.1s;
}
.footnote-entry:hover {
background: #333;
}
.footnote-index {
width: 120px;
text-align: right;
margin: 0;
padding: 0 1rem 0 0;
}
.footnote-text {
flex: 1;
}
.footnote-form .textarea span {
text-align: right;
padding-right: 1.25rem;
}
.footnote-form .textarea textarea {
width: 670px;
height: 70px;
}
.footnote-form .buttons {
display: flex;
margin-bottom: 0.5rem;
}
.footnote-form .buttons span {
display: block;
width: 128px;
}
.footnote-form .buttons button {
margin-right: 0.5rem;
}
|