-
Notifications
You must be signed in to change notification settings - Fork 317
/
Copy pathstyles.module.css
46 lines (39 loc) · 1.28 KB
/
styles.module.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
.details {
--docusaurus-details-decoration-color: var(--ifm-alert-border-color);
--docusaurus-details-transition: transform var(--ifm-transition-fast) ease;
--ifm-alert-background-color: var(--prism-background-color);
--ifm-alert-foreground-color: var(--white);
margin: 0 0 var(--ifm-spacing-vertical);
border: 1px solid var(--prism-background-color);
}
.details table {
width: 100%;
display: inline;
border-collapse: collapse;
border: 1px solid var(--click-color-table-cell-stroke);
background-color: var(--click-color-table-row-background);
color: var(--click-color-table-row-text);
table-layout: auto; /* Automatically adjusts column widths to fit content */
}
.details th, .details td {
border: 1px solid var(--click-color-table-cell-stroke);
padding: 8px; /* Adjust padding for consistent spacing */
}
.details th {
background-color: var(--click-color-table-header-background);
color: var(--click-color-table-header-text);
text-align: left;
}
.details td {
background-color: var(--click-color-table-row-background);
}
.details {
overflow-x: auto; /* Enable horizontal scrolling if content exceeds container width */
}
.details a {
color: var(--click-color-link);
text-decoration: underline;
}
.details a:hover {
color: var(--click-color-accent);
}