Skip to content
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

Added missing information and improved stylesheets for dark mode #496

Merged
merged 1 commit into from
Jul 9, 2022
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
4 changes: 4 additions & 0 deletions docs/guides/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ app.bindaddr(192.168.1.2)
!!! note

The `run()` method is blocking. To run a Crow app asynchronously `run_async()` should be used instead.

!!! warning

When using `run_async()`, make sure to use a variable to save the function's output (such as `#!cpp auto _a = app.run_async()`). Otherwise the app will run synchronously.

<br><br>

Expand Down
3 changes: 2 additions & 1 deletion docs/guides/routes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ You can change the HTTP methods the route uses from just the default `GET` by us

!!! note

Crow handles `HEAD` and `OPTIONS` methods automatically. So adding those to your handler has no effect.
Crow handles `OPTIONS` method automatically. The `HEAD` method is handled automatically unless defined in a route.
Adding `OPTIONS` to a route's methods has no effect.

Crow defines the following methods:
```
Expand Down
10 changes: 4 additions & 6 deletions docs/stylesheets/colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
--home-border-color: #00000080;
--home-shadow-color: #00000040;
--home-image-border: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgb(0, 0, 0) 50%, rgba(0,0,0,0) 100%);
--md-default-tag-bg-color: var(--md-default-bg-color);

}

Expand All @@ -28,25 +29,22 @@
--md-default-fg-color--lightest: rgba(255, 255, 255, 0.07);
--md-typeset-a-color: var(--md-accent-fg-color) !important;
--md-default-bg-color: #1a2124;
--md-code-bg-color: #2f2f2f !important;
--md-code-bg-color: #101010 !important;
--md-code-hl-comment-color: var(--md-code-fg-color) !important;
--md-code-hl-generic-color: var(--md-code-fg-color) !important;
--md-code-hl-variable-color: var(--md-code-fg-color) !important;
--md-code-hl-operator-color: var(--md-code-fg-color) !important;
--md-code-fg-color: #adadad !important;
--md-code-fg-color: #cfcfcf !important;
--md-code-hl-punctuation-color: #adadad !important;
--home-border-color: #ffffff20;
--home-shadow-color: #00000040;
--home-image-border: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
--md-admonition-bg-color: #272a2b;
--md-code-hl-color: rgba(255, 255, 0, 0.18);
--md-default-tag-bg-color: var(--md-default-fg-color);

}

.md-typeset code {
padding: 0.2rem;
}

.md-typeset .md-button {
color: var(--md-default-fg-color--light);
border-radius: 0.5rem;
Expand Down
19 changes: 12 additions & 7 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
.md-header__source {
margin-left: 0px;
width: autho;
min-width: 9.6rem;
margin-left: 0px;
width: autho;
min-width: 9.6rem;
}

.md-typeset code {
border-radius: .25rem !important;
}

.code {
border-radius: 5px;
border-radius: .25rem !important;
}

.tag
{
background-color: var(--md-primary-fg-color);
color: var(--md-default-bg-color);
color: var(--md-default-tag-bg-color);
border-radius: 50px;
padding-left: 0.15em;
padding-right: 0.35em;
Expand All @@ -20,12 +25,12 @@

.tag a
{
color: var(--md-default-bg-color);
color: var(--md-default-tag-bg-color);
}

.tag a:hover
{
color: var(--md-default-bg-color);
color: var(--md-default-tag-bg-color);
}

.md-typeset :is(.emojione, .twemoji, .gemoji)
Expand Down