forked from jpmorganchase/salt-ds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (49 loc) · 1.53 KB
/
styles.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
.salt-theme .sbdocs {
font-family: var(--salt-typography-fontFamily);
font-size: var(--salt-text-fontSize);
letter-spacing: var(--salt-text-letterSpacing);
line-height: var(--salt-text-lineHeight);
}
.salt-theme .sbdocs.sbdocs-content {
background: var(--salt-container-primary-background);
color: var(--salt-text-primary-foreground);
height: fit-content;
}
.salt-theme .sbdocs h1 {
font-size: var(--salt-text-h1-fontSize);
font-weight: var(--salt-text-h1-fontWeight);
line-height: var(--salt-text-h1-lineHeight);
}
.salt-theme .sbdocs h2 {
border-bottom: none;
font-size: var(--salt-text-h2-fontSize);
font-weight: var(--salt-text-h2-fontWeight);
line-height: var(--salt-text-h2-lineHeight);
}
.salt-theme .sbdocs h3 {
font-size: var(--salt-text-h3-fontSize);
font-weight: var(--salt-text-h3-fontWeight);
line-height: var(--salt-text-h3-lineHeight);
}
.salt-theme .sbdocs h4 {
font-size: var(--salt-text-h4-fontSize);
font-weight: var(--salt-text-h4-fontWeight);
line-height: var(--salt-text-h4-lineHeight);
}
.salt-theme .sbdocs code {
background-color: unset;
border: none;
color: var(--salt-text-secondary-foreground);
font-size: var(--salt-text-fontSize);
line-height: var(--salt-text-lineHeight);
padding: 0;
}
.salt-theme .sbdocs th,
.salt-theme .sbdocs td {
color: var(--salt-text-primary-foreground);
font-size: var(--salt-text-fontSize);
line-height: var(--salt-text-lineHeight);
}
.salt-theme .sbdocs-table tr:nth-of-type(2n) {
background: var(--salt-container-secondary-background);
}