| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .tabs {
- display: flex;
- flex-wrap: wrap;
- margin: 2rem 0 2rem 0;
- position: relative;
- &.tabs-left {
- justify-content: flex-start;
- label.tab-label {
- margin-right: 0.5rem;
- }
- .tab-content {
- border-radius: 0px 4px 4px 4px;
- }
- }
- &.tabs-right {
- justify-content: flex-end;
- label.tab-label {
- margin-left: 0.5rem;
- }
- .tab-content {
- border-radius: 4px 0px 4px 4px;
- }
- }
- input.tab-input {
- display: none;
- }
- label.tab-label {
- background-color: $alt-bg-color;
- border-color: $darker-alt-bg-color;
- border-radius: 4px 4px 0px 0px;
- border-style: solid;
- border-bottom-style: hidden;
- border-width: 1px;
- cursor: pointer;
- display: inline-block;
- order: 1;
- padding: 0.3rem 0.6rem;
- position: relative;
- top: 1px;
- user-select: none;
- }
- input.tab-input:checked + label.tab-label {
- background-color: $bg-color;
- }
- .tab-content {
- background-color: $bg-color;
- border-color: $darker-alt-bg-color;
- border-style: solid;
- border-width: 1px;
- display: none;
- order: 2;
- padding: 1rem;
- width: 100%;
- }
- &.tabs-code {
- .tab-content {
- padding: 0.5rem;
- pre {
- margin: 0;
- }
- }
- }
- }
|