-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtooltipster-follower.css
71 lines (54 loc) · 1.36 KB
/
tooltipster-follower.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
/* .tooltipster-box */
.tooltipster-follower .tooltipster-box {
background: #565656;
border: 2px solid black;
border-radius: 4px;
}
/* .tooltipster-content */
.tooltipster-follower .tooltipster-content {
color: white;
line-height: 18px;
padding: 6px 14px;
}
/* Themes */
/* borderless */
.tooltipster-follower.tooltipster-borderless .tooltipster-box {
border: none;
background: #1b1b1b;
background: rgba(10,10,10,0.90);
}
/* light */
.tooltipster-follower.tooltipster-light .tooltipster-box {
border-radius: 3px;
border: 1px solid #cccccc;
background: #ededed;
}
.tooltipster-follower.tooltipster-light .tooltipster-content {
color: #666666;
}
/* noir */
.tooltipster-follower.tooltipster-noir .tooltipster-box {
border-radius: 0px;
border: 3px solid black;
background: #fff;
}
.tooltipster-follower.tooltipster-noir .tooltipster-content {
color: black;
}
/* punk */
.tooltipster-follower.tooltipster-punk .tooltipster-box {
border-radius: 5px;
border: none;
border-bottom: 3px solid #f71169;
background: #2a2a2a;
}
/* shadow */
.tooltipster-follower.tooltipster-shadow .tooltipster-box {
border: none;
border-radius: 5px;
background: white;
box-shadow: 0px 0px 10px 6px rgba(0,0,0,0.1);
}
.tooltipster-follower.tooltipster-shadow .tooltipster-content {
color: #8d8d8d;
}