-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtour.css
More file actions
41 lines (38 loc) · 876 Bytes
/
tour.css
File metadata and controls
41 lines (38 loc) · 876 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
40
41
/* Tour button brand color match */
.subtle-link {
color: var(--muted);
text-decoration: none;
font-size: 13px;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 6px;
transition: color 0.18s ease;
}
.subtle-link i {
color: var(--accent-2);
font-size: 14px;
}
.subtle-link:hover {
color: var(--text);
text-decoration: underline;
}
/* Driver.js overrides */
.driver-popover {
font-family: var(--font-sans) !important;
border-radius: 12px !important;
}
.driver-popover-title {
font-family: var(--font-sans) !important;
font-weight: 600 !important;
font-size: 16px !important;
}
.driver-popover-description {
font-family: var(--font-sans) !important;
font-size: 14px !important;
line-height: 1.5 !important;
}
.driver-popover-footer button {
font-family: var(--font-sans) !important;
border-radius: 6px !important;
}