-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* Copied from https://raw.githubusercontent.com/Ovski4/jekyll-tabs/master/docs/tabs.css */ | ||
.tab { | ||
display: flex; | ||
flex-wrap: wrap; | ||
margin-left: -20px; | ||
padding: 0; | ||
list-style: none; | ||
position: relative; | ||
} | ||
|
||
.tab > * { | ||
flex: none; | ||
padding-left: 20px; | ||
position: relative; | ||
} | ||
|
||
.tab > * > a { | ||
display: block; | ||
text-align: center; | ||
padding: 9px 20px; | ||
color: #999; | ||
border-bottom: 2px solid transparent; | ||
border-bottom-color: transparent; | ||
font-size: 12px; | ||
text-transform: uppercase; | ||
transition: color .1s ease-in-out; | ||
line-height: 20px; | ||
} | ||
|
||
.tab > .active > a { | ||
color:#222; | ||
border-color: #1e87f0; | ||
} | ||
|
||
.tab > li > a { | ||
text-decoration: none; | ||
cursor: pointer; | ||
} | ||
|
||
.tab-content { | ||
padding: 0; | ||
} | ||
|
||
.tab-content > li { | ||
display: none; | ||
} | ||
|
||
.tab-content > li.active { | ||
display: block; | ||
} | ||
|
||
/* Begin MarkLogic modifications. */ | ||
/* Override the just-the-docs styles so we don't get bullet points by the tabs. */ | ||
.tab > li::before { | ||
content: "" !important; | ||
} | ||
.tab-content > li::before { | ||
content: "" !important; | ||
} | ||
/* End MarkLogic modifications. */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.