Last active
January 22, 2025 07:31
-
-
Save mathiazom/ccbdd3bd8ff7da8e010546fa186b1e70 to your computer and use it in GitHub Desktop.
Kagi Search Custom CSS (Dark Mode)
This file contains hidden or 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
| .theme_moon_dark { | |
| --m_sri_gap_color: #000; | |
| --kagi-accent: #000; | |
| --background-color: #000; | |
| } | |
| body, html, .app-header { | |
| background-color: #000000; | |
| } | |
| .app-logo { | |
| display: none; | |
| } | |
| .search-form .search-input-container { | |
| border: none; | |
| border-radius: 8px; | |
| } | |
| .search-form .search-input { | |
| padding-left: 16px; | |
| } | |
| .search-form .search-form-icons { | |
| padding-right: 10px; | |
| } | |
| footer { | |
| background-color: unset; | |
| } | |
| .search-form .search-form-icons { | |
| border-radius: 0 8px 8px 0; | |
| } | |
| #searchBar { | |
| border-radius: 8px 0 0 8px; | |
| } | |
| .search-input-container { | |
| border-radius: 8px 8px 0 0; | |
| } | |
| .m-h .m-app-logo { | |
| display: none; | |
| } | |
| .__sri-title .__domain-favicon { | |
| border-radius: 50%; | |
| } | |
| .auto_suggestions, .auto_suggestions .auto_suggestions_in { | |
| border: none; | |
| } | |
| .search-form-icons .sfi_sep { | |
| display: none; | |
| } | |
| #quickSettingsOpenBtn > a:nth-child(1) { | |
| border: none; | |
| } | |
| #searchForm > div.search-input-container > div { | |
| border: none; | |
| } | |
| #searchFormSubmit { | |
| display: none; | |
| } | |
| #searchBar { | |
| padding-left: 4px; | |
| } | |
| #searchForm { | |
| margin-left: 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment