Last active
December 11, 2023 23:44
-
-
Save rbatty19/dda750e0507644f1a0d6b030a75d92d7 to your computer and use it in GitHub Desktop.
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
div.scrollable-content:not(:has(ion-list.search-results)), .item-label:not(.toc-item), | |
div.notebook-editable-item__highlight-color, | |
.theme-item, | |
ion-button[item-i-d='top_menu_bookmark'][title='Remove Bookmark'] | |
{ | |
filter: invert(100%); | |
} | |
.font-size-slider__label { | |
color: white; | |
} | |
.font-size-slider | |
{ | |
filter: invert(1); | |
--bar-background: gray; | |
--bar-background-active: #006EAD; | |
--knob-background: white; | |
} | |
ion-content:has(ion-list.search-results) { | |
filter: none; | |
} | |
ion-searchbar > div > input { | |
font-style: italic; | |
border: dashed 1px orange; | |
color:orange; | |
font-weight: bold; | |
filter: invert(100%); | |
} | |
div.scrollable-content:has(ion-list.search-results) { | |
filter: invert(100%); | |
background-color: white; | |
} | |
ion-content:not(:has(ion-list.search-results)) { | |
filter: invert(100%); | |
} | |
div.notebook-content .item-label:hover { | |
border-radius: 10px; | |
border: solid 1px red; | |
transition: all 0.2s; | |
transform: scale(1.3); | |
margin-block: 15px; | |
} | |
ion-item.toc-item:hover { | |
font-weight: bold; | |
border-radius: 0px; | |
border-left: solid 4px blue; | |
transition: all 0.1s; | |
padding-block: 10px; | |
transform: translateX(1.71em) scale(1.18); | |
text-shadow: 1px 1px 2px white, | |
0 0 1em black, | |
0 0 0.2em blue; | |
} | |
div[role='dialog'] div.ion-page, | |
ion-header:not(div[role='dialog'] div.ion-page ion-header), | |
div.aa-menu | |
{ | |
background-color: white; | |
filter: invert(100%); | |
} | |
ion-toolbar[id='top-menu-bar'] { | |
border-bottom: solid 1px #0005; | |
} | |
ion-list li:hover { | |
background-color: #0023; | |
transition: all 0.3s; | |
transform: translateX(4px) scale(1.05); | |
} | |
.notebook-content.modal-notebook-container { | |
filter: invert(1) | |
} | |
.side-menu { | |
--background: black !important; | |
} | |
div.scrollable-content:has(div.notebook-content) { | |
background-color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment