1.sphinx-tabs {
2    margin-bottom: 1rem;
3}
4
5[role="tablist"] {
6    border-bottom: 0px solid #a0b3bf;
7}
8
9.sphinx-tabs-tab {
10    position: relative;
11    font-family: 'Helvetica Neue',Arial,Helvetica,sans-serif;
12    color: black;
13    line-height: 24px;
14    margin: 0;
15    font-size: 16px;
16    font-weight: 400;
17    background-color: rgba(255, 255, 255, 0);
18    border-radius: 5px 5px 5px 5px;
19    border: 0;
20    padding: 0.5rem 1.6rem;
21    margin-bottom: 0;
22}
23
24.sphinx-tabs-tab[aria-selected="true"] {
25    border: 2px solid gray;
26    border-bottom: 2px solid gray;
27    margin: -2px;
28    background-color: #efefef;
29    z-index: 999;  /* render on top*/
30}
31
32.sphinx-tabs-tab[aria-selected="false"] {
33    border: 2px solid #dddddd;
34    border-bottom: 2px solid #dddddd;
35    margin: -2px;
36    background-color: white;
37  }
38
39.sphinx-tabs-tab:focus {
40    z-index: 1;
41    outline-offset: 1px;
42}
43
44.sphinx-tabs-panel {
45    position: relative;
46    padding: 0rem;
47    border: 0px solid #a0b3bf;
48    margin: 0px 0px 0px 0px;
49    border-radius: 0 0 5px 5px;
50    border-top: 0;
51    background: white;
52}
53
54.sphinx-tabs-panel.code-tab {
55    padding: 0.4rem;
56}
57
58.sphinx-tab img {
59    margin-bottom: 24 px;
60}
61