-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
83 lines (67 loc) · 1.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
input.wpm {
width: 4em !important;
}
div.container-fluid {
margin: 20px 10px;
}
div.container-fluid > div {
max-width: 600px;
}
#generator {
max-width: 300px;
}
#passages {
padding: 20px 0;
}
#passages > div {
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
border-radius: 8px;
padding: 8px 8px 0 8px;
margin-top: 40px;
position: relative;
}
.passage {
page-break-inside: avoid;
}
.passage p, .passage span {
cursor: crosshair;
}
.passage span.has-error {
color: #a94442;
background-color: #f2dede;
text-decoration: underline;
}
div.reference-top {
font-weight: bold;
margin-bottom: 1em;
}
div.reference-bottom {
margin-top: 1em;
}
div.reference-bottom a {
float: right;
}
.number {
border-radius: 15%;
font-size: 1.25em;
width: 2em;
text-align: center;
float: right;
}
@media screen {
body {
padding-bottom: 50vh;
}
}
@media print {
#generator {
display: none;
}
.passage {
padding: 0;
}
div.reference-bottom a {
display: none;
}
}