-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving documentation to MolSSI style and diátaxis approach.
- Loading branch information
Showing
31 changed files
with
928 additions
and
114 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 |
---|---|---|
|
@@ -14,13 +14,6 @@ tramp | |
.org-id-locations | ||
*_archive | ||
|
||
# VStudio | ||
.vscode | ||
|
||
# MOPAC | ||
*.arc | ||
*.out | ||
|
||
# flymake-mode | ||
*_flymake.* | ||
|
||
|
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,24 +1,73 @@ | ||
/* Make the page wider so e.g. the status table can be seen fully */ | ||
.wy-nav-content { | ||
max-width: 1200px !important; | ||
@import "../basic.css"; | ||
|
||
html[data-theme="light"] { | ||
--pst-color-primary: #ed1c24; | ||
--pst-color-warning: #ed1c24; | ||
--pst-color-primary-highlight: #bc151b; | ||
--pst-color-secondary: #1d35e7; | ||
--pst-color-secondary-highlight: #3e51e3; | ||
|
||
} | ||
|
||
html[data-theme="dark"] { | ||
--pst-color-primary: #ed1c24; | ||
--pst-color-warning: #ed1c24; | ||
--pst-color-primary-highlight: #bc151b; | ||
--pst-color-background: #1A1A1A; | ||
--pst-color-secondary: #1d35e7; | ||
--pst-color-secondary-highlight: #3e51e3; | ||
|
||
|
||
} | ||
|
||
html[data-theme="light"] a:hover { | ||
color: #1A1A1A; | ||
} | ||
|
||
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3, html[data-theme="dark"] h4, html[data-theme="dark"] h5, html[data-theme="dark"] h6 { | ||
color: #ffffff; | ||
} | ||
|
||
|
||
html[data-theme="dark"] a { | ||
color: #ffffff; | ||
} | ||
|
||
html[data-theme="dark"] .reference.external { | ||
text-decoration: underline; | ||
|
||
} | ||
|
||
html[data-theme="dark"] p .reference.internal { | ||
text-decoration: underline; | ||
|
||
} | ||
|
||
html[data-theme="dark"] a:hover { | ||
color: #ed1c24; | ||
} | ||
|
||
html[data-theme="dark"] .prev-next-area a p.prev-next-title { | ||
color: white; | ||
} | ||
.column_left { | ||
display: table-cell; | ||
width: 60px; | ||
vertical-align: middle; | ||
|
||
html[data-theme="dark"] .prev-next-area:hover a:hover p.prev-next-title:hover { | ||
color: #ed1c24; | ||
} | ||
.column { | ||
display: table-cell; | ||
|
||
html[data-theme="dark"] dt:target { | ||
background-color: #000000; | ||
} | ||
.column_right { | ||
display: table-cell; | ||
width: 60px; | ||
vertical-align: middle; | ||
|
||
html .toctree-wrapper li[class^=toctree-l] { | ||
list-style: circle; | ||
} | ||
|
||
/* Clear floats after the columns */ | ||
.row:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
img:not(.logo__image, .footer_logo) { | ||
padding: 20px; | ||
} | ||
|
||
|
||
.footer_logo { | ||
max-height: 60px; | ||
} |
This file was deleted.
Oops, something went wrong.
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,15 +1,17 @@ | ||
User Documentation | ||
================== | ||
API Documentation | ||
================= | ||
|
||
Contents: | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
overview | ||
modules | ||
|
||
|
||
Indices and tables | ||
------------------ | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
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,29 @@ | ||
read\_structure\_step.formats.cif package | ||
========================================= | ||
|
||
Submodules | ||
---------- | ||
|
||
read\_structure\_step.formats.cif.cif module | ||
-------------------------------------------- | ||
|
||
.. automodule:: read_structure_step.formats.cif.cif | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
read\_structure\_step.formats.cif.mmcif module | ||
---------------------------------------------- | ||
|
||
.. automodule:: read_structure_step.formats.cif.mmcif | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: read_structure_step.formats.cif | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,21 @@ | ||
read\_structure\_step.formats.mol2 package | ||
========================================== | ||
|
||
Submodules | ||
---------- | ||
|
||
read\_structure\_step.formats.mol2.mol2 module | ||
---------------------------------------------- | ||
|
||
.. automodule:: read_structure_step.formats.mol2.mol2 | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: read_structure_step.formats.mol2 | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,29 @@ | ||
read\_structure\_step.formats.mop package | ||
========================================= | ||
|
||
Submodules | ||
---------- | ||
|
||
read\_structure\_step.formats.mop.find\_mopac module | ||
---------------------------------------------------- | ||
|
||
.. automodule:: read_structure_step.formats.mop.find_mopac | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
read\_structure\_step.formats.mop.obabel module | ||
----------------------------------------------- | ||
|
||
.. automodule:: read_structure_step.formats.mop.obabel | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: read_structure_step.formats.mop | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Oops, something went wrong.