Skip to content

Commit

Permalink
Merge pull request #12 from PrefectHQ/theme
Browse files Browse the repository at this point in the history
Fix theme
  • Loading branch information
ahuang11 committed Jul 30, 2022
2 parents 4f03afe + 98e3029 commit ea9e7e1
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 1 deletion.
Binary file added docs/img/favicon.ico
Binary file not shown.
Binary file added docs/img/prefect-logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* theme */
:root > * {
/* theme */
--md-primary-fg-color: #115AF4;
--md-primary-fg-color--light: #115AF4;
--md-primary-fg-color--dark: #115AF4;
}

/* Table formatting */
.md-typeset table:not([class]) td {
padding: 0.5em 1.25em;
}
.md-typeset table:not([class]) th {
padding: 0.5em 1.25em;
}

/* convenience class to keep lines from breaking
useful for wrapping table cell text in a span
to force column width */
.no-wrap {
white-space: nowrap;
}

13 changes: 12 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
site_name: prefect-airbyte
repo_url: https://github.com/PrefectHQ/prefect-airbyte
site_url: https://prefecthq.github.io/prefect-airbyte
repo_url: https://github.com/prefecthq/prefect-airbyte
edit_uri: /edit/main/docs/
theme:
name: material
favicon: img/favicon.ico
palette:
primary: blue
accent: blue
icon:
repo: fontawesome/brands/github
logo: img/prefect-logo-white.png
font:
text: Inter
code: Source Code Pro
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
Expand Down

0 comments on commit ea9e7e1

Please sign in to comment.