-
Notifications
You must be signed in to change notification settings - Fork 72
CONTENT: documentation text and styles #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f16dce7
CONTENT: documentation text and styles
lwasser 4bf3113
Remove old images
lwasser 0921566
Cleaner intro page
lwasser 4de14b0
README file cleanup
lwasser 951d8b8
add circle ci
lwasser 139185b
Bad readme title
lwasser ba57889
add ros docs to resources
lwasser 6f6ec04
cleanup
lwasser a44ee40
remove jupyter
lwasser 65aaf8a
Update documentation page
lwasser 596c3f3
remove config file
lwasser 183949f
cleanup of inde page
lwasser 48bd78b
Update documtation landing page
lwasser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,27 @@ | ||
version: 2.1 | ||
jobs: | ||
build_book: | ||
docker: | ||
- image: cimg/python:3.9 | ||
steps: | ||
- checkout | ||
- run: | ||
name: setup environment | ||
command: | | ||
pip install --upgrade pip | ||
pip install nox | ||
pip list | ||
- run: | ||
name: Build book html | ||
command: nox -s docs | ||
|
||
- store_artifacts: | ||
path: _build/html | ||
destination: html | ||
|
||
# Tell CircleCI to use this workflow when it builds the site | ||
workflows: | ||
version: 2 | ||
build_book: | ||
jobs: | ||
- build_book |
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,93 @@ | ||
html, body { | ||
font-size: 1.1rem; | ||
} | ||
|
||
body p { | ||
/* font-family: $header-font; */ | ||
font-size: 1em; | ||
font-family: 'Verdana', sans-serif!important; | ||
color: #555!important; | ||
line-height: 1.5em; | ||
} | ||
|
||
h1, h2, h3 { | ||
font-family: 'Trebuchet MS', sans-serif; | ||
color: #333!important; | ||
} | ||
|
||
h1 { | ||
padding-bottom: 1em!important; | ||
} | ||
|
||
h3 { | ||
padding-top: 1.4em; | ||
margin-bottom: 14px; | ||
} | ||
|
||
/* hide the right sidebar */ | ||
.col-md-3 .bd-toc .show .noprint { | ||
display: none!important; | ||
} | ||
|
||
#main-content { | ||
max-width: 80%; | ||
} | ||
|
||
.bd-toc { | ||
color: #1abc9c; | ||
} | ||
|
||
@media (min-width: 720px){ | ||
.col-md-3 { | ||
flex: 0 0 25%; | ||
/* max-width: 25%; */ | ||
display: none!important; | ||
} | ||
} | ||
|
||
|
||
/* HEADER BLOCK 2 */ | ||
div.header__block { | ||
color: #222; | ||
} | ||
|
||
.announcement div { | ||
background-color: #ccc; | ||
} | ||
|
||
.header-item.announcement, .header-item.announcement .noprint { | ||
background-color:#ccc; | ||
} | ||
|
||
div .announcement .header-item .noprint, header-item.announcement { | ||
background-color: #ccc!important; | ||
} | ||
|
||
/* notes */ | ||
|
||
div.admonition.note .admonition-title, div.admonition.note .admonition-title::before { | ||
background-color: #C1CFD4; | ||
color: #222; | ||
|
||
} | ||
|
||
div.admonition.note { | ||
border-color: #C1CFD4; | ||
background-color: #E3F4FA; | ||
} | ||
|
||
|
||
div.admonition.important .admonition-title, div.admonition.important .admonition-title::before { | ||
background-color: #107762; | ||
color: #ffffff!important; | ||
} | ||
|
||
div.admonition.important .admonition-title { | ||
background-color: #107762; | ||
border-color: #1abc9c; | ||
} | ||
|
||
div.admonition.important { | ||
border-color: #0e6654; | ||
background-color: #ecfcf9; | ||
} |
This file contains hidden or 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,7 @@ | ||
<!-- custom head content--> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This needs to go bye bye cause it don't work. i thought it was to modify the but instead it modifies the HTML header on the page not the head code. boo. |
||
|
||
<!-- <link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@200;300;400;600&display=swap" rel="stylesheet"> --> | ||
<!-- END custom head content --> | ||
|
This file contains hidden or 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 hidden or 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,45 @@ | ||
# CONTRIBUTING file and License | ||
|
||
## CONTRIBUTING.md File for your Python Package | ||
|
||
Your python package should include a file called CONTRIBUTING.md located in the | ||
root of your repository (with your readme file). | ||
|
||
### Local development environment information | ||
|
||
The contributing file should include information to support a new contributing | ||
building your package locally. This includes: | ||
|
||
* instructions for setting up a development environment locally to work on your package | ||
* instructions for how the test suite is setup and run | ||
|
||
### Community contribution guidelines | ||
This guide should also include information for someone interested in asking questions, | ||
submitting issues or pull requests: | ||
|
||
* Any guidelines that you have in place for users submitting issues, pull requests or asking questions. | ||
* A link to your code of conduct | ||
* A link to or include how your code of conduct is enforced. | ||
|
||
```{note} | ||
[The mozilla open workshop has a nice outline of things to consider when | ||
creating a contributing guide](https://mozillascience.github.io/working-open-workshop/contributing/) | ||
``` | ||
|
||
### License | ||
pyOpenSci projects should use an open source software license that is approved | ||
by the Open Software Initiative (OSI). OSI's website has a | ||
[list of popular licenses](https://opensource.org/licenses), and GitHub has a | ||
[handy tool](https://choosealicense.com/) for choosing a license. | ||
|
||
<!-- | ||
pyOpenSci packages must: | ||
|
||
- Contain full documentation for any user-facing functions. | ||
- Have a test suite that covers the major functionality of the package. | ||
- Use continuous integration. | ||
- Use an OSI approved software license. | ||
|
||
**Good/Better/Best:** | ||
- **Good:** Include a open source software license with your package. | ||
- **Better/Best:** Choose a license based on your needs and future use of package, plus explain your choice in your submission for review. --> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO for another PR - clean up this mess of CSS. hey that rhymed. i'm a poet and didn't know it. Till i made a mess of the CSS.
oops. i did it again.