@xiee/utils
Version:
Miscellaneous tools and utilities to manipulate HTML pages
23 lines (22 loc) • 559 B
CSS
.tabset {
&:has(.tab-link) { margin: 1em auto; }
&:is(.tabset *) { margin: .5em auto; }
}
.tab-link, .tab-pane {
border: 1px solid rgba(0, 0, 0, .05);
border-radius: 5px 5px 0 0;
padding: .2em .5em;
&.active { border-color: rgba(0, 0, 0, .5); }
}
.tab-link {
display: inline-block;
margin: 0 .5em -1px 0;
cursor: pointer;
&.active { border-bottom-color: white; }
& + .tab-pane.active { border-radius: 0 5px 0 0; }
&:not(.active):hover { background: rgba(0, 0, 0, .05); }
}
.tab-pane {
display: none;
&.active { display: block; }
}