-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from datamattsson/exporter-101
v1.0.2
- Loading branch information
Showing
7 changed files
with
154 additions
and
67 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,130 +1,151 @@ | ||
.wy-side-nav-search, | ||
.wy-nav-top { | ||
background: #477083; | ||
.wy-side-nav-search, .wy-nav-top { | ||
background: #477083; | ||
} | ||
.wy-nav-side { | ||
background: #425563; | ||
width: 300px; | ||
background: #425563; | ||
} | ||
|
||
.wy-menu-vertical a:hover { | ||
background-color: #00b388; | ||
color: #fff; | ||
background-color: #00b388; | ||
color: #fff; | ||
} | ||
|
||
.wy-menu-vertical span { | ||
font-weight: bold; | ||
color: #ddd; | ||
font-weight: bold; | ||
font-size: 105%; | ||
color: #ddd; | ||
} | ||
|
||
.wy-menu-vertical a { | ||
line-height: 100%; | ||
padding-left: 2.6em; | ||
color: #b3b3b3; | ||
} | ||
|
||
.wy-menu-vertical header, .wy-menu-vertical p.caption { | ||
height: 16px; | ||
line-height: 16px; | ||
} | ||
|
||
/* blue */ | ||
.rst-content .note { | ||
background: #dbf4ff; | ||
background: #DBF4FF; | ||
} | ||
.rst-content .note .admonition-title { | ||
background-color: #67b2d5; | ||
background-color: #67B2D5; | ||
} | ||
.rst-content .seealso { | ||
background: #dbf4ff; | ||
background: #DBF4FF; | ||
} | ||
.rst-content .seealso .admonition-title { | ||
background-color: #67b2d5; | ||
background-color: #67B2D5; | ||
} | ||
|
||
/* green */ | ||
.rst-content .tip { | ||
background: #dafffd; | ||
background: #DAFFFD; | ||
} | ||
.rst-content .tip .admonition-title { | ||
background-color: #00b6ae; | ||
background-color: #00B6AE; | ||
} | ||
.rst-content .important { | ||
background: #dafffd; | ||
background: #DAFFFD; | ||
} | ||
.rst-content .important .admonition-title { | ||
background-color: #00b6ae; | ||
background-color: #00B6AE; | ||
} | ||
.rst-content .hint { | ||
background: #dafffd; | ||
background: #DAFFFD; | ||
} | ||
.rst-content .hint .admonition-title { | ||
background-color: #00b6ae; | ||
background-color: #00B6AE; | ||
} | ||
|
||
/* orange */ | ||
.rst-content .warning { | ||
background: #ffe3d7; | ||
background: #FFE3D7; | ||
} | ||
.rst-content .warning .admonition-title { | ||
background-color: #ff9161; | ||
background-color: #FF9161; | ||
} | ||
.rst-content .caution { | ||
background: #ffe3d7; | ||
background: #FFE3D7; | ||
} | ||
.rst-content .caution .admonition-title { | ||
background-color: #ff9161; | ||
background-color: #FF9161; | ||
} | ||
|
||
/* red */ | ||
.rst-content .danger { | ||
background: #e9e2f0; | ||
background: #E9E2F0; | ||
} | ||
.rst-content .danger .admonition-title { | ||
background-color: #a250f0; | ||
background-color: #A250F0; | ||
} | ||
.rst-content .error { | ||
background: #e9e2f0; | ||
background: #E9E2F0; | ||
} | ||
.rst-content .error .admonition-title { | ||
background-color: #a250f0; | ||
background-color: #A250F0; | ||
} | ||
|
||
/* tabbed code fences */ | ||
.md-fenced-code-tabs * { | ||
box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
.md-fenced-code-tabs { | ||
box-sizing: border-box; | ||
display: flex; | ||
position: relative; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
background-color: #eee; | ||
margin-bottom: 25px; | ||
box-sizing: border-box; | ||
display: flex; | ||
position: relative; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
background-color: #eee; | ||
margin-bottom: 25px; | ||
} | ||
|
||
.md-fenced-code-tabs input { | ||
position: absolute; | ||
opacity: 0; | ||
position: absolute; | ||
opacity: 0; | ||
} | ||
|
||
.md-fenced-code-tabs label { | ||
width: auto; | ||
padding: 0 4px; | ||
margin: 0 8px; | ||
cursor: pointer; | ||
color: #2980b9; | ||
margin-top: 10px; | ||
width: auto; | ||
padding: 0 4px; | ||
margin: 0 8px; | ||
cursor: pointer; | ||
color: #2980b9; | ||
margin-top: 10px; | ||
} | ||
|
||
.md-fenced-code-tabs input:checked + label { | ||
color: #333; | ||
font-weight: bold; | ||
color: #333; | ||
font-weight: bold; | ||
} | ||
|
||
.md-fenced-code-tabs .code-tabpanel { | ||
display: none; | ||
width: 100%; | ||
margin-top: 10px; | ||
order: 99; | ||
display: none; | ||
width: 100%; | ||
margin-top: 10px; | ||
order: 99; | ||
} | ||
|
||
.md-fenced-code-tabs input:checked + label + .code-tabpanel { | ||
display: block; | ||
display: block; | ||
} | ||
|
||
.md-fenced-code-tabs pre, | ||
.md-fenced-code-tabs .codehilite { | ||
width: 100%; | ||
margin: 0px; | ||
width: 100%; | ||
margin: 0px; | ||
} | ||
|
||
.rst-versions { | ||
width: 310px; | ||
} | ||
|
||
.rst-content .section ol li > ol, .rst-content .section ol li > ul, .rst-content .section ul li > ol, .rst-content .section ul li > ul, .rst-content .toctree-wrapper ol li > ol, .rst-content .toctree-wrapper ol li > ul, .rst-content .toctree-wrapper ul li > ol, .rst-content .toctree-wrapper ul li > ul, .rst-content section ol li > ol, .rst-content section ol li > ul, .rst-content section ul li > ol, .rst-content section ul li > ul, .rst-content .section ol li > *, .rst-content .section ul li > *, .rst-content .toctree-wrapper ol li > *, .rst-content .toctree-wrapper ul li > *, .rst-content section ol li > *, .rst-content section ul li > * { | ||
margin-top: 0px; | ||
margin-bottom: 0px; | ||
} |
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
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
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
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
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
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mkdocs==1.0.4 | ||
mkdocs-redirects | ||
markdown-fenced-code-tabs | ||
mkdocs-macros-plugin | ||
mkdocs==1.3.1 | ||
mkdocs-redirects==1.2.1 | ||
markdown-fenced-code-tabs==1.0.5 | ||
mkdocs-include-markdown-plugin==4.0.4 | ||
mkdocs-macros-plugin==1.0.4 |