Skip to content

Commit

Permalink
docs updated with added logo, favicon, install and server pages; colo…
Browse files Browse the repository at this point in the history
…r scheme adjusted to match logo; adjustments made for #6
  • Loading branch information
Felix Simkovic committed Apr 11, 2017
1 parent 8ecadb4 commit 1ed8dd9
Show file tree
Hide file tree
Showing 7 changed files with 7,588 additions and 30 deletions.
28 changes: 10 additions & 18 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,9 @@
Sequence Independent Molecular Replacement Based on Available Database
**********************************************************************

Installation
++++++++++++

.. code:: bash
git clone https://github.com/rigdenlab/SIMBAD.git
cd SIMBAD
ccp4-python setup.py build --script-python-path ccp4-python install --install-scripts $CCP4/bin --install-lib $CCP4/lib/py2/site-packages
This will install SIMBAD into your CCP4 installation. On top of installing the source code, an executable script ``simbad`` should be automatically installed.

SIMBAD uses a modified version of AMORE to perform rotation searches. This version of amore will be added to the CCP4
distribution soon however in the meantime you will need to manually link this to your CCP4 installation:

.. code:: bash
ln -s SIMBAD/static/amoreCCB2.exe $CCP4/bin/amoreCCB2.exe
.. image:: https://readthedocs.org/projects/simbad/badge/?version=latest
:target: http://simbad.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

Documentation & Usage
+++++++++++++++++++++
Expand All @@ -28,9 +14,12 @@ Contributing
++++++++++++
There are two ways by which you can contribute to SIMBAD:

1. Submit any suggestions to the `GitHub Issue Tracker <https://github.com/rigdenlab/simbad/issues>`_, or
1. Submit any suggestions to the `GitHub Issue Tracker`_, or
2. Fork this repository, commit your changes and submit a pull request.

Found a Bug?
++++++++++++
Please use the `GitHub Issue Tracker`_.

Contributors
++++++++++++
Expand All @@ -39,3 +28,6 @@ Contributors
- Ronan Keegan
- Felix Simkovic
- Daniel Rigden


.. _GitHub Issue Tracker: https://github.com/rigdenlab/simbad/issues
24 changes: 12 additions & 12 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,26 +92,26 @@ overflow: visible !important;
}

.btn-default {
background-image: -webkit-linear-gradient(#6d7070, #3a3c3d 50%, #3a3c3d);
background-image: -o-linear-gradient(#6d7070, #3a3c3d 50%, #3a3c3d);
background-image: -webkit-gradient(linear, left top, left bottom, from(#6d7070), color-stop(50%, #3a3c3d), to(#3a3c3d));
background-image: linear-gradient(#6d7070, #3a3c3d 50%, #3a3c3d);
background-image: -webkit-linear-gradient(#d60f7e, #674593 50%, #674593);
background-image: -o-linear-gradient(#d60f7e, #674593 50%, #674593);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d60f7e), color-stop(50%, #674593), to(#674593));
background-image: linear-gradient(#d60f7e, #674593 50%, #674593);
background-repeat: no-repeat;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6d7070', endColorstr='#ff3a3c3d', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd60f7e', endColorstr='#ff674593', GradientType=0);
-webkit-filter: none;
filter: none;
border: 1px solid #3a3c3d;
border: 1px solid #674593;
}
.btn-default:hover {
background-image: -webkit-linear-gradient(#6d7070, #2b2d2d 50%, #2b2d2d);
background-image: -o-linear-gradient(#6d7070, #2b2d2d 50%, #2b2d2d);
background-image: -webkit-gradient(linear, left top, left bottom, from(#6d7070), color-stop(50%, #2b2d2d), to(#2b2d2d));
background-image: linear-gradient(#6d7070, #2b2d2d 50%, #2b2d2d);
background-image: -webkit-linear-gradient(#d60f7e, #5a4b96 50%, #5a4b96);
background-image: -o-linear-gradient(#d60f7e, #5a4b96 50%, #5a4b96);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d60f7e), color-stop(50%, #5a4b96), to(#5a4b96));
background-image: linear-gradient(#d60f7e, #5a4b96 50%, #5a4b96);
background-repeat: no-repeat;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6d7070', endColorstr='#ff2b2d2d', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd60f7e', endColorstr='#ff5a4b96', GradientType=0);
-webkit-filter: none;
filter: none;
border: 1px solid #3a3c3d;
border: 1px solid #674593;
}
.btn-primary {
background-image: -webkit-linear-gradient(#0475c1, #58499f 50%, #58499f);
Expand Down
Binary file added docs/_static/favicon.ico
Binary file not shown.

0 comments on commit 1ed8dd9

Please sign in to comment.