forked from HackTricks-wiki/hacktricks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabs.css
More file actions
41 lines (34 loc) · 676 Bytes
/
Copy pathtabs.css
File metadata and controls
41 lines (34 loc) · 676 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
.mdbook-tabs-container{
background-color: var(--bg);
border: 1px solid var(--table-border-color);
border-radius: 8px;
}
.mdbook-tabs {
display: flex;
margin-top: 0 !important;
}
.mdbook-tab {
background-color: var(--bg);
padding: 0.5rem 1rem;
cursor: pointer;
border: none;
font-size: 1.6rem;
line-height: 1.45em;
color: var(--icons-hover);
}
.mdbook-tab:hover {
color: var(--icons);
}
.mdbook-tab.active {
background-color: var(--theme-hover);
color: var(--icons);
}
.mdbook-tab-content {
padding: 1.2rem;
}
.mdbook-tab-content table {
margin: unset;
}
.mdbook-tab-content pre {
margin: unset;
}