-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update landing page logo and favicon
- Loading branch information
Showing
11 changed files
with
82 additions
and
14 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains 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,25 @@ | ||
<!-- | ||
Copyright (c) 2016-2024 Martin Donath <martin.donath@squidfunk.com> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to | ||
deal in the Software without restriction, including without limitation the | ||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
sell copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
IN THE SOFTWARE. | ||
--> | ||
|
||
<!-- Logo --> | ||
<img id="logo_light_mode" src="{{ config.theme.logo_light_mode | url }}" alt="logo"> | ||
<img id="logo_dark_mode" src="{{ config.theme.logo_dark_mode | url }}" alt="logo"> |
This file contains 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,44 @@ | ||
.md-header__button.md-logo { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.md-header__button.md-logo img, .md-header__button.md-logo svg { | ||
height: 2.5rem; | ||
width: 2.5rem; | ||
} | ||
|
||
#logo_light_mode { | ||
display: var(--md-footer-logo-light-mode); | ||
} | ||
#logo_dark_mode { | ||
display: var(--md-footer-logo-dark-mode); | ||
} | ||
|
||
[data-md-color-scheme="default"] { | ||
--md-footer-logo-dark-mode: none; | ||
--md-footer-logo-light-mode: block; | ||
} | ||
[data-md-color-scheme="slate"] { | ||
--md-footer-logo-dark-mode: block; | ||
--md-footer-logo-light-mode: none; | ||
--md-primary-fg-color: rgba(18, 19, 23, 0.8); | ||
--md-header-bg-color: rgba(18, 19, 23, 0.8); | ||
} | ||
|
||
[data-md-color-primary="black"] .md-header { | ||
background-color: var(--md-header-bg-color); | ||
} | ||
.md-header { | ||
box-shadow: none; | ||
transition: none; | ||
backdrop-filter: saturate(180%) blur(20px); | ||
-webkit-backdrop-filter: saturate(180%) blur(20px); | ||
background-color: var(--md-header-bg-color); | ||
} | ||
.md-tabs { | ||
box-shadow: none; | ||
transition: none; | ||
backdrop-filter: saturate(180%) blur(20px); | ||
-webkit-backdrop-filter: saturate(180%) blur(20px); | ||
background-color: var(--md-header-bg-color); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
mkdocs-material | ||
mkdocs-static-i18n | ||
mkdocs-static-i18n | ||
mkdocs-open-in-new-tab |