-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtippy.css
More file actions
39 lines (37 loc) · 820 Bytes
/
tippy.css
File metadata and controls
39 lines (37 loc) · 820 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
.tippy-tooltip.core-theme {
background-color: rgba(0, 86, 216, 0.75);
color: #e2e2e2;
}
/* content */
.tippy-tooltip.core-theme p {
margin: 0;
text-align: left;
padding: 0 10px;
}
.tippy-tooltip.core-theme p a {
color: #e2e2e2;
border-bottom-color: #e2e2e2;
}
.tippy-tooltip.core-theme p a:hover{
color: #fff;
border-bottom-color: #fff;
}
/* arrow */
.tippy-popper[x-placement^='top'] .tippy-tooltip.core-theme .tippy-arrow {
border-top-color: rgba(0, 86, 216, 0.75);
bottom: -10.5px;
}
.tippy-popper[x-placement^='bottom'] .tippy-tooltip.core-theme .tippy-arrow {
border-bottom-color: rgba(0, 86, 216, 0.75);
top: -10.5px;
}
/* footnote */
a.footnote-ref > sup:before {
content: "["
}
a.footnote-ref > sup:after {
content: "]"
}
.tippy-popper[data-html]{
max-width: calc(60% - 20px);
}