Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/assets/lockup-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/assets/lockup-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions docs/css/brand.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,23 @@
--md-accent-fg-color: #e0a300;
--md-typeset-a-color: #7fb79f;
}

/* Centered project lockup hero on the docs home page */
.mp-hero {
text-align: center;
margin: 1.5rem 0 2.5rem;
}
.mp-hero .mp-lockup {
margin: 0;
font-size: 0; /* collapse whitespace between the stacked <img> variants */
line-height: 0;
}
.mp-hero .mp-logo {
max-width: 420px;
width: 70%;
height: auto;
}
/* Light lockup by default; cream lockup in dark (slate) mode. */
.mp-hero .mp-logo--dark { display: none; }
[data-md-color-scheme="slate"] .mp-hero .mp-logo--light { display: none; }
[data-md-color-scheme="slate"] .mp-hero .mp-logo--dark { display: inline; }
9 changes: 8 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# faststream-outbox
<div class="mp-hero" markdown>

<h1 class="mp-lockup">
<img class="mp-logo mp-logo--light" src="assets/lockup-light.svg" alt="faststream-outbox">
<img class="mp-logo mp-logo--dark" src="assets/lockup-dark.svg" alt="" aria-hidden="true">
</h1>

</div>

`faststream-outbox` is a [FastStream](https://faststream.airt.ai) broker
integration for the **transactional outbox pattern** — a Postgres table is
Expand Down