blob: 00771196e1c51915b21b2a3dc14bd267b7a5404c (
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
|
.suword {
margin-left: 0.5ch;
margin-right: 0.5ch;
}
/* .suword.pred { */
/* color: gold; */
/* } */
/* Clause level */
.clause-container {
max-width: 600px;
white-space: normal !important;
hyphens: auto;
padding: 2px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease;
will-change: transform, opacity, filter, background-color;
span {
white-space: normal !important;
}
}
.clause-container.selected {
background-color: rgba(220, 200, 255, 0.2);
z-index: 3;
}
.suword.subj {
color: blue;
/* border-bottom: 2px solid blue; */
}
.suword.root {
color: darkred;
}
|