Skip to content

Commit

Permalink
[INT-398] Update UCC docs
Browse files Browse the repository at this point in the history
  • Loading branch information
grace-murphy committed Feb 2, 2023
1 parent 6d146c6 commit 241c8e8
Show file tree
Hide file tree
Showing 31 changed files with 2,895 additions and 1,995 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variables:

variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
POETRY_VERSION: 1.2.0
POETRY_VERSION: 1.3.2

cache:
key:
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ repos:
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.33.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV PYTHONUNBUFFERED=1 \
PIP_DISABLE_PIP_VERSION_CHECK=on \
PIP_DEFAULT_TIMEOUT=100 \
POETRY_NO_INTERACTION=1 \
POETRY_VERSION=1.2.2 \
POETRY_VERSION=1.3.2 \
PIP_VERSION=22.2.2 \
SETUPTOOLS_VERSION=65.3.0

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ providers: AWS, Azure, and GCP. Please see our

Please view our documentation on [Read the Docs][censys-cloud-connector-docs].

## Developer Documentation
## Contributing

All contributions (no matter how small) are always welcome. See
[Contributing to the Cloud Connector][contributing] to change or
test the code or for information on the CI/CD pipeline.

Submit an issue or pull request on [GitHub][github-issues].

## License

This software is licensed under [Apache License, Version 2.0][license].
Expand All @@ -37,5 +39,6 @@ This software is licensed under [Apache License, Version 2.0][license].
[contributing]: https://github.com/censys/censys-cloud-connector/tree/main/CONTRIBUTING.md
[gcp]: https://censys-cloud-connector.readthedocs.io/en/stable/providers.html#google-cloud-platform
[github]: https://github.com/censys/censys-cloud-connector
[github-issues]: https://github.com/censys/censys-cloud-connector/issues
[license]: http://www.apache.org/licenses/LICENSE-2.0
[supported-providers]: https://censys-cloud-connector.readthedocs.io/en/stable/providers.html
Binary file added docs/_static/censys_favicon.ico
Binary file not shown.
Binary file added docs/_static/censys_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/censys_logo_text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions docs/_static/censys_logo_text.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions docs/_static/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
:root {
--censys-dark: #bd5b00;
--censys-light: #ffae62;
--censys-lighter: #ffebd7;
--censys-blue: #10069f;
--censys-light-blue: #9bbbfd;
--icon-success: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" aria-hidden="true"><path fill-rule="evenodd" d="M1.5 8a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0zM0 8a8 8 0 1116 0A8 8 0 010 8zm11.78-1.72a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z"></path></svg>');
}

.admonition.censys {
border-color: var(--censys-blue);
}
.admonition.censys > .admonition-title {
background-color: var(--censys-light-blue);
border-color: var(--color-admonition-title--censys);
}
.admonition.censys > .admonition-title::before {
background-color: var(--censys-blue);
-webkit-mask-image: var(--icon-info);
mask-image: var(--icon-info);

}

.admonition.success {
border-color: var(--color-admonition-title--tip);
}
.admonition.success > .admonition-title {
background-color: var(--color-admonition-title-background--tip);
border-color: var(--color-admonition-title--tip);
}
.admonition.success > .admonition-title::before {
background-color: var(--color-admonition-title--tip);
-webkit-mask-image: var(--icon-success);
mask-image: var(--icon-success);

}
Loading

0 comments on commit 241c8e8

Please sign in to comment.