-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHighlight.css
56 lines (48 loc) · 853 Bytes
/
Highlight.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
.Highlight {
position: absolute;
}
.Highlight__emoji {
position: absolute;
color: black;
opacity: 1;
font-size: 28px;
}
.Highlight__parts {
opacity: 1;
}
.Highlight__part {
cursor: pointer;
position: absolute;
background: rgba(255, 226, 143, 1);
transition: background 0.3s;
}
.Highlight__popup {
background-color: #191c24;
border: 1px solid rgba(255, 255, 255, 0.25);
color: white;
padding: 0.5rem 1rem;
border-radius: 3px;
max-width: 300px;
max-height: 100px;
/* overflow-y: scroll; */
}
.Highlight--scrolledTo .Highlight__part {
background: #ff4141;
}
.OTHER {
background: rgb(93, 115, 240);
opacity:0
}
.AXIOM {
background: rgb(93, 115, 240);
opacity:0
}
.LEGALTEST {
background: rgb(5, 223, 16);
}
.ISSUE {
background: rgb(247, 115, 115);
}
.CONCLUSION {
background: rgb(26, 119, 114);
}